nagios-notify-irc

command module
v0.0.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 26, 2017 License: MIT Imports: 17 Imported by: 0

README

nagios-notify-irc

Nagios utility for reporting to an IRC channel when an event occurs.

A sister project to nagios-check-ircd

Table of Contents

Installation

Check out the releases page for prebuilt versions. notify-irc should work on ubuntu/debian, centos/redhat/fedora, etc. Below are example commands of how you would install the utility (ensure to replace ${VERSION...} etc, with the appropriate vars).

NOTE: If you are running nagios as a different user, you will need to update the service files to the correct user.

Ubuntu/Debian
$ wget https://github.com/lrstanley/nagios-notify-irc/releases/download/${VERSION}/notify-irc_${VERSION_OS_ARCH}.deb
$ dpkg -i notify-irc_${VERSION_OS_ARCH}.deb
$ notify-irc gen-config > /etc/notify-irc.toml # may want to edit the config as well
$ systemctl enable notify-irc
$ systemctl start notify-irc
CentOS/Redhat
$ yum localinstall https://github.com/lrstanley/nagios-notify-irc/releases/download/${VERSION}/notify-irc_${VERSION_OS_ARCH}.rpm
$ notify-irc gen-config > /etc/notify-irc.toml # may want to edit the config as well
$ systemctl enable notify-irc
$ systemctl start notify-irc
Manual Install
$ wget https://github.com/lrstanley/nagios-notify-irc/releases/download/${VERSION}/notify-irc_${VERSION_OS_ARCH}.tar.gz
$ tar -C /usr/bin/ -xzvf notify-irc_${VERSION_OS_ARCH}.tar.gz notify-irc
$ chmod +x /usr/bin/notify-irc
$ notify-irc gen-config > /etc/notify-irc.toml # may want to edit the config as well
$ notify-irc daemon # run this in a screen, cron, your own init script, etc.
Source

If you need a specific version, feel free to compile from source (you must install Go first):

$ git clone https://github.com/lrstanley/nagios-notify-irc.git
$ cd nagios-notify-irc
$ make help
$ make build

Configuration

Simply run the following command to generate a configuration file which you can edit.

$ notify-irc gen-config > /etc/notify-irc.toml

Note that you can add multiple server entries if you wish. You can also place the configuration file in another location, and specify this location when you invoke notify-irc like so:

$ notify-irc -c path/to/your/config.toml [FLAGS] [SUB-COMMAND] [ARGS]

Usage

The way notify-irc works, is that it runs a daemon in the background which stays connected to irc. When an alert comes in, the notify-irc client connects to the daemon, and forwards the message to the necessary server/channel.

This is done to prevent unwanted join/part spam from the bot, and give a good representation of knowing that the alert bot is still functioning.

Daemon

To run the daemon, simply execute the following:

$ notify-irc daemon

Though, this should likely be run by systemd or on startup, and not manually invoked.

Client

The client is what you will use in your Nagios configurations, which will pass the message/alert to the daemon. Here is an example:

$ notify-irc -s example-1 -p "@" -c "#your-channel" -c "#another-channel" "Example message" "More info"

With the above command, this will send an alert to the example-1 server (specified as the "id" in the configuration file), to the two specified channels, ping the ops in each of those channels, and send two messages separate messages to the channel, Example message and More info.

Note that specifying the server id, ping list, etc, is all optional. This allows you to generate a message which is sent to multiple networks, across multiple channels.

See the following for more information:

$ notify-irc client --help
Templating

Text passed into the client by default will allow Go-based text/template templates. For example:

$ notify-irc client -c "#your-channel" '{{ if eq "$SERVICESTATUS" "OK" }}Healthy!{{ else }}Uhoh!{{ end }}: Other stuff here.'

Note: This can be disabled by passing --no-tmpl to notify-irc client, which will pass all input text as plaintext.

Colors

When passing text to the client, note that it supports common irc color codes. You can specify them like {red}, {teal}, {bold} (or {b} for short), etc. To close a color code, you will want to use {c} ( {red}ERROR{c}: default color with some {b}bold!{b}). A full list of supported codes is shown here.

Example Nagios Config

define command {
	command_name notify_irc_service
	command_line /usr/local/bin/notify-irc client -p '@' -c '*' '[{{if eq "$SERVICESTATE$" "OK"}}{green}{{else}}{red}{{end}}{b}$SERVICESTATE${b}{c}] {yellow}{b}$SERVICEDESC${b}{c} :: {teal}$HOSTNAME${c} ({teal}$HOSTADDRESS${c}) :: ({b}$SERVICESTATETYPE${b}: for {cyan}$SERVICEDURATION${c})' '$SERVICEOUTPUT$'
}

define command {
	command_name notify_irc_host
	command_line /usr/local/bin/notify-irc client -p '@' -c '*' '[{{if eq "$HOSTSTATE$" "OK"}}{green}{{else}}{red}{{end}}{b}$HOSTSTATE${b}{c}] {teal}$HOSTNAME${c} ({teal}$HOSTADDRESS${c}) :: ({b}$HOSTSTATETYPE${b}: for {cyan}$HOSTDURATION${c}) :: [ {green}{b}OK:{b} $TOTALHOSTSERVICESOK${c} | {yellow}{b}WARN:{b} $TOTALHOSTSERVICESWARNING${c} | {b}UNKN:{b} $TOTALHOSTSERVICESUNKNOWN$ | {red}{b}CRIT:{b} $TOTALHOSTSERVICESCRITICAL${c} ]' '$HOSTOUTPUT$'
}

Contributing

Please review the CONTRIBUTING doc for submitting issues/a guide on submitting pull requests and helping out.

License

LICENSE: The MIT License (MIT)
Copyright (c) 2017 Liam Stanley <me@liamstanley.io>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL