2010-07-29 20:34:31 +00:00
|
|
|
<?php
|
|
|
|
|
2011-03-16 23:10:10 +00:00
|
|
|
if (is_file($config['rrd_dir'] . "/" . $device['hostname'] ."/netstats-snmp.rrd"))
|
|
|
|
{
|
|
|
|
$graph_title = "SNMP Packets Statistics";
|
|
|
|
$graph_type = "device_snmp_packets";
|
2012-04-06 13:56:23 +00:00
|
|
|
|
2011-03-16 23:10:10 +00:00
|
|
|
include("includes/print-device-graph.php");
|
2010-07-29 20:34:31 +00:00
|
|
|
|
2011-03-16 23:10:10 +00:00
|
|
|
$graph_title = "SNMP Message Type Statistics";
|
|
|
|
$graph_type = "device_snmp_statistics";
|
2012-04-06 13:56:23 +00:00
|
|
|
|
2011-03-16 23:10:10 +00:00
|
|
|
include("includes/print-device-graph.php");
|
|
|
|
}
|
2010-07-29 20:34:31 +00:00
|
|
|
|
2011-03-16 23:10:10 +00:00
|
|
|
?>
|