From 329ba4ab0dbfd380705df821486347ffa94c5e90 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Mon, 9 Sep 2019 21:00:29 -0600 Subject: [PATCH] various updates to flux functions --- .../built-in/transformations/aggregates/kaufmansama.md | 2 +- .../transformations/aggregates/tripleexponentialderivative.md | 2 +- content/v2.0/reference/flux/functions/secrets/get.md | 3 ++- content/v2.0/security/secrets/use-vault.md | 4 ++++ 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/content/v2.0/reference/flux/functions/built-in/transformations/aggregates/kaufmansama.md b/content/v2.0/reference/flux/functions/built-in/transformations/aggregates/kaufmansama.md index 26d6c1686..1944d041d 100644 --- a/content/v2.0/reference/flux/functions/built-in/transformations/aggregates/kaufmansama.md +++ b/content/v2.0/reference/flux/functions/built-in/transformations/aggregates/kaufmansama.md @@ -21,7 +21,7 @@ _**Function type:** Aggregate_ ```js kaufmansAMA( n: 10, - columns: ["_value"] + column: "_value" ) ``` diff --git a/content/v2.0/reference/flux/functions/built-in/transformations/aggregates/tripleexponentialderivative.md b/content/v2.0/reference/flux/functions/built-in/transformations/aggregates/tripleexponentialderivative.md index 1f734698c..4fa7c2137 100644 --- a/content/v2.0/reference/flux/functions/built-in/transformations/aggregates/tripleexponentialderivative.md +++ b/content/v2.0/reference/flux/functions/built-in/transformations/aggregates/tripleexponentialderivative.md @@ -19,7 +19,7 @@ related: --- The `tripleExponentialDerivative()` function calculates a triple exponential -derivative ([TRIX](https://en.wikipedia.org/wiki/Trix_(technical_analysis)) of +derivative ([TRIX](https://en.wikipedia.org/wiki/Trix_(technical_analysis))) of input tables using `n` points. _**Function type:** Aggregate_ diff --git a/content/v2.0/reference/flux/functions/secrets/get.md b/content/v2.0/reference/flux/functions/secrets/get.md index ff669f891..342e6d380 100644 --- a/content/v2.0/reference/flux/functions/secrets/get.md +++ b/content/v2.0/reference/flux/functions/secrets/get.md @@ -9,7 +9,8 @@ menu: weight: 202 --- -The `secrets.get()` function retrieves a secret from the InfluxDB secret store. +The `secrets.get()` function retrieves a secret from the +[InfluxDB secret store](/v2.0/security/secrets/). _**Function type:** Miscellaneous_ diff --git a/content/v2.0/security/secrets/use-vault.md b/content/v2.0/security/secrets/use-vault.md index 6302787f0..7b7ca9934 100644 --- a/content/v2.0/security/secrets/use-vault.md +++ b/content/v2.0/security/secrets/use-vault.md @@ -62,3 +62,7 @@ option set to `vault`. ```bash influxd --secret-store vault ``` + +## Manage tokens through the InfluxDB API +Use the InfluxDB `/org/{orgID}/secrets` API endpoint to add tokens to Vault. +For details, see [Manage secrets](/v2.0/security/secrets/manage-secrets/).