schema.measurements() 函数
schema.measurements()
返回特定桶中的测量列表。
结果包括一个单列的单一表,_value
。
函数类型签名
(bucket: string, ?start: A, ?stop: B) => stream[C] where C: Record
参数
bucket
(必需) 从中检索测量的桶。
start
包含在结果中的最旧时间。默认为 -30d
。
stop
包含在结果中的最新时间。停止时间是不包括的,意味着等于停止时间的值不包括在结果中。默认为 now()
。
示例
返回 InfluxDB 桶中的测量列表
import "influxdata/influxdb/schema"
schema.measurements(bucket: "example-bucket")
Flux REPL 不支持
schema
函数可以在 InfluxDB 的上下文中执行时检索模式信息,但不能从 Flux REPL 中检索。
这个页面有帮助吗?
感谢您的反馈!