0

我在 Graphite 中有很多指标,我必须搜索它们。

我尝试使用whisper-fetch.py​​,但它返回度量值(数字),我想要度量名称,如下所示:

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

谢谢你。

4

2 回答 2

1

您可以只使用 unixfind命令,例如find /data/graphite -name 'some_pattern'或使用 web api,例如curl http://my-graphite/metrics/find?query=somequery,请参阅石墨指标 api

于 2018-07-30T20:13:40.840 回答
1

Graphite 有一个专用端点,用于检索所有指标,作为其HTTP API的一部分:/metrics/index.json

例如,针对我的本地 Graphite 运行此命令

curl localhost:8080/metrics/index.json | jq "."

产生以下输出:


[
  "carbon.agents.graphite-0-a.activeConnections",
  "carbon.agents.graphite-0-a.avgUpdateTime",
  "carbon.agents.graphite-0-a.blacklistMatches",
  "carbon.agents.graphite-0-a.cache.bulk_queries",
  "carbon.agents.graphite-0-a.cache.overflow",
  ...
  "stats_counts.response.200",
  "stats_counts.response.400",
  "stats_counts.response.404",
  "stats_counts.statsd.bad_lines_seen",
  "stats_counts.statsd.metrics_received",
  "stats_counts.statsd.packets_received",
  "statsd.numStats"
]

于 2021-01-19T01:51:14.243 回答