1
votes

Is it possible to obtain a list of available OpenTSDB metrics (not tsuids) by HTTP api without any additional plugin? Or is is possible to find out a list of metrics by HTTP api matching any pattern (e.g. sys.cpu.* or something like that)? What is the best way?

Thank you

1

1 Answers

1
votes

I figured out. Looks like it is possible to use /api/suggest/ endpoint with following params:

{
   'type': 'metrics',
   'q': '',
   'max': <int>,
}