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.
You can just use the unix
findcommand, 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