From 98a97026f4fb63749ca6632a9527d46fd6f224ec Mon Sep 17 00:00:00 2001 From: Christian Birk Date: Mon, 8 Aug 2016 10:07:49 +0200 Subject: [PATCH] Add "check_mysql_query" CheckCommand definition fixes #12314 Signed-off-by: Gunnar Beutner --- AUTHORS | 1 + doc/7-icinga-template-library.md | 21 +++++++++++++++++++++ itl/command-plugins.conf | 22 ++++++++++++++++++++++ 3 files changed, 44 insertions(+) diff --git a/AUTHORS b/AUTHORS index ff7dcdee9..7b5160520 100644 --- a/AUTHORS +++ b/AUTHORS @@ -15,6 +15,7 @@ Brian De Wolf Brian Dockter Bruno Lingner Carlos Cesario +Christian Birk Christian Harke Christian Jonak Christian Lehmann diff --git a/doc/7-icinga-template-library.md b/doc/7-icinga-template-library.md index c491b6e73..5d3f8e335 100644 --- a/doc/7-icinga-template-library.md +++ b/doc/7-icinga-template-library.md @@ -686,6 +686,27 @@ mysql_key | **Optional.** Path to private SSL key. mysql_cadir | **Optional.** Path to CA directory. mysql_ciphers | **Optional.** List of valid SSL ciphers. + +### mysql_query + +Check command object for the `check_mysql_query` plugin. + +Custom attributes passed as [command parameters](3-monitoring-basics.md#command-passing-parameters): + +Name | Description +------------------------|--------------------------------------------------------------- +mysql_query_hostname | **Optional.** Host name, IP Address, or unix socket (must be an absolute path). +mysql_query_port | **Optional.** Port number (default: 3306). +mysql_query_database | **Optional.** Check database with indicated name. +mysql_query_file | **Optional.** Read from the specified client options file. +mysql_query_group | **Optional.** Use a client options group. +mysql_query_username | **Optional.** Connect using the indicated username. +mysql_query_password | **Optional.** Use the indicated password to authenticate the connection. +mysql_query_execute | **Required.** SQL Query to run on the MySQL Server. +mysql_query_warning | **Optional.** Exit with WARNING status if query is outside of the range (format: start:end). +mysql_query_critical | **Optional.** Exit with CRITICAL status if query is outside of the range. + + ### negate Check command object for the `negate` plugin. diff --git a/itl/command-plugins.conf b/itl/command-plugins.conf index b69ff1b9e..a1426d76e 100644 --- a/itl/command-plugins.conf +++ b/itl/command-plugins.conf @@ -2255,3 +2255,25 @@ object CheckCommand "game" { } } } + +object CheckCommand "mysql_query" { + import "plugin-check-command" + import "ipv4-or-ipv6" + + command = [ PluginDir + "/check_mysql_query" ] + + arguments = { + "-H" = "$mysql_query_hostname$" + "-P" = "$mysql_query_port$" + "-u" = "$mysql_query_username$" + "-p" = "$mysql_query_password$" + "-d" = "$mysql_query_database$" + "-f" = "$mysql_query_file$" + "-g" = "$mysql_query_group$" + "-q" = "$mysql_query_execute$" + "-w" = "$mysql_query_warning$" + "-c" = "$mysql_query_critical$" + } + + vars.mysql_query_hostname = "$check_address$" +}