2010-02-13 21:45:39 +00:00
|
|
|
<?php
|
|
|
|
|
|
2012-04-20 17:37:58 +00:00
|
|
|
$scale_min = '0';
|
2012-05-03 10:48:27 +00:00
|
|
|
$scale_max = '100';
|
2012-04-20 17:37:58 +00:00
|
|
|
|
|
|
|
|
$ds = 'usage';
|
|
|
|
|
|
2015-11-15 11:48:39 +10:00
|
|
|
// FIXME: As far as I can tell, $descr is never mentioned in includes/graphs/generic_simplex.inc.php -- PDG 2015-11-14
|
2021-03-28 17:25:30 -05:00
|
|
|
$descr = \LibreNMS\Data\Store\Rrd::fixedSafeDescr(short_hrDeviceDescr($proc['processor_descr']), 28);
|
2012-04-20 17:37:58 +00:00
|
|
|
|
|
|
|
|
$colour_line = 'cc0000';
|
2012-05-09 10:01:42 +00:00
|
|
|
$colour_area = 'FFBBBB';
|
2012-04-20 17:37:58 +00:00
|
|
|
$colour_minmax = 'c5c5c5';
|
|
|
|
|
|
|
|
|
|
$graph_max = 1;
|
|
|
|
|
$unit_text = 'Usage';
|
2010-02-13 21:45:39 +00:00
|
|
|
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/graphs/generic_simplex.inc.php';
|