docs-v2/content/v2.0/reference/flux/functions/influxdb-v1/measurements.md

789 B

title description menu weight v2.0/tags
v1.measurements() function The v1.measurements() function returns a list of measurements in a specific bucket.
v2_0_ref
name parent
v1.measurements InfluxDB v1
301
measurements

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

The bucket from which to list measurements.

Data type: String

Function definition

measurements = (bucket) =>
  tagValues(bucket: bucket, tag: "_measurement")

Used functions: tagValues()