针对警报或警报 api 的 Nagios 程序
当机器出现故障时,我们使用 Nagios 发送电子邮件。这效果很好。我们有一个自制的警报系统,有一个用于发出警报的 API。我想针对 Nagios 警报进行编程,并且不想解析电子邮件。
Nagios 是否可以将其看到的警报记录到文件中,或者可以配置为在看到警报时运行脚本?然后我可以编写一个程序来连接我的警报器。
谢谢!
We use Nagios to send emails when a machine goes down. This works well. We have a self-made alerting system that has an API for issuing alerts. I would like to program against the Nagios alerts and would prefer not to have to parse emails.
Can Nagios logs alerts it sees into a file, or can be configured to run a script when it sees an alert? I could then write a program against this to hook into my alerter.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先您需要定义一个命令。我们的命令在我们的misccommands.cfg中
定义命令{
命令名写入文件
command_line /path/to/script $SERVICESTATE$ $SERVICETYPE$ 等...
然后
,您需要在服务的 event_handler 上调用它。
在此定义服务名称{
...
event_handler writetofile
...
}
First you need to define a command. ours is in our misccommands.cfg
define command{
command_name writetofile
command_line /path/to/script $SERVICESTATE$ $SERVICETYPE$ etc...
}
Then, you need to call this on the event_handler of your service.
define servicenamehere{
...
event_handler writetofile
...
}