8.0 KiB
Icinga 2 Addons and Plugins
Addons
Graphing Addons
PNP
PNP must be configured using the bulk mode with npcd and npcdmod hence Icinga 2's PerfdataWriter acts as npcdmod. NPCD will collect the rotated performance data files.
inGraph
inGraph requires the ingraph-collector addon to be configured to point at the perfdata files. Icinga 2's PerfdataWriter will write to the performance data spool directory.
Graphite
There are Graphite addons available for collecting the performance data files as well. But natively you can use the GraphiteWriter feature.
Icinga Reporting
By enabling the DB IDO feature you can use the Icinga Reporting package.
Visualization
NagVis
By using either Livestatus or DB IDO as a backend you can create your own network maps based on your monitoring configuration and status data using NagVis.
Web Interfaces
As well as the Icinga supported web interfaces (Classic UI 1.x, Web 1.x, Web 2) there are a number of community provided web interfaces too:
- Thruk based on the Livestatus feature
Plugins
For some services you may need additional 'check plugins' which are not provided by the official Monitoring Plugins project.
All existing Nagios or Icinga 1.x plugins work with Icinga 2. Here's a list of popular community sites which host check plugins:
The recommended way of setting up these plugins is to copy them to a common directory
and create a new global constant, e.g. CustomPluginDir
in your constants.conf
configuration file:
# cp check_snmp_int.pl /opt/plugins
# chmod +x /opt/plugins/check_snmp_int.pl
# cat /etc/icinga2/constants.conf
/**
* This file defines global constants which can be used in
* the other configuration files. At a minimum the
* PluginDir constant should be defined.
*/
const PluginDir = "/usr/lib/nagios/plugins"
const CustomPluginDir = "/opt/monitoring"
Prior to using the check plugin with Icinga 2 you should ensure that it is working properly by trying to run it on the console using whichever user Icinga 2 is running as:
# su - icinga -s /bin/bash
$ /opt/plugins/check_snmp_int.pl --help
Additional libraries may be required for some plugins. Please consult the plugin documentation and/or plugin provided README for installation instructions. Sometimes plugins contain hard-coded paths to other components. Instead of changing the plugin it might be easier to create logical links which is (more) update-safe.
Each plugin requires a CheckCommand object in your configuration which can be used in the Service or Host object definition.
There are the following conventions to follow when adding a new command object definition:
- Always import the
plugin-check-command
template - Use command-arguments whenever possible. The
command
attribute must be an array in[ ... ]
then for shell escaping. - Define a unique
prefix
for the command's specific command arguments. That way you can safely set them on host/service level and you'll always know which command they control. - Use command argument default values, e.g. for thresholds
- Use advanced conditions like
set_if
definitions.
Example for a custom my-snmp-int
check command:
object CheckCommand "my-snmp-int" {
import "plugin-check-command"
command = [ PluginDir + "/check_snmp_int.pl" ]
arguments = {
"-H" = "$snmp_address$"
"-C" = "$snmp_community$"
"-p" = "$snmp_port$"
"-2" = {
set_if = "$snmp_v2$"
}
"-n" = "$snmp_interface$"
"-f" = {
set_if = "$snmp_perf$"
}
"-w" = "$snmp_warn$"
"-c" = "$snmp_crit$"
}
vars.snmp_v2 = true
vars.snmp_perf = true
vars.snmp_warn = "300,400"
vars.snmp_crit = "0,600"
}
You can find an existing CheckCommand
definition for the check_snmp_int.pl
plugin
shipped with the optional Manubulon Plugin Check Command
definitions already.
For further information on your monitoring configuration read the monitoring basics. You can find plugins (additional to the ones at Monitoring Plugins) over at Icinga Exchange
More details on the plugins can also be found on the Icinga Wiki at https://wiki.icinga.org
Plugin API
Currently Icinga 2 supports the native plugin API specification from the Monitoring Plugins
project.
The Monitoring Plugin API
is defined in the Monitoring Plugins Development Guidelines.
There are no output length restrictions using Icinga 2. This is different to the Icinga 1.x plugin api definition.
Configuration Tools
If you require your favourite configuration tool to export Icinga 2 configuration, please get in touch with their developers. The Icinga project does not provide a configuration web interface or similar.
Tip
Get to know the new configuration format and the advanced apply rules and use syntax highlighting in vim/nano.
If you're looking for puppet manifests, chef cookbooks, ansible recipes, etc - we're happy to integrate them upstream, so please get in touch at https://support.icinga.org.
These tools are in development and require feedback and tests:
Configuration Syntax Highlighting
Icinga 2 ships configuration examples for syntax highlighting using the vim
and nano
editors.
The RHEL, SUSE and Debian package icinga2-common
install these files into
/usr/share/*/icinga2-common/syntax
. Sources provide these files in tools/syntax
.
Configuration Syntax Highlighting using Vim
Create a new local vim configuration storage, if not already existing.
Edit vim/ftdetect/icinga2.vim
if your paths to the Icinga 2 configuration
differ.
$ PREFIX=~/.vim
$ mkdir -p $PREFIX/{syntax,ftdetect}
$ cp vim/syntax/icinga2.vim $PREFIX/syntax/
$ cp vim/ftdetect/icinga2.vim $PREFIX/ftdetect/
Test it:
$ vim /etc/icinga2/conf.d/templates.conf
Configuration Syntax Highlighting using Nano
Copy the /etc/nanorc
sample file to your home directory. Create the /etc/nano
directory
and copy the provided icinga2.nanorc
into it.
$ cp /etc/nanorc ~/.nanorc
# mkdir -p /etc/nano
# cp icinga2.nanorc /etc/nano/
Then include the icinga2.nanorc file in your ~/.nanorc by adding the following line:
$ vim ~/.nanorc
## Icinga 2
include "/etc/nano/icinga2.nanorc"
Test it:
$ nano /etc/icinga2/conf.d/templates.conf