mirror of https://github.com/Icinga/icinga2.git
300 lines
5.5 KiB
Plaintext
300 lines
5.5 KiB
Plaintext
/******************************************************************************
|
|
* Icinga 2 *
|
|
* Copyright (C) 2012-2014 Icinga Development Team (http://www.icinga.org) *
|
|
* *
|
|
* 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 "ping4" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_ping",
|
|
"-4",
|
|
"-H", "$address$",
|
|
"-w", "$wrta$,$wpl$%",
|
|
"-c", "$crta$,$cpl$%",
|
|
"-p", "$packets$",
|
|
"-t", "$timeout$"
|
|
],
|
|
|
|
vars.wrta = 100
|
|
vars.wpl = 5
|
|
vars.crta = 200
|
|
vars.cpl = 15
|
|
vars.packets = 5
|
|
vars.timeout = 0
|
|
}
|
|
|
|
object CheckCommand "ping6" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_ping",
|
|
"-6",
|
|
"-H", "$address6$",
|
|
"-w", "$wrta$,$wpl$%",
|
|
"-c", "$crta$,$cpl$%",
|
|
"-p", "$packets$",
|
|
"-t", "$timeout$"
|
|
],
|
|
|
|
vars.wrta = 100,
|
|
vars.wpl = 5,
|
|
|
|
vars.crta = 200,
|
|
vars.cpl = 15,
|
|
|
|
vars.packets = 5,
|
|
vars.timeout = 0
|
|
}
|
|
|
|
object CheckCommand "hostalive" {
|
|
import "ping4"
|
|
|
|
vars.wrta = 3000.0,
|
|
vars.wpl = 80,
|
|
|
|
vars.crta = 5000.0,
|
|
vars.cpl = 100
|
|
}
|
|
|
|
object CheckCommand "dummy" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_dummy",
|
|
"$state$",
|
|
"$text$"
|
|
],
|
|
|
|
vars.state = 0,
|
|
vars.text = "Check was successful."
|
|
}
|
|
|
|
object CheckCommand "passive" {
|
|
import "dummy",
|
|
|
|
vars.state = 3,
|
|
vars.text = "No Passive Check Result Received."
|
|
}
|
|
|
|
object CheckCommand "tcp" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_tcp",
|
|
"-H", "$address$",
|
|
"-p", "$port$"
|
|
]
|
|
}
|
|
|
|
object CheckCommand "udp" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_udp",
|
|
"-H", "$address$",
|
|
"-p", "$port$"
|
|
]
|
|
}
|
|
|
|
object CheckCommand "http_vhost" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_http",
|
|
"-H", "$vhost$"
|
|
]
|
|
}
|
|
|
|
object CheckCommand "http_ip" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_http",
|
|
"-H", "$address$"
|
|
]
|
|
}
|
|
|
|
object CheckCommand "https_vhost" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_http",
|
|
"-H", "$vhost$", "-S"
|
|
]
|
|
}
|
|
|
|
object CheckCommand "https_ip" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_http",
|
|
"-I", "$address$", "-S"
|
|
]
|
|
}
|
|
|
|
object CheckCommand "smtp" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_smtp",
|
|
"-H", "$address$"
|
|
]
|
|
}
|
|
|
|
object CheckCommand "ssmtp" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_ssmtp",
|
|
"-H", "$address$",
|
|
"-p", "$port$"
|
|
],
|
|
|
|
vars.port = 465
|
|
}
|
|
|
|
object CheckCommand "ntp_time" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_ntp_time",
|
|
"-H", "$address$"
|
|
]
|
|
}
|
|
|
|
object CheckCommand "ssh" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_ssh",
|
|
"$address$"
|
|
]
|
|
}
|
|
|
|
object CheckCommand "disk" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_disk",
|
|
"-w", "$wfree$%",
|
|
"-c", "$cfree$%"
|
|
],
|
|
|
|
vars.wfree = 20,
|
|
vars.cfree = 10,
|
|
}
|
|
|
|
object CheckCommand "users" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_users",
|
|
"-w", "$wgreater$",
|
|
"-c", "$cgreater$"
|
|
],
|
|
|
|
vars.wgreater = 20,
|
|
vars.cgreater = 50,
|
|
}
|
|
|
|
object CheckCommand "processes" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_procs",
|
|
"-w", "$wgreater$",
|
|
"-c", "$cgreater$"
|
|
],
|
|
|
|
vars.wgreater = 250,
|
|
vars.cgreater = 400,
|
|
}
|
|
|
|
object CheckCommand "swap" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_swap",
|
|
"-w", "$wfree$%",
|
|
"-c", "$cfree$%"
|
|
],
|
|
|
|
vars.wfree = 50,
|
|
vars.cfree = 25,
|
|
}
|
|
|
|
object CheckCommand "load" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_load",
|
|
"-w", "$wload1$,$wload5$,$wload15$",
|
|
"-c", "$cload1$,$cload5$,$cload15$"
|
|
],
|
|
|
|
vars.wload1 = 5.0,
|
|
vars.wload5 = 4.0,
|
|
vars.wload15 = 3.0,
|
|
|
|
vars.cload1 = 10.0,
|
|
vars.cload5 = 6.0,
|
|
vars.cload15 = 4.0
|
|
}
|
|
|
|
object CheckCommand "snmp" {
|
|
import "plugin-check-command",
|
|
|
|
command = [
|
|
PluginDir + "/check_snmp",
|
|
"-H", "$address$",
|
|
"-o", "$oid$",
|
|
"-C", "$community$"
|
|
],
|
|
|
|
vars.community = "public"
|
|
}
|
|
|
|
object CheckCommand "snmp-uptime" {
|
|
import "snmp",
|
|
|
|
vars.oid = "1.3.6.1.2.1.1.3.0"
|
|
}
|
|
|
|
object CheckCommand "apt" {
|
|
import "plugin-check-command"
|
|
|
|
command = [
|
|
PluginDir + "/check_apt"
|
|
]
|
|
}
|
|
|
|
object CheckCommand "icinga" {
|
|
import "icinga-check-command",
|
|
|
|
}
|
|
|
|
object CheckCommand "cluster" {
|
|
import "cluster-check-command",
|
|
|
|
}
|
|
|
|
object CheckCommand "agent" {
|
|
import "agent-check-command"
|
|
}
|
|
|