Add check command definition for check_graphite

fixes #12256

Signed-off-by: Gunnar Beutner <gunnar.beutner@netways.de>
This commit is contained in:
Markus Waldmüller 2016-07-29 11:29:40 +02:00 committed by Gunnar Beutner
parent ee75094128
commit 6d082e61ae
3 changed files with 87 additions and 1 deletions

View File

@ -1972,6 +1972,30 @@ ipmi_number_of_active_fans | **Optional.** Number of fans that should be a
ipmi_show_fru | **Optional.** Print the product serial number if it is available in the IPMI FRU data. ipmi_show_fru | **Optional.** Print the product serial number if it is available in the IPMI FRU data.
ipmi_no_sel_checking | **Optional.** Turn off system event log checking via ipmi-sel. ipmi_no_sel_checking | **Optional.** Turn off system event log checking via ipmi-sel.
### <a id="plugins-contrib-metrics"></a> Metrics
This category includes all plugins for metric-based checks.
#### <a id="plugin-check-command-graphite"></a> graphite
Check command object for the [check_graphite](https://github.com/obfuscurity/nagios-scripts) plugin.
Custom attributes passed as [command parameters](3-monitoring-basics.md#command-passing-parameters):
Name | Description
------------------------------------|-----------------------------------------------------------------------------------------------------
graphite_url | **Required.** Target url.
graphite_metric | **Required.** Metric path string.
graphite_shortname | **Optional.** Metric short name (used for performance data).
graphite_duration | **Optional.** Length, in minute of data to parse (default: 5).
graphite_function | **Optional.** Function applied to metrics for thresholds (default: average).
graphite_warning | **Required.** Warning threshold.
graphite_critical | **Required.** Critical threshold.
graphite_units | **Optional.** Adds a text tag to the metric count in the plugin output. Useful to identify the metric units. Doesn't affect data queries.
graphite_message | **Optional.** Text message to output (default: "metric count:").
graphite_zero_on_error | **Optional.** Return 0 on a graphite 500 error.
graphite_link_graph | **Optional.** Add a link in the plugin output, showing a 24h graph for this metric in graphite.
### <a id="plugins-contrib-network-components"></a> Network Components ### <a id="plugins-contrib-network-components"></a> Network Components
This category includes all plugins for various network components like routers, switches and firewalls. This category includes all plugins for various network components like routers, switches and firewalls.

View File

@ -16,6 +16,6 @@
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
install( install(
FILES databases.conf icingacli.conf ipmi.conf network-components.conf operating-system.conf virtualization.conf vmware.conf web.conf hardware.conf network-services.conf FILES databases.conf icingacli.conf ipmi.conf network-components.conf operating-system.conf virtualization.conf vmware.conf web.conf hardware.conf network-services.conf metrics.conf
DESTINATION ${CMAKE_INSTALL_DATADIR}/icinga2/include/plugins-contrib.d DESTINATION ${CMAKE_INSTALL_DATADIR}/icinga2/include/plugins-contrib.d
) )

View File

@ -0,0 +1,62 @@
object CheckCommand "graphite" {
import "plugin-check-command"
command = [ PluginContribDir + "/check_graphite" ]
arguments = {
"-u" = {
value = "$graphite_url$"
description = "Target url"
required = true
}
"-m" = {
value = "$graphite_metric$"
description = "Metric path string"
required = true
}
"-s" = {
value = "$graphite_shortname$"
description = "Metric short name (used for performance data)"
}
"-d" = {
value = "$graphite_duration$"
description = "Length, in minute of data to parse (default: 5)"
}
"-f" = {
value = "$graphite_function$"
description = "Function applied to metrics for thresholds (default: average)"
}
"-w" = {
value = "$graphite_warning$"
description = "Warning threshold"
required = true
}
"-c" = {
value = "$graphite_critical$"
description = "Critical threshold"
required = true
}
"-U" = {
value = "$graphite_units$"
description = "Adds a text tag to the metric count in the plugin output. Useful to identify the metric units. Doesn't affect data queries."
}
"-M" = {
value = "$graphite_message$"
description = "Text message to output (default: 'metric count:')"
}
"-z" = {
set_if = "$graphite_zero_on_error$"
description = "Return 0 on a graphite 500 error"
}
"-l" = {
set_if = "$graphite_link_graph$"
description = "Add a link in the plugin output, showing a 24h graph for this metric in graphite."
}
}
vars.graphite_duration = "5"
vars.graphite_function = "average"
vars.graphite_message = "metric count:"
vars.graphite_zero_on_error = false
vars.graphite_link_graph = false
}