librenms/librenms

View on GitHub
includes/html/graphs/application/dhcp-stats_pools_current.inc.php

Summary

Maintainability
C
1 day
Test Coverage
<?php

$unit_text = 'Current';
$unitlen = 33;
$bigdescrlen = 33;
$smalldescrlen = 33;
$category = 'pools';

$rrdVar = 'current';

$name = 'dhcp-stats';
$colours = 'mega';
$dostack = 0;
$printtotal = 0;
$addarea = 1;
$transparency = 15;

$arrays = Rrd::getRrdApplicationArrays($device, $app->app_id, $name, $category);

$int = 0;
$rrd_list = [];
while (isset($arrays[$int])) {
    $array = $arrays[$int];
    $rrd_filename = Rrd::name($device['hostname'], ['app', $name, $app->app_id, $array]);

    if (Rrd::checkRrdExists($rrd_filename)) {
        $rrd_list[] = [
            'filename' => $rrd_filename,
            'descr' => str_replace($category . '-', '', $array),
            'ds' => $rrdVar,
        ];
    }

    $int++;
}

require 'includes/html/graphs/generic_multi_line_exact_numbers.inc.php';