influxd inspect export-lp

    Export all data in a bucket as line protocol
    1. influxd inspect export-lp \
    2. --engine-path ~/.influxdbv2/engine \
    3. --output-path path/to/export.lp
    Export data in measurements as line protocol
    1. # Export a single measurement
    2. influxd inspect export-lp \
    3. --bucket-id 12ab34cd56ef \
    4. --engine-path ~/.influxdbv2/engine \
    5. --measurement example-measurement \
    6. --output-path path/to/export.lp
    7. # Export multiple measurements
    8. --bucket-id 12ab34cd56ef \
    9. --engine-path ~/.influxdbv2/engine \
    10. --measurement example-measurement-1 example-measurement-2 \
    11. --output-path path/to/export.lp
    Export data in specified time range as line protocol
    1. influxd inspect export-lp \
    2. --bucket-id 12ab34cd56ef \
    3. --engine-path ~/.influxdbv2/engine \
    4. --start 2021-01-01T00:00:00Z \
    5. --end 2021-01-31T23:59:59Z \
    6. --output-path path/to/export.lp