在 Groundwork / Nagios 中,如何使服务在一台主机上发送页面并在另一台主机上发送电子邮件?

发布于 2024-11-17 13:45:59 字数 121 浏览 4 评论 0原文

我们有预生产服务器和生产服务器。如果预生产时服务检查失败,我们只想发送电子邮件(无寻呼机)。如果它在生产服务器上失败,我们应该发送一个页面。

我知道您可以更改服务的联系人组,但是您可以根据它运行的主机来更改它吗?

We have pre-production servers and production servers. If a service check fails on pre-production, we just want to send an email (no pager). If it fails on a production server, we should send a page.

I know you can change the contact group of a service, but can you change it depending on what host it's running on?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

陌若浮生 2024-11-24 13:45:59

在您的 Contact.cfg 中创建 2 个组:

    define contactgroup{
            contactgroup_name       alert_Email
            service_notification_commands   notify-service-by-email
            alias                   Alert temrerature group
            members                 user1, user2
            }

    define contactgroup{
            contactgroup_name       alert_Email_SMS
            service_notification_commands   notify-service-by-email,notify-service-by-sms
            alias                   Alert temrerature group
            members                 user1, user2
            }

并在您的主机配置中(或模板取决于您设置 nagios 的方式)只需放置正确的组
前任:

define service{
        use                             generic-service         ; Name of service template to use
        host_name                       BladeCenter_test
        service_description             SSH
        check_command                   check_ssh
        contact_groups                  alert_Email
        }

define service{
        use                             generic-service         ; Name of service template to use
        host_name                       BladeCenter
        service_description             SSH
        check_command                   check_ssh
        contact_groups                  alert_Email_SMS
        }

In your Contact.cfg create 2 groups:

    define contactgroup{
            contactgroup_name       alert_Email
            service_notification_commands   notify-service-by-email
            alias                   Alert temrerature group
            members                 user1, user2
            }

    define contactgroup{
            contactgroup_name       alert_Email_SMS
            service_notification_commands   notify-service-by-email,notify-service-by-sms
            alias                   Alert temrerature group
            members                 user1, user2
            }

And in your host conf (or template depend how you set nagios up) just put the correct group
ex:

define service{
        use                             generic-service         ; Name of service template to use
        host_name                       BladeCenter_test
        service_description             SSH
        check_command                   check_ssh
        contact_groups                  alert_Email
        }

define service{
        use                             generic-service         ; Name of service template to use
        host_name                       BladeCenter
        service_description             SSH
        check_command                   check_ssh
        contact_groups                  alert_Email_SMS
        }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文