metricsgraphitewhisper

Is it possible to see all metrics (all paths) in whisper (graphite)?


I have a lot of metrics in Graphite and I have to search through them.

I tried to use whisper-fetch.py, but it returns the metric values (numbers), I want the metric names, something like that:

prefix1.prefix2.metricName1 prefix1.prefix2.metricName2 ...

Thank you.


Solution

  • You can just use the unix find command, e.g. find /data/graphite -name 'some_pattern' or use the web api, e.g. curl http://my-graphite/metrics/find?query=somequery, see graphite metrics api