2017-06-06 01:00:09 +03:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* 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. Please see LICENSE.txt at the top level of
|
|
|
|
* the source code distribution for details.
|
|
|
|
*
|
|
|
|
* @package LibreNMS
|
|
|
|
* @subpackage pi-hole
|
2021-02-09 00:29:04 +01:00
|
|
|
* @link https://www.librenms.org
|
2017-06-06 01:00:09 +03:00
|
|
|
* @copyright 2017 LibreNMS
|
|
|
|
* @author crcro <crc@nuamchefazi.ro>
|
|
|
|
*/
|
|
|
|
|
|
|
|
$graphs = [
|
2017-08-18 01:56:50 -05:00
|
|
|
'pi-hole_query_types' => 'Query Types',
|
|
|
|
'pi-hole_destinations' => 'Destinations',
|
|
|
|
'pi-hole_query_results' => 'Query Results',
|
|
|
|
'pi-hole_block_percent' => 'Block Percentage',
|
|
|
|
'pi-hole_blocklist' => 'Blocklist Domains',
|
2017-06-06 01:00:09 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
foreach ($graphs as $key => $text) {
|
|
|
|
$graph_type = $key;
|
|
|
|
$graph_array['height'] = '100';
|
|
|
|
$graph_array['width'] = '215';
|
2019-06-23 00:29:12 -05:00
|
|
|
$graph_array['to'] = \LibreNMS\Config::get('time.now');
|
2017-06-06 01:00:09 +03:00
|
|
|
$graph_array['id'] = $app['app_id'];
|
|
|
|
$graph_array['type'] = 'application_' . $key;
|
|
|
|
|
|
|
|
echo '<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<h3 class="panel-title">' . $text . '</h3>
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
<div class="row">';
|
2019-04-11 23:26:42 -05:00
|
|
|
include 'includes/html/print-graphrow.inc.php';
|
2017-06-06 01:00:09 +03:00
|
|
|
echo '</div>';
|
|
|
|
echo '</div>';
|
|
|
|
echo '</div>';
|
|
|
|
}
|