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