针对警报或警报 api 的 Nagios 程序

发布于 2024-09-25 22:16:13 字数 184 浏览 5 评论 0原文

当机器出现故障时,我们使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情话墙 2024-10-02 22:16:13

首先您需要定义一个命令。我们的命令在我们的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
...
}

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文