2016-08-29 12:02:59 +02:00
|
|
|
/******************************************************************************
|
|
|
|
* Icinga 2 *
|
2018-10-18 09:36:22 +02:00
|
|
|
* Copyright (C) 2012-2018 Icinga Development Team (https://icinga.com/) *
|
2016-08-29 12:02:59 +02:00
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or *
|
|
|
|
* modify it under the terms of the GNU General Public License *
|
|
|
|
* as published by the Free Software Foundation; either version 2 *
|
|
|
|
* of the License, or (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program is distributed in the hope that it will be useful, *
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
* GNU General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the Free Software Foundation *
|
|
|
|
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. *
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
object CheckCommand "glusterfs" {
|
|
|
|
command = [ "sudo", PluginDir + "/check_glusterfs" ]
|
|
|
|
|
|
|
|
arguments = {
|
|
|
|
"--perfdata" = {
|
|
|
|
set_if = "$glusterfs_perfdata$"
|
|
|
|
description = "Optional. Print perfdata of all or the specified volume."
|
|
|
|
}
|
|
|
|
"--warnonfailedheal" = {
|
|
|
|
set_if = "$glusterfs_warnonfailedheal$"
|
|
|
|
description = "Optional. Warn if the *heal-failed* log contains entries. The log can be cleared by restarting glusterd."
|
|
|
|
}
|
|
|
|
"--volume" = {
|
|
|
|
value = "$glusterfs_volume$"
|
|
|
|
description = "Optional. Only check the specified *VOLUME*. If --volume is not set, all volumes are checked."
|
|
|
|
}
|
|
|
|
"-w" = {
|
|
|
|
value = "$glusterfs_disk_warning$"
|
|
|
|
description = "Optional. Warn if disk usage is above *DISKWARN*. Defaults to 90 (percent)."
|
|
|
|
}
|
|
|
|
"-c" = {
|
|
|
|
value = "$glusterfs_disk_critical$"
|
|
|
|
description = "Optional. Return a critical error if disk usage is above *DISKCRIT*. Defaults to 95 (percent)."
|
|
|
|
}
|
|
|
|
"-W" = {
|
|
|
|
value = "$glusterfs_inode_warning$"
|
|
|
|
description = "Optional. Warn if inode usage is above *DISKWARN*. Defaults to 90 (percent)."
|
|
|
|
}
|
|
|
|
"-C" = {
|
|
|
|
value = "$glusterfs_inode_critical$"
|
|
|
|
description = "Optional. Return a critical error if inode usage is above *DISKCRIT*. Defaults to 95 (percent)."
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
vars.glusterfs_disk_warning = 90
|
|
|
|
vars.glusterfs_disk_critical = 95
|
|
|
|
vars.glusterfs_inode_warning = 90
|
2016-08-31 15:24:04 +02:00
|
|
|
vars.glusterfs_inode_critical = 95
|
2016-08-29 12:02:59 +02:00
|
|
|
}
|
2018-08-21 12:09:43 +02:00
|
|
|
|
|
|
|
object CheckCommand "ceph" {
|
|
|
|
command = [ PluginDir + "/check_ceph.py" ]
|
|
|
|
|
|
|
|
arguments = {
|
|
|
|
"-e" = {
|
2018-08-21 20:00:19 +02:00
|
|
|
value = "$ceph_exec_dir$"
|
2018-08-21 12:09:43 +02:00
|
|
|
required = false
|
|
|
|
description = "ceph executable [/usr/bin/ceph]"
|
|
|
|
}
|
|
|
|
"-c" = {
|
2018-08-21 20:00:19 +02:00
|
|
|
value = "$ceph_conf_file$"
|
2018-08-21 12:09:43 +02:00
|
|
|
required = false
|
|
|
|
description = "alternative ceph conf file"
|
|
|
|
}
|
|
|
|
"-m" = {
|
2018-08-21 20:00:19 +02:00
|
|
|
value = "$ceph_mon_address$"
|
2018-08-21 12:09:43 +02:00
|
|
|
required = false
|
|
|
|
description = "ceph monitor address[:port]"
|
|
|
|
}
|
|
|
|
"-i" = {
|
2018-08-21 20:00:19 +02:00
|
|
|
value = "$ceph_client_id$"
|
2018-08-21 12:09:43 +02:00
|
|
|
required = false
|
|
|
|
description = "ceph client id"
|
|
|
|
}
|
|
|
|
"-n" = {
|
2018-08-21 20:00:19 +02:00
|
|
|
value = "$ceph_client_name$"
|
2018-08-21 12:09:43 +02:00
|
|
|
required = false
|
|
|
|
description = "ceph client name"
|
|
|
|
}
|
|
|
|
"-k" = {
|
2018-08-21 20:00:19 +02:00
|
|
|
value = "$ceph_client_key$"
|
2018-08-21 12:09:43 +02:00
|
|
|
required = false
|
|
|
|
description = "ceph client keyring file"
|
|
|
|
}
|
|
|
|
"-w" = {
|
2018-08-21 20:00:19 +02:00
|
|
|
value = "$ceph_whitelist$"
|
2018-08-21 12:09:43 +02:00
|
|
|
required = false
|
|
|
|
description = "whitelist regexp for ceph health warnings"
|
|
|
|
}
|
|
|
|
"-d" = {
|
2018-08-21 20:00:19 +02:00
|
|
|
set_if = "$ceph_details$"
|
2018-08-21 12:09:43 +02:00
|
|
|
description = "exec 'ceph health detail'"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-27 21:04:10 +01:00
|
|
|
|
|
|
|
object CheckCommand "btrfs" {
|
2018-11-29 21:41:27 +01:00
|
|
|
import "plugin-check-command"
|
|
|
|
command = [ "sudo", PluginDir + "/check_btrfs" ]
|
2018-11-27 21:04:10 +01:00
|
|
|
|
2018-11-29 21:41:27 +01:00
|
|
|
arguments = {
|
|
|
|
"--allocated-warning-gib" = {
|
|
|
|
value = "$btrfs_awg$"
|
|
|
|
description = "Exit with WARNING status if less than the specified amount of disk space (in GiB) is unallocated"
|
|
|
|
}
|
|
|
|
"--allocated-critical-gib" = {
|
|
|
|
value = "$btrfs_acg$"
|
|
|
|
description = "Exit with CRITICAL status if less than the specified amount of disk space (in GiB) is unallocated"
|
|
|
|
}
|
|
|
|
"--allocated-warning-percent" = {
|
|
|
|
value = "$btrfs_awp$"
|
|
|
|
description = "Exit with WARNING status if more than the specified percent of disk space is allocated"
|
|
|
|
}
|
|
|
|
"--allocated-critical-percent" = {
|
|
|
|
value = "$btrfs_acp$"
|
|
|
|
description = "Exit with CRITICAL status if more than the specified percent of disk space is allocated"
|
|
|
|
}
|
|
|
|
"--mountpoint" = {
|
|
|
|
value = "$btrfs_mountpoint$"
|
|
|
|
description = "Path to the BTRFS mountpoint"
|
|
|
|
required = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
vars.btrfs_awp = 80
|
|
|
|
vars.btrfs_acp = 90
|
2018-11-27 21:04:10 +01:00
|
|
|
}
|
|
|
|
|