Files

25 lines
539 B
PHP
Raw Permalink Normal View History

<?php
2020-09-21 15:40:17 +02:00
$units = 'b';
$total_units = 'B';
2020-09-21 15:40:17 +02:00
$colours_in = 'greens';
// $multiplier = "0";
$colours_out = 'blues';
$nototal = 1;
2020-09-21 15:40:17 +02:00
$ds_in = 'traf_in';
$ds_out = 'traf_out';
$graph_title .= '::bits';
2020-09-21 15:40:17 +02:00
$colour_line_in = '006600';
$colour_line_out = '000099';
2020-09-21 15:40:17 +02:00
$colour_area_in = 'CDEB8B';
$colour_area_out = 'C3D9FF';
2020-09-21 15:40:17 +02:00
$hostname = (isset($_GET['hostname']) ? $_GET['hostname'] : 'unknown');
$rrd_filename = rrd_name($device['hostname'], ['app', 'shoutcast', $app['app_id'], $hostname]);
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_data.inc.php';