2010-07-29 20:34:31 +00:00
|
|
|
<?php
|
|
|
|
|
|
2021-03-28 17:25:30 -05:00
|
|
|
if (Rrd::checkRrdExists(Rrd::name($device['hostname'], 'netstats-ip'))) {
|
2015-07-10 13:36:21 +02:00
|
|
|
$graph_title = 'IP Statistics';
|
|
|
|
|
$graph_type = 'device_ip';
|
2012-04-06 13:56:23 +00:00
|
|
|
|
2019-04-11 23:26:42 -05:00
|
|
|
include 'includes/html/print-device-graph.php';
|
2010-07-29 20:34:31 +00:00
|
|
|
|
2015-07-10 13:36:21 +02:00
|
|
|
$graph_title = 'IP Fragmented Statistics';
|
|
|
|
|
$graph_type = 'device_ip_fragmented';
|
2012-04-06 13:56:23 +00:00
|
|
|
|
2019-04-11 23:26:42 -05:00
|
|
|
include 'includes/html/print-device-graph.php';
|
2011-03-16 23:10:10 +00:00
|
|
|
}
|