influxQL查询measurement中的指标时,可使用模糊查询。
查询measurement中字段包含特定字符串:
select * from cpu_used_percent where endpoint=~/192.168.0.1/ and time > '2021-09-11T00:00:00Z' order by time desc limit 10;
查询measurement中字段以某个字符串起始:
select * from cpu_used_percent where endpoint=~/^datacenter/ and time > '2021-09-11T00:00:00Z' order by time desc limit 10;
查询meaurement中字段以某个字符串结束:
select * from cpu_used_percent where endpoint=~/vm-$/ and time > '2021-09-11T00:00:00Z' order by time desc limit 10;
//查询以Datacenter开头、vm-40结束的时序数据
select * from cpu_used_percent where endpoint=~/^Datacenter.*vm-40$/ order by time desc limit 10;
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。