Merge branch 'master' into late-arriving-data
commit
d985b6e0c5
|
@ -8,3 +8,6 @@ menu:
|
|||
---
|
||||
|
||||
Download the latest Chronograf release at the [InfluxData download page](https://portal.influxdata.com/downloads).
|
||||
Click **Are you interested in InfluxDB 1.x Open Source?** to expand the 1.x options. Scroll to the **Chronograf** section and select your desired Chronograf version and operating system. Execute the provided download commands.
|
||||
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ Chronograf is the user interface for InfluxData's [TICK stack](https://www.influ
|
|||
|
||||
The latest Chronograf builds are available on InfluxData's [Downloads page](https://portal.influxdata.com/downloads).
|
||||
|
||||
1. Choose the download link for your operating system.
|
||||
1. On the Downloads page, scroll to the bottom and click **Are you interested in InfluxDB 1.x Open Source?** to expand the 1.x options. Scroll to the **Chronograf** section and select your desired Chronograf version and operating system. Execute the provided download commands.
|
||||
|
||||
{{% note %}}
|
||||
If your download includes a TAR package, save the underlying datastore `chronograf-v1.db` in directory outside of where you start Chronograf. This preserves and references your existing datastore, including configurations and dashboards, when you download future versions.
|
||||
|
|
|
@ -67,7 +67,7 @@ Default value to return if the specified key does not exist in the record.
|
|||
|
||||
## Examples
|
||||
|
||||
### Dynamically return a value from a recordd
|
||||
### Dynamically return a value from a record
|
||||
|
||||
```js
|
||||
import "experimental/record"
|
||||
|
@ -75,7 +75,7 @@ import "experimental/record"
|
|||
key = "foo"
|
||||
exampleRecord = {foo: 1.0, bar: "hello"}
|
||||
|
||||
record.get(r: exampleRecord, key: key, default: "")// Returns 1.0
|
||||
record.get(r: exampleRecord, key: key, default: "") // Returns 1.0
|
||||
|
||||
|
||||
```
|
||||
|
|
|
@ -241,4 +241,5 @@ For users needing stricter security around data access and risk mitigation measu
|
|||
## Compliance and auditing
|
||||
|
||||
InfluxDB Cloud is **SOC2 Type II** certified.
|
||||
To request a copy of our SOC2 Type II report, please email <sales@influxdata.com>.
|
||||
To request a copy of our SOC2 Type II report,
|
||||
or for information on the ISO 27001 Information Security Management System, please email <sales@influxdata.com>.
|
||||
|
|
|
@ -7,6 +7,8 @@ menu:
|
|||
name: Time Series Index (TSI) overview
|
||||
weight: 70
|
||||
parent: Concepts
|
||||
aliases:
|
||||
- /influxdb/latest/concepts/time-series-index/
|
||||
---
|
||||
|
||||
Find overview and background information on Time Series Index (TSI) in this topic. For detail, including how to enable and configure TSI, see [Time Series Index (TSI) details](/influxdb/v1.8/concepts/tsi-details/).
|
||||
|
|
|
@ -6,9 +6,12 @@ aliases:
|
|||
- /influxdb/v1.8/introduction/getting_started/
|
||||
- /influxdb/v1.8/introduction/getting-started/
|
||||
- /influxdb/v2.0/introduction/getting-started/
|
||||
- /influxdb/v2.0/introduction/getting_started/
|
||||
- /influxdb/v2.1/introduction/getting-started/
|
||||
- /influxdb/v2.1/introduction/getting_started/
|
||||
- /influxdb/v2.2/introduction/getting_started/
|
||||
- /influxdb/v2.3/introduction/getting_started/
|
||||
- /influxdb/v2.4/introduction/getting_started/
|
||||
- /influxdb/latest/introduction/getting-started/
|
||||
|
||||
menu:
|
||||
influxdb_1_8:
|
||||
name: Get started with InfluxDB
|
||||
|
|
|
@ -14,7 +14,7 @@ Access the InfluxDB API using the `/api/v2/` endpoint.
|
|||
|
||||
## Developer guides
|
||||
|
||||
- [API starter guide](/influxdb/v2.2/api-guide/starter/)
|
||||
- [API Quick Start](/influxdb/v2.2/api-guide/api_intro/)
|
||||
|
||||
## InfluxDB client libraries
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ Access the InfluxDB API using the `/api/v2/` endpoint.
|
|||
|
||||
## Developer guides
|
||||
|
||||
- [API starter guide](/influxdb/v2.3/api-guide/starter/)
|
||||
- [API Quick Start](/influxdb/v2.3/api-guide/api_intro/)
|
||||
|
||||
## InfluxDB client libraries
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ Access the InfluxDB API using the `/api/v2/` endpoint.
|
|||
|
||||
## Developer guides
|
||||
|
||||
- [API starter guide](/influxdb/v2.4/api-guide/starter/)
|
||||
- [API Quick Start](/influxdb/v2.4/api-guide/api_intro/)
|
||||
|
||||
## InfluxDB client libraries
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@ aliases:
|
|||
- /influxdb/v2.4/reference/client-libraries/
|
||||
- /influxdb/v2.4/reference/api/client-libraries/
|
||||
- /influxdb/v2.4/tools/client-libraries/
|
||||
- /influxdb/v2.x/api-guide/client-libraries/
|
||||
menu:
|
||||
influxdb_2_4:
|
||||
name: Client libraries
|
||||
|
|
|
@ -37,7 +37,7 @@ Rows that evaluate to `false` are **excluded** from the output data.
|
|||
|
||||
```js
|
||||
// ...
|
||||
|> filter(fn: (r) => r._measurement == "example-measurement" )
|
||||
|> filter(fn: (r) => r._measurement == "example-measurement-name" )
|
||||
```
|
||||
|
||||
The `fn` predicate function requires an `r` argument, which represents each row
|
||||
|
@ -71,6 +71,6 @@ and `filter()` represent the most basic Flux query:
|
|||
```js
|
||||
from(bucket: "example-bucket")
|
||||
|> range(start: -1h)
|
||||
|> filter(fn: (r) => r._measurement == "example-measurement" and r.tag == "example-tag")
|
||||
|> filter(fn: (r) => r._field == "example-field")
|
||||
|> filter(fn: (r) => r._measurement == "example-measurement-name" and r.mytagname == "example-tag-value")
|
||||
|> filter(fn: (r) => r._field == "example-field-name")
|
||||
```
|
||||
|
|
|
@ -10,7 +10,11 @@ menu:
|
|||
weight: 10
|
||||
weight: 6
|
||||
aliases:
|
||||
|
||||
- /telegraf/v1.24/plugins/processors/
|
||||
- /telegraf/v1.24/plugins/plugins-list/
|
||||
- /telegraf/v1.24/plugins/aggregators/
|
||||
- /telegraf/v1.24/plugins/outputs/
|
||||
- /telegraf/v1.24/plugins/inputs/
|
||||
- /telegraf/v1.23/plugins/plugins-list/
|
||||
- /telegraf/v1.23/plugins/aggregators/
|
||||
- /telegraf/v1.23/plugins/inputs/
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
---
|
||||
title: Telegraf 1.23 release notes
|
||||
title: Telegraf 1.24 release notes
|
||||
description: Important features and changes in the latest version of Telegraf.
|
||||
aliases:
|
||||
- /telegraf/v1.23/reference/release-notes/influxdb/
|
||||
- /telegraf/v1.23/about_the_project/release-notes-changelog/
|
||||
- /telegraf/v1.24/reference/release-notes/influxdb/
|
||||
- /telegraf/v1.24/about_the_project/release-notes-changelog/
|
||||
menu:
|
||||
telegraf_1_24_ref:
|
||||
|
||||
|
|
|
@ -1739,13 +1739,6 @@ input:
|
|||
link: https://github.com/influxdata/telegraf/blob/master/plugins/inputs/slab/README.md
|
||||
tags: [linux, system]
|
||||
|
||||
- name: SMCIPMITool
|
||||
id: smc_ipmi
|
||||
description: |
|
||||
The SMCIPMITool input plugin parses the output of [SMCIPMITool](https://www.supermicro.com/en/solutions/management-software/ipmi-utilities).
|
||||
introduced: 1.18.0
|
||||
tags: [linux, macos, windows, servers, networking]
|
||||
|
||||
- name: S.M.A.R.T.
|
||||
id: smart
|
||||
description: |
|
||||
|
|
Loading…
Reference in New Issue