Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在创建具有以下模式的指标:
MyApp.<environment>.<hostname>.DB.some_metric
指标必须以“MyApp”开头,第三段应该是“DB”。如何指定具有两个通配符段的模式?
我试过了
MyApp\.*\.*\.DB\.
和
MyApp\.*\.DB\.
但两者都不匹配。创建日志显示新指标正在与默认模式匹配。
我有其他具有不同保留策略的应用程序,它们也有一个“DB”段,所以像这样的模式\.DB\.不够具体。
\.DB\.
我能够使它与以下模式一起使用:
pattern = ^MyApp\..*\.DB\.
额外的句点有助于匹配两个已知值段之间的任何字符串。