GithubHelp home page GithubHelp logo

oldbayindustries / pagerduty-nagios-pl Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pagerduty/pagerduty-nagios-pl

0.0 2.0 0.0 109 KB

Nagios Integration for PagerDuty via Perl Wrapper

Perl 100.00%

pagerduty-nagios-pl's Introduction

Getting Started

If you don't already have a PagerDuty "Nagios" service, you should create one:

  • In your account, under the Services tab, click "Add New Service".
  • Enter a name for the service and select an escalation policy. Then, select "Nagios" for the Service Type.
  • Click the "Add Service" button.
  • Once the service is created, you'll be taken to the service page. On this page, you'll see the "Service key", which will be needed when you configure your Nagios server to send events to PagerDuty.

Setup for Debian, Ubuntu, and other Debian-derived systems:

Install the necessary Perl dependencies:

aptitude install libwww-perl libcrypt-ssleay-perl

Copy over pagerduty_nagios.cfg:

wget https://raw.github.com/PagerDuty/pagerduty-nagios-pl/master/pagerduty_nagios.cfg

Open the file in your favorite editor. Enter the service key corresponding to your Nagios service into the pager field. The service key is a 32 character string that can be found on the service's detail page.

Copy the Nagios configuration file into place:

cp pagerduty_nagios.cfg /etc/nagios3/conf.d

Add the contact "pagerduty" to your Nagios configuration's main contact group. If you're using the default configuration, open /etc/nagios3/conf.d/contacts_nagios2.cfg and look for the "admins" contact group. Then, simply add the "pagerduty" contact.

define contactgroup{ 
  contactgroup_name       admins
  alias                   Nagios Administrators
  members                 root,pagerduty   ; <-- Add 'pagerduty' here.
}

Download pagerduty_nagios.pl:

wget https://raw.github.com/PagerDuty/pagerduty-nagios-pl/master/pagerduty_nagios.pl
cp pagerduty_nagios.pl /usr/local/bin

Make sure the file is executable by Nagios:

chmod 755 /usr/local/bin/pagerduty_nagios.pl

Enable environment variable macros in /etc/nagios3/nagios.cfg (if not enabled already):

enable_environment_macros=1

Edit the nagios user's crontab:

crontab -u nagios -e

Add the following line to the crontab:

* * * * * /usr/local/bin/pagerduty_nagios.pl flush

Restart Nagios:

/etc/init.d/nagios3 restart

Setup for RHEL, Fedora, CentOS, and other Redhat-derived systems:

Install the necessary Perl dependencies:

yum install perl-libwww-perl perl-Crypt-SSLeay

Download pagerduty_nagios.cfg:

wget https://raw.github.com/PagerDuty/pagerduty-nagios-pl/master/pagerduty_nagios.cfg

Open the file in your favorite editor. Enter the service key corresponding to your Nagios service into the pager field. The service key is a 32 character string that can be found on the service's detail page.

Copy the Nagios configuration file into place:

cp pagerduty_nagios.cfg /etc/nagios

Edit the Nagios config to load the PagerDuty config. To do this, open /etc/nagios/nagios.cfg and add this line to the file:

cfg_file=/etc/nagios/pagerduty_nagios.cfg

Add the contact "pagerduty" to your Nagios configuration's main contact group. If you're using the default configuration, open /etc/nagios/localhost.cfg and look for the "admins" contact group. Then, simply add the "pagerduty" contact.

define contactgroup{ 
  contactgroup_name       admins
  alias                   Nagios Administrators
  members                 root,pagerduty   ; <-- Add 'pagerduty' here.
}

Download pagerduty_nagios.pl and copy it to /usr/local/bin:

wget https://raw.github.com/PagerDuty/pagerduty-nagios-pl/master/pagerduty_nagios.pl
cp pagerduty_nagios.pl /usr/local/bin

Make sure the file is executable by Nagios:

chmod 755 /usr/local/bin/pagerduty_nagios.pl

Enable environment variable macros in /etc/nagios/nagios.cfg (if not enabled already):

enable_environment_macros=1

Edit the nagios user's crontab:

crontab -u nagios -e

Add the following line to the crontab:

* * * * * /usr/local/bin/pagerduty_nagios.pl flush

Restart Nagios:

/etc/init.d/nagios3 restart

Setup for SmartOS:

Install the necessary Perl dependencies:

pkgin -f up
pkgin -y in p5-libwww p5-Crypt-SSLeay p5-HTTP-Message

Download pagerduty_nagios.cfg:

wget https://raw.github.com/PagerDuty/pagerduty-nagios-pl/master/pagerduty_nagios.cfg

Open the file in your favorite editor. Enter the service key corresponding to your Nagios service into the pager field. The service key is a 32 character string that can be found on the service's detail page.

Copy the Nagios configuration file into place:

cp pagerduty_nagios.cfg /opt/local/etc/nagios

Edit the Nagios config to load the PagerDuty config. To do this, open /opt/local/etc/nagios/nagios.cfg and add this line to the file:

cfg_file=/opt/local/etc/nagios/pagerduty_nagios.cfg

Add the contact "pagerduty" to your Nagios configuration's main contact group. If you're using the default configuration, open /opt/local/etc/nagios/localhost.cfg and look for the "admins" contact group. Then, simply add the "pagerduty" contact.

define contactgroup{ 
  contactgroup_name       admins
  alias                   Nagios Administrators
  members                 root,pagerduty   ; <-- Add 'pagerduty' here.
}

Download pagerduty_nagios.pl and copy it to /opt/local/bin:

wget https://raw.github.com/PagerDuty/pagerduty-nagios-pl/master/pagerduty_nagios.pl
cp pagerduty_nagios.pl /opt/local/bin

You most likely want to have the /tmp directory changed to /var/spool/nagios so this script works.

Make sure the file is executable by Nagios:

chmod 755 /opt/local/bin/pagerduty_nagios.pl

Enable environment variable macros in /opt/local/etc/nagios/nagios.cfg (if not enabled already):

enable_environment_macros=1

Edit the nagios user's crontab:

crontab -u nagios -e

Add the following line to the crontab:

* * * * * /opt/local/bin/pagerduty_nagios.pl flush

Restart Nagios:

svcadm restart nagios

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.