Back to Influxdb

Update

content/shared/influxdb-v2/reference/cli/influx/scripts/update.md

latest2.6 KB
Original Source

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

Usage

influx scripts update [flags]

Flags

FlagDescriptionInput type{{< cli/mapped >}}
-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({{< req >}}) Script IDstring
--jsonOutput data as JSON (default false)INFLUX_OUTPUT_JSON
--skip-verifySkip TLS certificate verificationINFLUX_SKIP_VERIFY
-t--tokenAPI tokenstringINFLUX_TOKEN

Example

{{< cli/influx-creds-note >}}

Update the source code of an invokable script
sh
export UPDATED_FLUX='
  from(bucket: "example-bucket")
    |> range(start: -10h)
    |> filter(fn: (r) => r._measurement == "m")
    |> aggregateWindow(every: 1h, fn: mean)
    |> to(bucket: "default-ds-1d", org: "my-org")
'

influx scripts update \
  -i 0Xx0oox00XXoxxoo1 \
  -s $UPDATED_FLUX