aboutsummaryrefslogtreecommitdiff
path: root/modules/pkgs/icinga2/check_mysql_slave.patch
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2016-09-29 13:51:44 +0300
committerIgor Pashev <pashev.igor@gmail.com>2016-09-29 13:51:44 +0300
commit62f28d30a069135f9c48678507203958adfc334f (patch)
tree7f38af0c8d3f445ee8cc50906a639baec7011127 /modules/pkgs/icinga2/check_mysql_slave.patch
parent1af9e6589bdd18e6ba7eeabf073aa7d710020cdd (diff)
downloadnixsap-62f28d30a069135f9c48678507203958adfc334f.tar.gz
Moved everything into ./modules
Diffstat (limited to 'modules/pkgs/icinga2/check_mysql_slave.patch')
-rw-r--r--modules/pkgs/icinga2/check_mysql_slave.patch41
1 files changed, 41 insertions, 0 deletions
diff --git a/modules/pkgs/icinga2/check_mysql_slave.patch b/modules/pkgs/icinga2/check_mysql_slave.patch
new file mode 100644
index 0000000..0658a8a
--- /dev/null
+++ b/modules/pkgs/icinga2/check_mysql_slave.patch
@@ -0,0 +1,41 @@
+Index: icinga2-2.4.1/itl/command-plugins.conf
+===================================================================
+--- icinga2-2.4.1.orig/itl/command-plugins.conf
++++ icinga2-2.4.1/itl/command-plugins.conf
+@@ -1775,6 +1775,36 @@ object CheckCommand "mysql" {
+ vars.mysql_hostname = "$check_address$"
+ }
+
++object CheckCommand "mysql_slave" {
++ import "plugin-check-command"
++ import "ipv4-or-ipv6"
++
++ command = [ PluginDir + "/check_mysql_slave" ]
++
++ arguments = {
++ "-H" = "$mysql_hostname$"
++ "-P" = "$mysql_port$"
++ "-s" = "$mysql_socket$"
++ "-f" = "$mysql_file$"
++ "-g" = "$mysql_group$"
++ "-u" = "$mysql_username$"
++ "-p" = "$mysql_password$"
++ "-N" = "$mysql_connection_name$"
++ "-w" = "$mysql_warning$"
++ "-c" = "$mysql_critical$"
++ "-l" = {
++ set_if = "$mysql_ssl$"
++ }
++ "-C" = "$mysql_cacert$"
++ "-a" = "$mysql_cert$"
++ "-k" = "$mysql_key$"
++ "-D" = "$mysql_cadir$"
++ "-L" = "$mysql_ciphers$"
++ }
++
++ vars.mysql_hostname = "$check_address$"
++}
++
+ object CheckCommand "negate" {
+ import "plugin-check-command"
+