Files
librenms-librenms/html/includes/graphs/device/ucd_interrupts.inc.php

18 lines
309 B
PHP
Raw Normal View History

<?php
2015-07-13 20:10:26 +02:00
$rrd_filename = $config['rrd_dir'].'/'.$device['hostname'].'/ucd_ssRawInterrupts.rrd';
2015-07-13 20:10:26 +02:00
$ds = 'value';
2015-07-13 20:10:26 +02:00
$colour_area = 'EEBBBB';
$colour_line = 'CC0000';
2015-07-13 20:10:26 +02:00
$colour_area_max = 'cc9999';
2015-07-13 20:10:26 +02:00
// $graph_max = 1;
$scale_min = 0;
2015-07-13 20:10:26 +02:00
$unit_text = 'Interrupts/s';
2015-07-13 20:10:26 +02:00
require 'includes/graphs/generic_simplex.inc.php';