Documentation

influx export

Not supported in InfluxDB Cloud Serverless

While this command is included in the influx CLI , this functionality is not available in InfluxDB Cloud Serverless organizations powered by the InfluxDB v3 storage engine.

The influx export command exports existing resources as an InfluxDB template. For detailed examples of exporting InfluxDB templates, see Create an InfluxDB template.

Usage

influx export [flags]
influx export [command]

Available subcommands

Subcommand Description
all Export all resources in an organization as a template
stack Export all resources associated with a stack as a template

Flags

Flag Description Input Type Maps to ?
-c --active-config CLI configuration to use for command string
--bucket-names Comma-separated list of bucket names string
--buckets Comma-separated list of bucket IDs string
--check-names Comma-separated list of check names string
--checks Comma-separated list of check IDs string
--configs-path Path to influx CLI configurations (default ~/.influxdbv2/configs) string INFLUX_CONFIGS_PATH
--dashboard-names Comma-separated list of dashboard names string
--dashboards Comma-separated list of dashboard IDs string
--endpoint-names Comma-separated list of notification endpoint names string
--endpoints Comma-separated list of notification endpoint IDs string
-f --file Template output file. Defaults to stdout. Use .yml or .json file extensions. string
-h --help Help for the export command
--host HTTP address of InfluxDB (default http://localhost:9999) string INFLUX_HOST
--http-debug Inspect communication with InfluxDB servers. string
--label-names Comma-separated list of label names string
--labels Comma-separated list of label IDs string
--resource-type Resource type associated with all IDs via stdin string
--rule-names Comma-separated list of notification rule names string
--rules Comma-separated list of notification rule IDs string
--skip-verify Skip TLS certificate verification INFLUX_SKIP_VERIFY
--stack-id Stack ID to include resources from in export string
--task-names Comma-separated list of task names string
--tasks Comma-separated list of task IDs string
--telegraf-config-names Comma-separated list of Telegraf configuration names string
--telegraf-configs Comma-separated list of Telegraf configuration IDs string
-t --token API token string INFLUX_TOKEN
--variable-names Comma-separated list of variable names string
--variables Comma-separated list of variable IDs string

Examples

Authentication credentials

The examples below assume your InfluxDB host, organization, and token are provided by either the active influx CLI configuration or by environment variables (INFLUX_HOST, INFLUX_ORG, and INFLUX_TOKEN). If you do not have a CLI configuration set up or the environment variables set, include these required credentials for each command with the following flags:

  • --host: InfluxDB host
  • -o, --org or --org-id: InfluxDB organization name or ID
  • -t, --token: InfluxDB API token
Export buckets by ID
influx export --buckets 0Xx0oox00XXoxxoo1,0Xx0oox00XXoxxoo2
Export buckets, labels, and dashboards by ID
influx export \
  --buckets 0Xx0oox00XXoxxoo1,0Xx0oox00XXoxxoo2 \
  --labels o0x0oox0Xxoxx001,o0x0oox0Xxoxx002 \
  --dashboards 0XxXooXoo0xooXo0X1,0XxXooXoo0xooXo0X2
Export buckets, labels, and dashboards by name
influx export \
  --bucket-names bucket1,bucket2,bucket3 \
  --label-names label1,label2,label3 \
  --dashboard-names dashboard1,dashboard2,dashboard3
Export all resources associated with a stack
influx export --stack-id 0Xx0oox00XXoxxoo1
Export resources both associated and not associated with a stack
influx export \
  --stack-id 0Xx0oox00XXoxxoo1 \
  --buckets o0x0oox0Xxoxx001,0XxXooXoo0xooXo0X2 \
  --dashboard-names bucket1

Was this page helpful?

Thank you for your feedback!


The future of Flux

Flux is going into maintenance mode. You can continue using it as you currently are without any changes to your code.

Flux is going into maintenance mode and will not be supported in InfluxDB 3.0. This was a decision based on the broad demand for SQL and the continued growth and adoption of InfluxQL. We are continuing to support Flux for users in 1.x and 2.x so you can continue using it with no changes to your code. If you are interested in transitioning to InfluxDB 3.0 and want to future-proof your code, we suggest using InfluxQL.

For information about the future of Flux, see the following:

InfluxDB Cloud Serverless