1.3 KiB
1.3 KiB
title | description | aliases | menu | weight | influxdb/v2.0/tags | related | introduced | deprecated | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
v1.measurements() function | The v1.measurements() function returns a list of measurements in a specific bucket. |
|
|
301 |
|
|
0.16.0 | 0.88.0 |
{{% warn %}}
v1.measurements()
was deprecated in Flux v0.88.0 in favor of
schema.measurements()
.
{{% /warn %}}
The v1.measurements()
function returns a list of measurements in a specific bucket.
The return value is always a single table with a single column, _value
.
import "influxdata/influxdb/v1"
v1.measurements(bucket: "example-bucket")
Parameters
bucket
Bucket to retrieve measurements from.
Data type: String
Function definition
package v1
measurements = (bucket) =>
tagValues(bucket: bucket, tag: "_measurement")
Used functions: v1.tagValues()