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
|
|
|
|
* @link http://librenms.org
|
|
|
|
* @copyright 2017 LibreNMS
|
|
|
|
* @author crcro <crc@nuamchefazi.ro>
|
|
|
|
*/
|
|
|
|
|
|
|
|
global $config;
|
|
|
|
|
|
|
|
$graphs = array(
|
2017-07-09 23:17:57 +03:00
|
|
|
'pi-hole_stats' => 'Stats',
|
|
|
|
'pi-hole_queries' => 'Queries',
|
2017-06-06 01:00:09 +03:00
|
|
|
);
|
|
|
|
|
|
|
|
foreach ($graphs as $key => $text) {
|
|
|
|
$graph_type = $key;
|
|
|
|
$graph_array['height'] = '100';
|
|
|
|
$graph_array['width'] = '215';
|
|
|
|
$graph_array['to'] = $config['time']['now'];
|
|
|
|
$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">';
|
|
|
|
include 'includes/print-graphrow.inc.php';
|
|
|
|
echo '</div>';
|
|
|
|
echo '</div>';
|
|
|
|
echo '</div>';
|
|
|
|
}
|