Files
librenms-librenms/html/includes/graphs/application/ntpdserver_bits.inc.php
T

36 lines
857 B
PHP
Raw Normal View History

<?php
2011-10-01 10:10:02 +00:00
// $units = "b";
// $total_units = "B";
// $colours_in = "greens";
//$multiplier = "0";
// $colours_out = "blues";
2011-10-01 10:10:02 +00:00
$nototal = 1;
2011-10-01 10:10:02 +00:00
$ds_in = "packets_recv";
$ds_out = "packets_sent";
2011-10-01 10:10:02 +00:00
$graph_title .= "::packets";
$unit_text = "Packets";
2011-10-01 10:10:02 +00:00
$colour_line_in = "330033";
$colour_line_out = "FF6600";
$colour_area_in = "AA66AA";
$colour_area_out = "FFDD88";
$colour_area_in_max = "CC88CC";
$colour_area_out_max = "FFEFAA";
2011-10-01 10:10:02 +00:00
$ntpdserver_rrd = $config['rrd_dir'] . "/". $device['hostname'] . "/app-ntpdserver-".$app['app_id'].".rrd";
2011-10-01 10:10:02 +00:00
if (is_file($ntpdserver_rrd))
{
$rrd_filename = $ntpdserver_rrd;
}
// include("includes/graphs/generic_bits.inc.php");
2012-04-05 16:47:39 +00:00
2011-10-01 10:10:02 +00:00
include("includes/graphs/generic_duplex.inc.php");
?>