Files
librenms-librenms/includes/html/graphs/global/poller_perf.inc.php
Tony Murray 3380122733 Poller perf: add per device average (#14940)
* Poller perf: add per device
Fix min, avg, and current values

* Fix up previous

* Fix style

* Rename to device average, we don't calculate min and max, but rather the min/max of the average.
2023-04-07 13:27:12 -05:00

92 lines
3.9 KiB
PHP

<?php
/**
* poller_perf.php
*
* -Description-
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @link https://www.librenms.org
*
* @copyright 2018 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
use App\Models\Device;
$scale_min = '0';
require 'includes/html/graphs/common.inc.php';
$cdef = [];
$suffix = '';
$cdefX = [];
$suffixX = '';
foreach (Device::pluck('hostname') as $index => $hostname) {
$rrd_filename = Rrd::name($hostname, 'poller-perf');
if (Rrd::checkRrdExists($rrd_filename)) {
$rrd_options .= " DEF:pollerRaw$index=$rrd_filename:poller:AVERAGE";
// change undefined to 0
$rrd_options .= " CDEF:poller$index=pollerRaw$index,UN,0,pollerRaw$index,IF";
$rrd_options .= " CDEF:datapresent$index=pollerRaw$index,UN,0,1,IF";
$cdef[] = 'poller' . $index . $suffix;
$suffix = ',+';
if ($graph_params->visible('previous')) {
$rrd_options .= " DEF:pollerRawX$index=$rrd_filename:poller:AVERAGE:start=$prev_from:end=$from";
// change undefined to 0
$rrd_options .= " CDEF:pollerX$index=pollerRawX$index,UN,0,pollerRawX$index,IF";
$rrd_options .= " SHIFT:pollerX$index:$period";
$rrd_options .= " CDEF:datapresentX$index=pollerRawX$index,UN,0,1,IF";
$rrd_options .= " SHIFT:datapresentX$index:$period";
$cdefX[] = 'pollerX' . $index . $suffixX;
$suffixX = ',+';
}
}
}
$total_color = \LibreNMS\Config::get('graph_colours.mixed.2', '36393D');
$device_color = \LibreNMS\Config::get('graph_colours.mixed.6', 'CCCCCC');
// sum all the poll times
$poler_cdef = implode(',', $cdef);
$rrd_options .= ' CDEF:poller=' . $poler_cdef;
// sum the data present value to get a count
$rrd_options .= ' CDEF:datacount=' . str_replace('poller', 'datapresent', $poler_cdef);
// if no data for interval, push unknowns
$rrd_options .= ' CDEF:pollerundef=datacount,0,EQ,UNKN,poller,IF';
$rrd_options .= ' CDEF:datacountundef=datacount,0,EQ,UNKN,datacount,IF';
// divide by count of datas to get accurate average
$rrd_options .= ' CDEF:avgpol=poller,datacountundef,/';
// legend
$rrd_options .= " 'COMMENT:Seconds Cur Min Max Avg\\n'";
$rrd_options .= ' LINE1.25:pollerundef#' . $total_color . ":'Total '";
$rrd_options .= ' AREA:pollerundef#' . $total_color . '70';
$rrd_options .= ' GPRINT:pollerundef:LAST:%8.2lf GPRINT:pollerundef:MIN:%8.2lf';
$rrd_options .= ' GPRINT:pollerundef:MAX:%8.2lf GPRINT:pollerundef:AVERAGE:%8.2lf\\n';
$rrd_options .= ' LINE1.25:avgpol#' . $device_color . ":'Device Avg '";
$rrd_options .= ' AREA:avgpol#' . $device_color . '70';
$rrd_options .= ' GPRINT:avgpol:LAST:%8.2lf GPRINT:avgpol:MIN:%8.2lf';
$rrd_options .= ' GPRINT:avgpol:MAX:%8.2lf GPRINT:avgpol:AVERAGE:%8.2lf\\n';
if ($graph_params->visible('previous')) {
$rrd_options .= " COMMENT:' \\n'";
$pollerX_cdef = implode(',', $cdefX);
$rrd_options .= ' CDEF:pollerX=' . $pollerX_cdef;
$rrd_options .= ' CDEF:datacountX=' . str_replace('pollerX', 'datapresentX', $pollerX_cdef);
$rrd_options .= ' CDEF:pollerundefX=datacountX,0,EQ,UNKN,pollerX,IF';
$rrd_options .= " LINE1.25:pollerundefX#46494D:'Prev Poller'";
$rrd_options .= ' GPRINT:pollerundefX:LAST:%8.2lf GPRINT:pollerundefX:MIN:%8.2lf';
$rrd_options .= ' GPRINT:pollerundefX:MAX:%8.2lf GPRINT:pollerundefX:AVERAGE:%8.2lf\\n';
}