mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
add previous period overlay to generic_bits/bytes and generic_duplex
git-svn-id: http://www.observium.org/svn/observer/trunk@3063 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
@ -15,7 +15,8 @@ $ds_in = "dr";
|
|||||||
$ds_out = "dw";
|
$ds_out = "dw";
|
||||||
|
|
||||||
$multiplier = "8";
|
$multiplier = "8";
|
||||||
|
$format = "bytes";
|
||||||
|
|
||||||
include("includes/graphs/generic_bits.inc.php");
|
include("includes/graphs/generic_data.inc.php");
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -16,6 +16,6 @@ $ds_out = "ns";
|
|||||||
|
|
||||||
$multiplier = "8";
|
$multiplier = "8";
|
||||||
|
|
||||||
include("includes/graphs/generic_bits.inc.php");
|
include("includes/graphs/generic_data.inc.php");
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -14,6 +14,6 @@ $multiplier = 8;
|
|||||||
$ds_in = "BRd";
|
$ds_in = "BRd";
|
||||||
$ds_out = "BSt";
|
$ds_out = "BSt";
|
||||||
|
|
||||||
include("includes/graphs/generic_bits.inc.php");
|
include("includes/graphs/generic_data.inc.php");
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -22,6 +22,6 @@ $rrddir = $config['rrd_dir']."/".$device['hostname'];
|
|||||||
$hostname = (isset($_GET['hostname']) ? $_GET['hostname'] : "unkown");
|
$hostname = (isset($_GET['hostname']) ? $_GET['hostname'] : "unkown");
|
||||||
$rrd_filename = $rrddir."/app-shoutcast-".$app['app_id']."-".$hostname.".rrd";
|
$rrd_filename = $rrddir."/app-shoutcast-".$app['app_id']."-".$hostname.".rrd";
|
||||||
|
|
||||||
include("includes/graphs/generic_bits.inc.php");
|
include("includes/graphs/generic_data.inc.php");
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
$ds_in = "inpacketoctets";
|
$ds_in = "inpacketoctets";
|
||||||
$ds_out = "outpacketoctets";
|
$ds_out = "outpacketoctets";
|
||||||
|
|
||||||
include("includes/graphs/generic_bits.inc.php");
|
include("includes/graphs/generic_data.inc.php");
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -5,6 +5,6 @@ $rrd_filename = $config['rrd_dir'] . "/" . $device['hostname'] . "/cipsec_flow.r
|
|||||||
$ds_in = "InOctets";
|
$ds_in = "InOctets";
|
||||||
$ds_out = "OutOctets";
|
$ds_out = "OutOctets";
|
||||||
|
|
||||||
include("includes/graphs/generic_bits.inc.php");
|
include("includes/graphs/generic_data.inc.php");
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -7,6 +7,6 @@ $ds_out = "TotTxBytes";
|
|||||||
|
|
||||||
$multiplier = 8;
|
$multiplier = 8;
|
||||||
|
|
||||||
include("includes/graphs/generic_bits.inc.php");
|
include("includes/graphs/generic_data.inc.php");
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -7,6 +7,6 @@ $ds_out = "value";
|
|||||||
|
|
||||||
$multiplier = 512;
|
$multiplier = 512;
|
||||||
|
|
||||||
include("includes/graphs/generic_bits.inc.php");
|
include("includes/graphs/generic_data.inc.php");
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -7,6 +7,6 @@ $ds_out = "value";
|
|||||||
|
|
||||||
$multiplier = 512;
|
$multiplier = 512;
|
||||||
|
|
||||||
include("includes/graphs/generic_bits.inc.php");
|
include("includes/graphs/generic_data.inc.php");
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
$ds_in = "read";
|
$ds_in = "read";
|
||||||
$ds_out = "written";
|
$ds_out = "written";
|
||||||
|
|
||||||
include("includes/graphs/generic_bytes.inc.php");
|
$format = "bytes";
|
||||||
|
|
||||||
?>
|
include("includes/graphs/generic_data.inc.php");
|
||||||
|
|
||||||
|
?>
|
||||||
|
@ -1,62 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/// Draw generic octets graph
|
|
||||||
/// args: ds_in, ds_out, rrd_filename, bg, legend, from, to, width, height, inverse
|
|
||||||
|
|
||||||
include("includes/graphs/common.inc.php");
|
|
||||||
|
|
||||||
if ($rrd_filename) { $rrd_filename_out = $rrd_filename; $rrd_filename_in = $rrd_filename; }
|
|
||||||
|
|
||||||
if ($inverse) { $in = 'out'; $out = 'in'; } else { $in = 'in'; $out = 'out'; }
|
|
||||||
|
|
||||||
if ($multiplier)
|
|
||||||
{
|
|
||||||
$rrd_options .= " DEF:p".$out."octets=".$rrd_filename_out.":".$ds_out.":AVERAGE";
|
|
||||||
$rrd_options .= " DEF:p".$in."octets=".$rrd_filename_in.":".$ds_in.":AVERAGE";
|
|
||||||
$rrd_options .= " DEF:p".$out."octets_max=".$rrd_filename_out.":".$ds_out.":MAX";
|
|
||||||
$rrd_options .= " DEF:p".$in."octets_max=".$rrd_filename_in.":".$ds_in.":MAX";
|
|
||||||
$rrd_options .= " CDEF:inoctets=pinoctets,$multiplier,*";
|
|
||||||
$rrd_options .= " CDEF:outoctets=poutoctets,$multiplier,*";
|
|
||||||
$rrd_options .= " CDEF:inoctets_max=pinoctets_max,$multiplier,*";
|
|
||||||
$rrd_options .= " CDEF:outoctets_max=poutoctets_max,$multiplier,*";
|
|
||||||
} else {
|
|
||||||
$rrd_options .= " DEF:".$out."octets=".$rrd_filename_out.":".$ds_out.":AVERAGE";
|
|
||||||
$rrd_options .= " DEF:".$in."octets=".$rrd_filename_in.":".$ds_in.":AVERAGE";
|
|
||||||
$rrd_options .= " DEF:".$out."octets_max=".$rrd_filename_out.":".$ds_out.":MAX";
|
|
||||||
$rrd_options .= " DEF:".$in."octets_max=".$rrd_filename_in.":".$ds_in.":MAX";
|
|
||||||
}
|
|
||||||
|
|
||||||
$rrd_options .= " CDEF:octets=inoctets,outoctets,+";
|
|
||||||
$rrd_options .= " CDEF:doutoctets=outoctets,-1,*";
|
|
||||||
$rrd_options .= " CDEF:doutoctets_max=outoctets_max,-1,*";
|
|
||||||
|
|
||||||
$rrd_options .= " VDEF:totin=inoctets,TOTAL";
|
|
||||||
$rrd_options .= " VDEF:totout=outoctets,TOTAL";
|
|
||||||
$rrd_options .= " VDEF:tot=octets,TOTAL";
|
|
||||||
|
|
||||||
#$rrd_options .= " VDEF:95thin=inoctets,95,PERCENT";
|
|
||||||
#$rrd_options .= " VDEF:95thout=outoctets,95,PERCENT";
|
|
||||||
#$rrd_options .= " VDEF:d95thout=doutoctets,5,PERCENT";
|
|
||||||
|
|
||||||
$rrd_options .= " AREA:inoctets_max#aDEB7B:";
|
|
||||||
$rrd_options .= " AREA:inoctets#CDEB8B:";
|
|
||||||
$rrd_options .= " COMMENT:'Bytes/sec Now Ave Max\\n'";
|
|
||||||
$rrd_options .= " LINE1.25:inoctets#006600:'In '";
|
|
||||||
$rrd_options .= " GPRINT:inoctets:LAST:%6.2lf%s";
|
|
||||||
$rrd_options .= " GPRINT:inoctets:AVERAGE:%6.2lf%s";
|
|
||||||
$rrd_options .= " GPRINT:inoctets_max:MAX:%6.2lf%s\\\\n";
|
|
||||||
#$rrd_options .= " GPRINT:95thin:%6.2lf%s\\\\n";
|
|
||||||
$rrd_options .= " AREA:doutoctets_max#a3b9FF:";
|
|
||||||
$rrd_options .= " AREA:doutoctets#C3D9FF:";
|
|
||||||
$rrd_options .= " LINE1.25:doutoctets#000099:'Out '";
|
|
||||||
$rrd_options .= " GPRINT:outoctets:LAST:%6.2lf%s";
|
|
||||||
$rrd_options .= " GPRINT:outoctets:AVERAGE:%6.2lf%s";
|
|
||||||
$rrd_options .= " GPRINT:outoctets_max:MAX:%6.2lf%s\\\\n";
|
|
||||||
#$rrd_options .= " GPRINT:95thout:%6.2lf%s\\\\n";
|
|
||||||
$rrd_options .= " GPRINT:tot:'Total %6.2lf%s'";
|
|
||||||
$rrd_options .= " GPRINT:totin:'(In %6.2lf%s'";
|
|
||||||
$rrd_options .= " GPRINT:totout:'Out %6.2lf%s)\\\\l'";
|
|
||||||
#$rrd_options .= " LINE1:95thin#aa0000";
|
|
||||||
#$rrd_options .= " LINE1:d95thout#aa0000";
|
|
||||||
|
|
||||||
?>
|
|
@ -6,7 +6,6 @@
|
|||||||
include("includes/graphs/common.inc.php");
|
include("includes/graphs/common.inc.php");
|
||||||
|
|
||||||
if ($rrd_filename) { $rrd_filename_out = $rrd_filename; $rrd_filename_in = $rrd_filename; }
|
if ($rrd_filename) { $rrd_filename_out = $rrd_filename; $rrd_filename_in = $rrd_filename; }
|
||||||
|
|
||||||
if ($inverse) { $in = 'out'; $out = 'in'; } else { $in = 'in'; $out = 'out'; }
|
if ($inverse) { $in = 'out'; $out = 'in'; } else { $in = 'in'; $out = 'out'; }
|
||||||
|
|
||||||
if ($multiplier)
|
if ($multiplier)
|
||||||
@ -83,22 +82,32 @@ $rrd_options .= " VDEF:95thin=inbits,95,PERCENT";
|
|||||||
$rrd_options .= " VDEF:95thout=outbits,95,PERCENT";
|
$rrd_options .= " VDEF:95thout=outbits,95,PERCENT";
|
||||||
$rrd_options .= " VDEF:d95thout=doutbits,5,PERCENT";
|
$rrd_options .= " VDEF:d95thout=doutbits,5,PERCENT";
|
||||||
|
|
||||||
|
if($format == "octets" || $format == "bytes")
|
||||||
|
{
|
||||||
|
$units = "Bps";
|
||||||
|
$format = "octets";
|
||||||
|
} else {
|
||||||
|
$units = "bps";
|
||||||
|
$format = "bits";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
$rrd_options .= " COMMENT:'bps Now Ave Max 95th %\\n'";
|
$rrd_options .= " COMMENT:'bps Now Ave Max 95th %\\n'";
|
||||||
|
|
||||||
$rrd_options .= " AREA:inbits_max#aDEB7B:";
|
$rrd_options .= " AREA:in".$format."_max#aDEB7B:";
|
||||||
$rrd_options .= " AREA:inbits#91B13C:'In '";
|
$rrd_options .= " AREA:in".$format."#91B13C:'In '";
|
||||||
#$rrd_options .= " LINE1.25:inbits#006600:'In '";
|
#$rrd_options .= " LINE1.25:in".$format."#006600:'In '";
|
||||||
$rrd_options .= " GPRINT:inbits:LAST:%6.2lf%s";
|
$rrd_options .= " GPRINT:in".$format.":LAST:%6.2lf%s";
|
||||||
$rrd_options .= " GPRINT:inbits:AVERAGE:%6.2lf%s";
|
$rrd_options .= " GPRINT:in".$format.":AVERAGE:%6.2lf%s";
|
||||||
$rrd_options .= " GPRINT:inbits_max:MAX:%6.2lf%s";
|
$rrd_options .= " GPRINT:in".$format."_max:MAX:%6.2lf%s";
|
||||||
$rrd_options .= " GPRINT:95thin:%6.2lf%s\\\\n";
|
$rrd_options .= " GPRINT:95thin:%6.2lf%s\\\\n";
|
||||||
|
|
||||||
$rrd_options .= " AREA:doutbits_max#a3b9FF:";
|
$rrd_options .= " AREA:dout".$format."_max#a3b9FF:";
|
||||||
$rrd_options .= " AREA:doutbits#8080BD:'Out'";
|
$rrd_options .= " AREA:dout".$format."#8080BD:'Out'";
|
||||||
#$rrd_options .= " LINE1.25:doutbits#000099:Out";
|
#$rrd_options .= " LINE1.25:dout".$format."#000099:Out";
|
||||||
$rrd_options .= " GPRINT:outbits:LAST:%6.2lf%s";
|
$rrd_options .= " GPRINT:out".$format.":LAST:%6.2lf%s";
|
||||||
$rrd_options .= " GPRINT:outbits:AVERAGE:%6.2lf%s";
|
$rrd_options .= " GPRINT:out".$format.":AVERAGE:%6.2lf%s";
|
||||||
$rrd_options .= " GPRINT:outbits_max:MAX:%6.2lf%s";
|
$rrd_options .= " GPRINT:out".$format."_max:MAX:%6.2lf%s";
|
||||||
$rrd_options .= " GPRINT:95thout:%6.2lf%s\\\\n";
|
$rrd_options .= " GPRINT:95thout:%6.2lf%s\\\\n";
|
||||||
|
|
||||||
if ($config['rrdgraph_real_95th']) {
|
if ($config['rrdgraph_real_95th']) {
|
||||||
@ -114,8 +123,8 @@ $rrd_options .= " LINE1:d95thout#aa0000";
|
|||||||
|
|
||||||
if($_GET['previous'] == "yes")
|
if($_GET['previous'] == "yes")
|
||||||
{
|
{
|
||||||
$rrd_options .= " LINE1.25:inbitsX#009900:'Prev In \\\\n'";
|
$rrd_options .= " LINE1.25:in".$format."X#009900:'Prev In \\\\n'";
|
||||||
$rrd_options .= " LINE1.25:doutbitsX#000099:'Prev Out'";
|
$rrd_options .= " LINE1.25:dout".$format."X#000099:'Prev Out'";
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
@ -20,30 +20,61 @@ $rrd_options .= " DEF:".$out."=".$rrd_filename.":".$ds_out.":AVERAGE";
|
|||||||
$rrd_options .= " DEF:".$in."=".$rrd_filename.":".$ds_in.":AVERAGE";
|
$rrd_options .= " DEF:".$in."=".$rrd_filename.":".$ds_in.":AVERAGE";
|
||||||
$rrd_options .= " DEF:".$out."_max=".$rrd_filename.":".$ds_out.":MAX";
|
$rrd_options .= " DEF:".$out."_max=".$rrd_filename.":".$ds_out.":MAX";
|
||||||
$rrd_options .= " DEF:".$in."_max=".$rrd_filename.":".$ds_in.":MAX";
|
$rrd_options .= " DEF:".$in."_max=".$rrd_filename.":".$ds_in.":MAX";
|
||||||
|
|
||||||
$rrd_options .= " CDEF:dout_max=out_max,-1,*";
|
$rrd_options .= " CDEF:dout_max=out_max,-1,*";
|
||||||
$rrd_options .= " CDEF:dout=out,-1,*";
|
$rrd_options .= " CDEF:dout=out,-1,*";
|
||||||
$rrd_options .= " CDEF:both=in,out,+";
|
$rrd_options .= " CDEF:both=in,out,+";
|
||||||
|
|
||||||
if ($print_total)
|
if ($print_total)
|
||||||
{
|
{
|
||||||
$rrd_options .= " VDEF:totin=in,TOTAL";
|
$rrd_options .= " VDEF:totin=in,TOTAL";
|
||||||
$rrd_options .= " VDEF:totout=out,TOTAL";
|
$rrd_options .= " VDEF:totout=out,TOTAL";
|
||||||
$rrd_options .= " VDEF:tot=both,TOTAL";
|
$rrd_options .= " VDEF:tot=both,TOTAL";
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($percentile)
|
if ($percentile)
|
||||||
{
|
{
|
||||||
$rrd_options .= " VDEF:percentile_in=in,".$percentile.",PERCENT";
|
$rrd_options .= " VDEF:percentile_in=in,".$percentile.",PERCENT";
|
||||||
$rrd_options .= " VDEF:percentile_out=out,".$percentile.",PERCENT";
|
$rrd_options .= " VDEF:percentile_out=out,".$percentile.",PERCENT";
|
||||||
$rrd_options .= " VDEF:dpercentile_out=dout,".$percentile.",PERCENT";
|
$rrd_options .= " VDEF:dpercentile_out=dout,".$percentile.",PERCENT";
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($graph_max)
|
if ($graph_max)
|
||||||
{
|
{
|
||||||
$rrd_options .= " AREA:in_max#".$colour_area_in_max.":";
|
$rrd_options .= " AREA:in_max#".$colour_area_in_max.":";
|
||||||
$rrd_options .= " AREA:dout_max#".$colour_area_out_max.":";
|
$rrd_options .= " AREA:dout_max#".$colour_area_out_max.":";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if($_GET['previous'] == "yes")
|
||||||
|
{
|
||||||
|
$rrd_options .= " DEF:".$out."X=".$rrd_filename.":".$ds_out.":AVERAGE:start=".$prev_from.":end=".$from;
|
||||||
|
$rrd_options .= " DEF:".$in."X=".$rrd_filename.":".$ds_in.":AVERAGE:start=".$prev_from.":end=".$from;
|
||||||
|
$rrd_options .= " DEF:".$out."_maxX=".$rrd_filename.":".$ds_out.":MAX:start=".$prev_from.":end=".$from;
|
||||||
|
$rrd_options .= " DEF:".$in."_maxX=".$rrd_filename.":".$ds_in.":MAX:start=".$prev_from.":end=".$from;
|
||||||
|
$rrd_options .= " SHIFT:".$out."X:$period";
|
||||||
|
$rrd_options .= " SHIFT:".$in."X:$period";
|
||||||
|
$rrd_options .= " SHIFT:".$out."_maxX:$period";
|
||||||
|
$rrd_options .= " SHIFT:".$in."_maxX:$period";
|
||||||
|
$rrd_options .= " CDEF:dout_maxX=out_maxX,-1,*";
|
||||||
|
$rrd_options .= " CDEF:doutX=outX,-1,*";
|
||||||
|
$rrd_options .= " CDEF:bothX=inX,outX,+";
|
||||||
|
if ($print_total)
|
||||||
|
{
|
||||||
|
$rrd_options .= " VDEF:totinX=inX,TOTAL";
|
||||||
|
$rrd_options .= " VDEF:totoutX=outX,TOTAL";
|
||||||
|
$rrd_options .= " VDEF:totX=bothX,TOTAL";
|
||||||
|
}
|
||||||
|
if ($percentile)
|
||||||
|
{
|
||||||
|
$rrd_options .= " VDEF:percentile_inX=inX,".$percentile.",PERCENT";
|
||||||
|
$rrd_options .= " VDEF:percentile_outX=outX,".$percentile.",PERCENT";
|
||||||
|
$rrd_options .= " VDEF:dpercentile_outX=doutX,".$percentile.",PERCENT";
|
||||||
|
}
|
||||||
|
if ($graph_max)
|
||||||
|
{
|
||||||
|
$rrd_options .= " AREA:in_max#".$colour_area_in_max.":";
|
||||||
|
$rrd_options .= " AREA:dout_max#".$colour_area_out_max.":";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$rrd_options .= " AREA:in#".$colour_area_in.":";
|
$rrd_options .= " AREA:in#".$colour_area_in.":";
|
||||||
$rrd_options .= " COMMENT:'".$unit_text." Now Ave Max";
|
$rrd_options .= " COMMENT:'".$unit_text." Now Ave Max";
|
||||||
|
|
||||||
@ -90,4 +121,12 @@ if ($percentile)
|
|||||||
$rrd_options .= " LINE1:dpercentile_out#aa0000";
|
$rrd_options .= " LINE1:dpercentile_out#aa0000";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if($_GET['previous'] == "yes")
|
||||||
|
{
|
||||||
|
$rrd_options .= " LINE1.25:in".$format."X#666666:'Prev In \\\\n'";
|
||||||
|
$rrd_options .= " LINE1.25:dout".$format."X#666666:'Prev Out'";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -3,6 +3,8 @@
|
|||||||
$ds_in = "TunInOctets";
|
$ds_in = "TunInOctets";
|
||||||
$ds_out = "TunOutOctets";
|
$ds_out = "TunOutOctets";
|
||||||
|
|
||||||
include("includes/graphs/generic_bytes.inc.php");
|
$format = "octets";
|
||||||
|
|
||||||
|
include("includes/graphs/generic_data.inc.php");
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
$ds_in = "IN";
|
$ds_in = "IN";
|
||||||
$ds_out = "OUT";
|
$ds_out = "OUT";
|
||||||
|
|
||||||
include("includes/graphs/generic_bits.inc.php");
|
include("includes/graphs/generic_data.inc.php");
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
$ds_in = "TotalRequestBytes";
|
$ds_in = "TotalRequestBytes";
|
||||||
$ds_out = "TotalResponseBytes";
|
$ds_out = "TotalResponseBytes";
|
||||||
|
|
||||||
include("includes/graphs/generic_bits.inc.php");
|
include("includes/graphs/generic_data.inc.php");
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
$ds_in = "INOCTETS";
|
$ds_in = "INOCTETS";
|
||||||
$ds_out = "OUTOCTETS";
|
$ds_out = "OUTOCTETS";
|
||||||
|
|
||||||
include("includes/graphs/generic_bits.inc.php");
|
include("includes/graphs/generic_data.inc.php");
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -3,21 +3,6 @@
|
|||||||
##$ds_in = "RserverCurrentConns";
|
##$ds_in = "RserverCurrentConns";
|
||||||
##$ds_out = "RserverTotalConns";
|
##$ds_out = "RserverTotalConns";
|
||||||
|
|
||||||
##include("includes/graphs/generic_bytes.inc.php");
|
|
||||||
|
|
||||||
#$ds = "RserverCurrentConns";
|
|
||||||
|
|
||||||
#$colour_area = "B0C4DE";
|
|
||||||
#$colour_line = "191970";
|
|
||||||
|
|
||||||
#$colour_area_max = "FFEE99";
|
|
||||||
|
|
||||||
#$graph_max = 1;
|
|
||||||
|
|
||||||
#$unit_text = "Conns";
|
|
||||||
|
|
||||||
#include("includes/graphs/generic_simplex.inc.php");
|
|
||||||
|
|
||||||
$scale_min = 0;
|
$scale_min = 0;
|
||||||
|
|
||||||
include("includes/graphs/common.inc.php");
|
include("includes/graphs/common.inc.php");
|
||||||
|
@ -1,12 +1,8 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
#include("includes/graphs/common.inc.php");
|
|
||||||
|
|
||||||
$ds_in = "ByteCounts";
|
$ds_in = "ByteCounts";
|
||||||
$ds_out = "ClientByteCounts";
|
$ds_out = "ClientByteCounts";
|
||||||
|
|
||||||
include("includes/graphs/generic_bytes.inc.php");
|
include("includes/graphs/generic_data.inc.php");
|
||||||
|
|
||||||
#include("includes/graphs/generic_duplex.inc.php");
|
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
Reference in New Issue
Block a user