schema.tagKeys() 函数
schema.tagKeys()
返回与 谓词
匹配的所有系列中的标签键列表。
结果包括一个单列的单一表,_value
。
函数类型签名
(
bucket: string,
?predicate: (
r: {
A with
_value: B,
_time: time,
_stop: time,
_start: time,
_measurement: string,
_field: string,
},
) => bool,
?start: C,
?stop: D,
) => stream[E] where E: Record
参数
bucket
(必需) 从中返回标签键的存储桶。
predicate
过滤标签键的谓词函数。默认为 (r) => true
。
start
包含在结果中的最旧时间。默认为 -30d
。
stop
包含在结果中的最新时间。停止时间是排他的,意味着等于停止时间的值不包括在结果中。默认为 now()
。
使用负持续时间定义相对起始时间。负持续时间相对于 now()
。使用时间值定义绝对起始时间。
示例
查询 InfluxDB 存储桶中的标签键
import "influxdata/influxdb/schema"
schema.tagKeys(bucket: "example-bucket")
Flux REPL 中不支持
schema
函数在 InfluxDB 的上下文中执行时可以检索模式信息,但不能从 Flux REPL 中获取。
此页面有帮助吗?
感谢您的反馈!