Refactoring: Changed remaining check parameters starting with an 's' to the new rules...
[check_mk.git] / pnp-templates / check_mk-ibm_svc_host.php
blob4ec1652f6a76f9e1f9700d74c6ed3bfb50371f59
1 <?php
2 # +------------------------------------------------------------------+
3 # | ____ _ _ __ __ _ __ |
4 # | / ___| |__ ___ ___| | __ | \/ | |/ / |
5 # | | | | '_ \ / _ \/ __| |/ / | |\/| | ' / |
6 # | | |___| | | | __/ (__| < | | | | . \ |
7 # | \____|_| |_|\___|\___|_|\_\___|_| |_|_|\_\ |
8 # | |
9 # | Copyright Mathias Kettner 2014 mk@mathias-kettner.de |
10 # +------------------------------------------------------------------+
12 # This file is part of Check_MK.
13 # The official homepage is at http://mathias-kettner.de/check_mk.
15 # check_mk is free software; you can redistribute it and/or modify it
16 # under the terms of the GNU General Public License as published by
17 # the Free Software Foundation in version 2. check_mk is distributed
18 # in the hope that it will be useful, but WITHOUT ANY WARRANTY; with-
19 # out even the implied warranty of MERCHANTABILITY or FITNESS FOR A
20 # PARTICULAR PURPOSE. See the GNU General Public License for more de-
21 # tails. You should have received a copy of the GNU General Public
22 # License along with GNU Make; see the file COPYING. If not, write
23 # to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
24 # Boston, MA 02110-1301 USA.
26 $opt[1] = '--vertical-label "Number of Hosts" --title "' . $this->MACRO['DISP_HOSTNAME'] . ' / ' . $this->MACRO['DISP_SERVICEDESC'] . ' per State" --lower-limit=0';
28 $def[1] = ""
29 . "DEF:active=$RRDFILE[1]:$DS[1]:MAX "
30 . "DEF:inactive=$RRDFILE[2]:$DS[2]:MAX "
31 . "DEF:degraded=$RRDFILE[3]:$DS[3]:MAX "
32 . "DEF:offline=$RRDFILE[4]:$DS[4]:MAX "
33 . "DEF:other=$RRDFILE[5]:$DS[5]:MAX "
34 . "AREA:active#008000:\"Active \" "
35 . "GPRINT:active:AVERAGE:\"% 6.0lf Hosts avg\" "
36 . "GPRINT:active:LAST:\"% 6.0lf Hosts last\\n\" "
37 . "AREA:inactive#0000FF:\"Inactive \":STACK "
38 . "GPRINT:inactive:AVERAGE:\"% 6.0lf Hosts avg\" "
39 . "GPRINT:inactive:LAST:\"% 6.0lf Hosts last\\n\" "
40 . "AREA:degraded#F84:\"Degraded \":STACK "
41 . "GPRINT:degraded:AVERAGE:\"% 6.0lf Hosts avg\" "
42 . "GPRINT:degraded:LAST:\"% 6.0lf Hosts last\\n\" "
43 . "AREA:offline#FF0000:\"Offline \":STACK "
44 . "GPRINT:offline:AVERAGE:\"% 6.0lf Hosts avg\" "
45 . "GPRINT:offline:LAST:\"% 6.0lf Hosts last\\n\" "
46 . "AREA:other#000:\"Other \":STACK "
47 . "GPRINT:other:AVERAGE:\"% 6.0lf Hosts avg\" "
48 . "GPRINT:other:LAST:\"% 6.0lf Hosts last\\n\" "
49 . "";