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.
我希望设置来自 sensu 的警报限制。例如,在主机 X 发出 5 次有关磁盘容量的警报后,我想停止接收有关同一问题的警报。
是否可以?
谢谢
您可以使用 sensu filters做到这一点。就像是:
{ "filters": { "firstfive": { "attributes": { "occurrences": "eval: value <= 5" } } } }
您需要将此类过滤器添加到您为电子邮件创建的处理程序中。