Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.7 KiB
PHP
Raw Permalink Normal View History

2010-07-31 21:08:35 +00:00
<?php
2021-03-28 17:25:30 -05:00
use LibreNMS\Util\Number;
2018-02-20 14:57:56 +00:00
$datefrom = date('YmdHis', $vars['from']);
$dateto = date('YmdHis', $vars['to']);
$rates = getRates($vars['id'], $datefrom, $dateto, $vars['dir']);
2018-02-20 14:57:56 +00:00
$ports = dbFetchRows('SELECT * FROM `bill_ports` AS B, `ports` AS P, `devices` AS D WHERE B.bill_id = ? AND P.port_id = B.port_id AND D.device_id = P.device_id', [$vars['id']]);
2012-05-25 12:24:34 +00:00
// Generate a list of ports and then call the multi_bits grapher to generate from the list
2011-03-17 13:35:25 +00:00
$i = 0;
foreach ($ports as $port) {
2016-08-18 20:28:22 -05:00
$rrd_file = get_port_rrdfile_path($port['hostname'], $port['port_id']);
2021-03-28 17:25:30 -05:00
if (Rrd::checkRrdExists($rrd_file)) {
$rrd_list[$i]['filename'] = $rrd_file;
$rrd_list[$i]['descr'] = $port['ifDescr'];
$i++;
}
2010-07-31 21:08:35 +00:00
}
$units = 'bps';
$total_units = 'B';
$colours_in = 'greens';
$multiplier = '8';
2010-07-31 21:08:35 +00:00
$colours_out = 'blues';
$nototal = 1;
$ds_in = 'INOCTETS';
$ds_out = 'OUTOCTETS';
// print_r($rates);
if ($bill['bill_type'] == 'cdr') {
$custom_graph = " COMMENT:'\\r' ";
2021-03-28 17:25:30 -05:00
$custom_graph .= ' HRULE:' . $rates['rate_95th'] . "#cc0000:'95th %ile \: " . Number::formatSi($rates['rate_95th'], 2, 3,
'bps') . ' (' . $rates['dir_95th'] . ') (CDR\: ' . Number::formatSi($bill['bill_cdr'], 2, 3, 'bps') . ")'";
$custom_graph .= ' HRULE:' . ($rates['rate_95th'] * -1) . '#cc0000';
2016-08-18 20:28:22 -05:00
} elseif ($bill['bill_type'] == 'quota') {
$custom_graph = " COMMENT:'\\r' ";
2021-03-28 17:25:30 -05:00
$custom_graph .= ' HRULE:' . $rates['rate_average'] . "#cc0000:'Usage \: " . format_bytes_billing($rates['total_data']) . ' (' . Number::formatSi($rates['rate_average'], 2, 3, 'bps') . ")'";
$custom_graph .= ' HRULE:' . ($rates['rate_average'] * -1) . '#cc0000';
2011-03-23 10:25:42 +00:00
}
2019-04-11 23:26:42 -05:00
require 'includes/html/graphs/generic_multi_bits_separated.inc.php';