2

I have a influx database which contains more than 300 measurements. Some of these have similar names. Is there a way i can search the names of the measurements with similar string in the names. Does influx have any syntax similar to sql where i can find similar table names using 'like' operator. Can i use something like

SHOW MEASUREMENTS LIKE =~ 'foobar'

thanks

data-bite
  • 417
  • 2
  • 5
  • 17

1 Answers1

3

SHOW MEASUREMENTS WITH MEASUREMENT =~ /.*foorbar.*/

SHOW MEASUREMENTS WITH MEASUREMENT =~ /regular expression/

Shashank V
  • 10,007
  • 2
  • 25
  • 41