Common export / import data format?

I have data on a machine running InfluxDB 1.8.3 and I need to migrate it to a new machine running 1.8.10. The data contains a specific tag key which is a string starting with a project name. That project name has now changed, so I need to perform a simple text substitution on the tag name in between exporting the data and then importing it.
However, I’m finding it difficult to find any common format between import and export. Import seems to be easiest in line protocol - is it possible to export data from InfluxDB1 in line protocol? Export seems to be easiest in JSON format - is it possible to import data in JSON?
Is there some other (CSV perhaps?) common format which allows me to export the data, perform a text substitution, and then import it?
Thanks for any suggestions or pointers to the documentation I’ve failed to find :slight_smile:

Antony.

On Monday 04 March 2024 at 13:11:40, Pooh via InfluxData Community Forums
wrote:

I’m finding it difficult to find any common format between import and export.
Import seems to be easiest in line protocol - is it possible to export data
from InfluxDB1 in line protocol?

It turns out that the answer is “yes” - the command is influx_inspect and not
just influx

Antony.