2010-07-31 18:34:08 +00:00
|
|
|
<?php
|
|
|
|
|
2016-07-07 01:33:43 -05:00
|
|
|
$rrd_filename = rrd_name($device['hostname'], 'ucd_ssRawInterrupts');
|
2010-07-31 18:34:08 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
$ds = 'value';
|
2010-07-31 18:34:08 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
$colour_area = 'EEBBBB';
|
|
|
|
$colour_line = 'CC0000';
|
2010-07-31 18:34:08 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
$colour_area_max = 'cc9999';
|
2010-07-31 18:34:08 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
// $graph_max = 1;
|
2012-05-09 12:56:24 +00:00
|
|
|
$scale_min = 0;
|
2010-07-31 18:34:08 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
$unit_text = 'Interrupts/s';
|
2010-07-31 18:34:08 +00:00
|
|
|
|
2019-04-11 23:26:42 -05:00
|
|
|
require 'includes/html/graphs/generic_simplex.inc.php';
|