influx stacks init

The influx stacks init command initializes an InfluxDB stack.

Usage

  1. influx stacks init [flags]

Flags

FlagDescriptionInput typeMaps to ?
-c—active-configCLI configuration to use for commandstring
—configs-pathPath to influx CLI configurations (default ~/.influxdbv2/configs)stringINFLUX_CONFIGS_PATH
-h—helpHelp for the init command
—hide-headersHide table headers (default false)INFLUX_HIDE_HEADERS
—hostHTTP address of InfluxDB (default http://localhost:8086)stringINFLUX_HOST
—jsonOutput data as JSON (default false)INFLUX_OUTPUT_JSON
-o—orgOrganization namestringINFLUX_ORG
—org-idOrganization IDstringINFLUX_ORG_ID
—skip-verifySkip TLS certificate verification
-d—stack-descriptionStack descriptionstring
-n—stack-nameStack namestring
-u—template-urlTemplate URLs to associate with a stacklist of strings
-t—tokenAuthentication tokenstringINFLUX_TOKEN

Examples

Initialize a stack with a name and description

  1. # Use environment variables
  2. influx stack init -n $STACK_NAME -d $STACK_DESCRIPTION
  3. # Use strings
  4. influx stack init -n "Example Stack" -d "InfluxDB stack for monitoring some awesome stuff"

Initialize a stack with a name and URLs to associate with the stack

  1. # Use environment variables
  2. influx stack init -n $STACK_NAME -u $PATH_TO_TEMPLATE
  3. # Use strings
  4. influx stack init -n "Example Stack" -u https://example.com/template-1.yml

templates