2.0 KiB
2.0 KiB
title | description | menu | weight | influxdb/v2.0/tags | aliases | related | introduced | deprecated | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
v1.measurementFieldKeys() function | The `v1.measurementFieldKeys()` function returns a list of fields in a measurement. |
|
301 |
|
|
|
0.68.0 | 0.88.0 |
{{% warn %}}
v1.measurementFieldKeys()
was deprecated in Flux v0.88.0 in favor of
schema.measurementFieldKeys()
.
{{% /warn %}}
The v1.measurementFieldKeys()
function returns a list of fields in a measurement.
The return value is always a single table with a single column, _value
.
import "influxdata/influxdb/v1"
v1.measurementFieldKeys(
bucket: "example-bucket",
measurement: "example-measurement",
start: -30d
)
Parameters
bucket
Bucket to retrieve field keys from.
Data type: String
measurement
Measurement to list field keys from.
Data type: String
start
Oldest time to include in results.
Defaults to -30d
.
Relative start times are defined using negative durations. Negative durations are relative to now. Absolute start times are defined using time values.
Data type: Duration
Examples
import "influxdata/influxdb/v1"
v1.measurementFieldKeys(
bucket: "telegraf",
measurement: "cpu",
)
Function definition
package v1
measurementFieldKeys = (bucket, measurement, start=-30d) =>
fieldKeys(bucket: bucket, predicate: (r) => r._measurement == measurement, start: start)
Used functions: v1.fieldKeys