Graphite 存储-aggregation.conf 正则表达式范围

Graphite storage-aggregation.conf regex scope

我已经仔细阅读了关于此的文档,但我仍然 none 更明智。 http://graphite.readthedocs.io/en/latest/config-carbon.html

如果我们有这样的指标:

/var/lib/graphite/whisper/p1/p2/account/count_num_events.wsp

有谁确切地知道石墨将存储聚合正则表达式应用于此路径的哪一部分?

我假设它只是

"count_num_events"

因此我可以使用正则表达式“^count.*”来匹配它。或者它会应用于所有或部分路径的其余部分?

干杯。

你是对的。那将是你需要的东西。但请注意,指标将使用点而不是斜线

p1.p2.account.count_num_events

所以您在存储聚合中需要的是以下任何一项

*count_num_events
p1.p2.*.count_num_events
p1.*.account.count_num_events
*.account.count_num_events
*.count_num_events
*count_num_events$
p1.p2.account.count_num_events

我终于抽出时间来做一些测试了。

感谢 Fred S 的回答我希望我在进行测试之前看到了回复,会有所帮助。

所以答案是 graphite 匹配完整的度量名称,即 .分开了。对于示例指标文件:

/var/lib/graphite/whisper/p1/p2/account/count_num_events.wsp

将是:

p1.p2.account.count_num_events

所以你可以做的最严格的正则表达式是:

^p1\.p2\.account\.count_num_events$