influx scripts update

  • influx CLI 2.4.0+
  • InfluxDB Cloud only

The influx scripts update command updates information related to an invokable script in InfluxDB.

Usage

  1. influx scripts update [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
-d—descriptionNew script descriptionstring
-h—helpHelp for the update command
—hide-headersHide table headers (default false)INFLUX_HIDE_HEADERS
—hostHTTP address of InfluxDB (default http://localhost:8086)stringINFLUX_HOST
—http-debugInspect communication with InfluxDB servers.string
-n—nameNew script namestring
-s—scriptNew script contentsstring
-i—scriptID(Required) Script IDstring
—jsonOutput data as JSON (default false)INFLUX_OUTPUT_JSON
—skip-verifySkip TLS certificate verificationINFLUX_SKIP_VERIFY
-t—tokenAPI tokenstringINFLUX_TOKEN

Example

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
Update the source code of an invokable script
  1. export UPDATED_FLUX='
  2. from(bucket: "example-bucket")
  3. |> range(start: -10h)
  4. |> filter(fn: (r) => r._measurement == "m")
  5. |> aggregateWindow(every: 1h, fn: mean)
  6. |> to(bucket: "default-ds-1d", org: "my-org")
  7. '
  8. influx scripts update \
  9. -i 0Xx0oox00XXoxxoo1 \
  10. -s $UPDATED_FLUX