summaryrefslogtreecommitdiffstats
path: root/templates/check_brick_usage.php
blob: eab2bc44f79475b6510fa827dc9a223be9503c3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
#
# check_interfaces -- template to generate RRD graph
# Copyright (C) 2014 Red Hat Inc
#
# 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 Street, Fifth Floor, Boston, MA  02110-1301, USA.
#

#
# set graph labels
foreach ($this->DS as $KEY=>$VAL) {
  # $VAL['NAME'] = str_replace("_","/",$VAL['NAME']);
  $ds_name[$KEY] = "Brick Utilization";
  $name[$KEY] = "Brick Path: " . $NAGIOS__SERVICEBRICK_DIR;

  # set graph labels
  $max_limit = $VAL['MAX'];
  $opt[$KEY]     = "--vertical-label \"%(Total: $max_limit GB) \"  --lower-limit 0 --upper-limit 100 -r --title \"$name[$KEY]\" ";

  # Graph Definitions
  $def[$KEY]     = rrd::def( "var1", $VAL['RRDFILE'], $VAL['DS'], "AVERAGE" );

  # disk graph rendering
  $def[$KEY]    .= rrd::area( "var1", "#008000", "Brick Usage" );
  $def[$KEY] .= rrd::gprint  ("var1", array("LAST","MAX","AVERAGE"), "%3.4lf %S%%");
  $i = 1;
  $k = $KEY;

  # create warning line and legend
  $def[$k] .= rrd::line2( $VAL['WARN'], "#FFA500", "Warning\\n");

# create critical line and legend
  $def[$k] .= rrd::line2( $VAL['CRIT'], "#FF0000", "Critical\\n");
  $def[$k] .= rrd::comment ("   \\n");
}
?>