mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* update graphs -> systems page * update availability graph to use the stats graph for 1 day averages * a bit of cleanup for various graphs * a few style fixes I missed * another style fix * update the pingperf graph as well * update the poller perf graph as well * style fix * move graphs to using generic_stats default for readability
14 lines
212 B
PHP
14 lines
212 B
PHP
<?php
|
|
|
|
$filename = Rrd::name($device['hostname'], 'ucd_ssRawInterrupts');
|
|
|
|
$ds = 'value';
|
|
|
|
$unit_text = 'Interrupts/s';
|
|
|
|
$float_precision = 3;
|
|
|
|
$descr = '';
|
|
|
|
require 'includes/html/graphs/generic_stats.inc.php';
|