Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含 300 多个测量值的流入数据库。其中一些具有相似的名称。有没有一种方法可以搜索名称中具有相似字符串的测量名称。influx 是否有任何类似于 sql 的语法,我可以使用“like”运算符找到类似的表名。我可以使用类似的东西吗
SHOW MEASUREMENTS LIKE =~ 'foobar'
谢谢
SHOW MEASUREMENTS WITH MEASUREMENT =~ /.*foorbar.*/
SHOW MEASUREMENTS WITH MEASUREMENT =~ /regular expression/