icinga2/doc/3.11-performance-data.md

55 lines
2.6 KiB
Markdown
Raw Normal View History

## <a id="performance-data"></a> Performance Data
2013-10-10 11:22:32 +02:00
When a host and service check is executed plugins should provide so-called
2013-10-18 20:05:08 +02:00
`performance data`. Next to that additional check performance data
can be fetched using Icinga 2 runtime macros such as the check latency
or the current service state (or additional custom attributes).
2013-10-18 20:05:08 +02:00
The performance data may be passed to external applications which
then generate nice graphs for historical reporting and trending.
Well-known addons processing Icinga performance data are PNP4Nagios,
inGraph and Graphite.
### <a id="writing-performance-data-files"></a> Writing Performance Data Files
2013-10-18 20:05:08 +02:00
PNP4Nagios, inGraph and Graphios use performance data collector daemons to fetch
2013-10-18 20:05:08 +02:00
the current performance files for their backend updates.
Therefore the Icinga 2 `PerfdataWriter` object allows you to define
the output template format for host and services backed with Icinga 2
runtime vars.
2013-10-18 20:05:08 +02:00
host_format_template = "DATATYPE::HOSTPERFDATA\tTIMET::$icinga.timet$\tHOSTNAME::$host.name$\tHOSTPERFDATA::$host.perfdata$\tHOSTCHECKCOMMAND::$host.checkcommand$\tHOSTSTATE::$host.state$\tHOSTSTATETYPE::$host.statetype$"
service_format_template = "DATATYPE::SERVICEPERFDATA\tTIMET::$icinga.timet$\tHOSTNAME::$host.name$\tSERVICEDESC::$service.description$\tSERVICEPERFDATA::$service.perfdata$\tSERVICECHECKCOMMAND::$service.checkcommand$\tHOSTSTATE::$host.state$\tHOSTSTATETYPE::$host.statetype$\tSERVICESTATE::$service.state$\tSERVICESTATETYPE::$service.statetype$"
The default templates are already provided with the Icinga 2 feature configuration
2013-10-18 20:05:08 +02:00
which can be enabled using
# icinga2-enable-feature perfdata
2013-10-18 20:05:08 +02:00
By default all performance data files are rotated in a 15 seconds interval into
the `/var/spool/icinga2/perfdata/` directory as `host-perfdata.<timestamp>` and
`service-perfdata.<timestamp>`.
2013-10-18 20:05:08 +02:00
External collectors need to parse the rotated performance data files and then
remove the processed files.
### <a id="graphite-carbon-cache-writer"></a> Graphite Carbon Cache Writer
2013-10-18 20:05:08 +02:00
While there are some Graphite collector scripts and daemons like Graphios available for
Icinga 1.x it's more reasonable to directly process the check and plugin performance
in memory in Icinga 2. Once there are new metrics available, Icinga 2 will directly
2013-10-21 21:43:17 +02:00
write them to the defined Graphite Carbon daemon tcp socket.
2013-10-18 20:05:08 +02:00
You can enable the feature using
# icinga2-enable-feature graphite
2014-04-05 14:53:12 +02:00
By default the `GraphiteWriter` object expects the Graphite Carbon Cache to listen at
`127.0.0.1` on port `2003`.
2013-10-18 20:05:08 +02:00
The current naming schema is
icinga.<hostname>.<metricname>
2013-10-18 20:05:08 +02:00
icinga.<hostname>.<servicename>.<metricname>