1

我正在使用sensu-mailer处理程序发送电子邮件警报。它工作正常,因为我无法让它在每次发生时都发送电子邮件。无论occurrences我给什么价值,它都不会改变

# config

"ping_website": {
      "notification": "getpostman.com HTTP port 80",
      "command": "/etc/sensu/plugins/check-http.rb -u <url>",
      "subscribers": [ "base" ],
      "standalone": true,
      "interval": 60,
      "occurrences": 1,
      "handlers": ["default", "mailer"]
    }

# log

{"timestamp":"2015-03-01T05:40:44.233827+0000","level":"info","message":"handler output","handler":{"type":"pipe","command":"ruby /etc/sensu/handlers/mailer.rb","name":"mailer"},"output":"only handling every 30 occurrences: localhost/ping_website\n"}
4

2 回答 2

4

弄清楚了。需要设置refresh为不同的值。由于默认值为 1800 秒,因此不会再连续出现 30 次错误时发送另一个警报。设置refresh为较低的数字可以解决问题。

于 2015-03-01T10:29:13.930 回答
0

我的自定义处理程序遇到问题,但后来仔细检查我的检查配置文件时,我缺少这些值。@elssar 谢谢。

  "notification_occurrences": 1, 
    "refresh": 180, 
    "occurrences": 2, 

当我检查处理程序时

only handling every 10 occurrences

然后我手动触发处理程序,出现 10 次,然后它的工作。还有一些帮助表格文档。已经回答但可能会帮助某人使用自定义处理程序。 https://docs.sensu.io/sensu-core/1.2/reference/events/#event-attributes

https://docs.sensu.io/sensu-enterprise/2.8/filters/handle-when/#handlewhen-attributes

于 2018-10-01T14:56:47.493 回答