2013-09-09 13:55:29 +02:00
|
|
|
<?php
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
/**
|
2013-10-23 15:10:33 +02:00
|
|
|
* This file is part of Icinga Web 2.
|
2013-09-09 13:55:29 +02:00
|
|
|
*
|
2013-10-23 15:10:33 +02:00
|
|
|
* Icinga Web 2 - Head for multiple monitoring backends.
|
2013-09-09 13:55:29 +02:00
|
|
|
* Copyright (C) 2013 Icinga Development Team
|
|
|
|
*
|
|
|
|
* 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 2
|
|
|
|
* 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
2013-10-23 15:10:33 +02:00
|
|
|
* @copyright 2013 Icinga Development Team <info@icinga.org>
|
|
|
|
* @license http://www.gnu.org/licenses/gpl-2.0.txt GPL, version 2
|
|
|
|
* @author Icinga Development Team <info@icinga.org>
|
|
|
|
*
|
2013-09-09 13:55:29 +02:00
|
|
|
*/
|
|
|
|
// {{{ICINGA_LICENSE_HEADER}}}
|
|
|
|
|
|
|
|
use Icinga\Application\Icinga;
|
|
|
|
use Icinga\Application\Config;
|
2014-02-26 11:19:52 +01:00
|
|
|
use Icinga\Logger\Logger;
|
2013-09-09 13:55:29 +02:00
|
|
|
use Icinga\Web\Form;
|
2014-06-22 14:04:03 +02:00
|
|
|
use Icinga\Module\Monitoring\Controller;
|
2013-09-09 13:55:29 +02:00
|
|
|
use Icinga\Chart\SVGRenderer;
|
|
|
|
use Icinga\Chart\GridChart;
|
2013-10-22 12:08:44 +02:00
|
|
|
use Icinga\Chart\Palette;
|
2013-09-09 13:55:29 +02:00
|
|
|
use Icinga\Chart\Axis;
|
2013-10-22 12:08:44 +02:00
|
|
|
use Icinga\Chart\PieChart;
|
2014-06-22 14:04:03 +02:00
|
|
|
use Icinga\Chart\Unit\StaticAxis;
|
2013-09-09 13:55:29 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class Monitoring_CommandController
|
|
|
|
*
|
|
|
|
* Interface to send commands and display forms
|
|
|
|
*/
|
|
|
|
|
2014-06-22 14:04:03 +02:00
|
|
|
class Monitoring_ChartController extends Controller
|
2013-09-09 13:55:29 +02:00
|
|
|
{
|
2014-07-09 18:04:03 +02:00
|
|
|
public function testAction()
|
|
|
|
{
|
2013-09-09 13:55:29 +02:00
|
|
|
$this->chart = new GridChart();
|
2014-06-22 14:04:03 +02:00
|
|
|
$this->chart->setAxisLabel('X axis label', 'Y axis label')->setXAxis(new StaticAxis());
|
2013-09-09 13:55:29 +02:00
|
|
|
$data1 = array();
|
|
|
|
$data2 = array();
|
|
|
|
$data3 = array();
|
2014-07-09 18:04:03 +02:00
|
|
|
for ($i = 0; $i < 25; $i++) {
|
|
|
|
$data3[] = array('Label ' . $i, rand(0, 30));
|
2013-09-09 13:55:29 +02:00
|
|
|
}
|
2013-10-23 13:05:06 +02:00
|
|
|
|
|
|
|
/*
|
2013-09-09 13:55:29 +02:00
|
|
|
$this->chart->drawLines(
|
|
|
|
array(
|
|
|
|
'label' => 'Nr of outtakes',
|
|
|
|
'color' => 'red',
|
|
|
|
'width' => '5',
|
|
|
|
|
|
|
|
'data' => $data
|
|
|
|
), array(
|
|
|
|
'label' => 'Some line',
|
|
|
|
'color' => 'blue',
|
|
|
|
'width' => '4',
|
|
|
|
|
|
|
|
'data' => $data3,
|
|
|
|
'showPoints' => true
|
|
|
|
)
|
|
|
|
);
|
2013-10-23 13:05:06 +02:00
|
|
|
*/
|
2013-09-09 13:55:29 +02:00
|
|
|
$this->chart->drawBars(
|
|
|
|
array(
|
|
|
|
'label' => 'Some other line',
|
2013-10-22 12:08:44 +02:00
|
|
|
'color' => 'green',
|
2013-09-09 13:55:29 +02:00
|
|
|
'data' => $data3,
|
|
|
|
'showPoints' => true
|
|
|
|
)
|
|
|
|
);
|
2013-10-23 13:05:06 +02:00
|
|
|
/*
|
2013-09-09 13:55:29 +02:00
|
|
|
$this->chart->drawLines(
|
|
|
|
array(
|
|
|
|
'label' => 'Nr of outtakes',
|
|
|
|
'color' => 'yellow',
|
|
|
|
'width' => '5',
|
|
|
|
'data' => $data2
|
|
|
|
)
|
|
|
|
);
|
2013-10-23 13:05:06 +02:00
|
|
|
*/
|
2013-09-09 13:55:29 +02:00
|
|
|
$this->view->svg = $this->chart;
|
|
|
|
}
|
2013-10-22 12:08:44 +02:00
|
|
|
|
|
|
|
public function hostgroupAction()
|
|
|
|
{
|
2014-06-22 14:04:03 +02:00
|
|
|
$query = $this->backend->select()->from(
|
|
|
|
'groupsummary',
|
2013-10-22 12:08:44 +02:00
|
|
|
array(
|
2013-10-23 13:05:06 +02:00
|
|
|
'hostgroup',
|
|
|
|
'hosts_up',
|
|
|
|
'hosts_unreachable_handled',
|
|
|
|
'hosts_unreachable_unhandled',
|
|
|
|
'hosts_down_handled',
|
|
|
|
'hosts_down_unhandled',
|
|
|
|
'hosts_pending',
|
|
|
|
'services_ok',
|
|
|
|
'services_unknown_handled',
|
|
|
|
'services_unknown_unhandled',
|
|
|
|
'services_critical_handled',
|
|
|
|
'services_critical_unhandled',
|
|
|
|
'services_warning_handled',
|
|
|
|
'services_warning_unhandled',
|
|
|
|
'services_pending'
|
2013-10-22 12:08:44 +02:00
|
|
|
)
|
2013-10-23 13:05:06 +02:00
|
|
|
)->getQuery()->fetchAll();
|
|
|
|
$this->view->height = intval($this->getParam('height', 220));
|
|
|
|
$this->view->width = intval($this->getParam('width', 520));
|
|
|
|
if (count($query) === 1) {
|
|
|
|
$this->drawGroupPie($query[0]);
|
|
|
|
} else {
|
|
|
|
$this->drawHostGroupChart($query);
|
|
|
|
}
|
|
|
|
}
|
2013-10-22 12:08:44 +02:00
|
|
|
|
2013-10-23 13:05:06 +02:00
|
|
|
public function servicegroupAction()
|
|
|
|
{
|
2014-06-22 14:04:03 +02:00
|
|
|
$query = $this->backend->select()->from(
|
|
|
|
'groupsummary',
|
2013-10-22 12:08:44 +02:00
|
|
|
array(
|
2013-10-23 13:05:06 +02:00
|
|
|
'servicegroup',
|
|
|
|
'services_ok',
|
|
|
|
'services_unknown_handled',
|
|
|
|
'services_unknown_unhandled',
|
|
|
|
'services_critical_handled',
|
|
|
|
'services_critical_unhandled',
|
|
|
|
'services_warning_handled',
|
|
|
|
'services_warning_unhandled',
|
|
|
|
'services_pending'
|
|
|
|
)
|
|
|
|
)->getQuery()->fetchAll();
|
|
|
|
$this->view->height = intval($this->getParam('height', 220));
|
|
|
|
$this->view->width = intval($this->getParam('width', 520));
|
|
|
|
|
|
|
|
$this->drawServiceGroupChart($query);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
private function drawServiceGroupChart($query)
|
|
|
|
{
|
|
|
|
$okBars = array();
|
|
|
|
$warningBars = array();
|
|
|
|
$critBars = array();
|
|
|
|
$unknownBars = array();
|
|
|
|
foreach ($query as $servicegroup) {
|
|
|
|
$okBars[] = array($servicegroup->servicegroup, $servicegroup->services_ok);
|
|
|
|
$warningBars[] = array($servicegroup->servicegroup, $servicegroup->services_warning_unhandled);
|
|
|
|
$critBars[] = array($servicegroup->servicegroup, $servicegroup->services_critical_unhandled);
|
|
|
|
$unknownBars[] = array($servicegroup->servicegroup, $servicegroup->services_unknown_unhandled);
|
|
|
|
}
|
|
|
|
$this->view->chart = new GridChart();
|
2014-02-18 18:35:34 +01:00
|
|
|
$this->view->chart->setAxisLabel('', 'Services')
|
2013-10-23 13:05:06 +02:00
|
|
|
->setXAxis(new \Icinga\Chart\Unit\StaticAxis());
|
|
|
|
$this->view->chart->drawBars(
|
|
|
|
array(
|
2014-02-18 18:35:34 +01:00
|
|
|
'label' => 'Ok',
|
2014-03-08 00:24:41 +01:00
|
|
|
'color' => '#44bb77',
|
2013-10-23 13:05:06 +02:00
|
|
|
'stack' => 'stack1',
|
|
|
|
'data' => $okBars
|
|
|
|
),
|
|
|
|
array(
|
2014-02-18 18:35:34 +01:00
|
|
|
'label' => 'Warning',
|
2014-03-08 00:24:41 +01:00
|
|
|
'color' => '#ffaa44',
|
2013-10-23 13:05:06 +02:00
|
|
|
'stack' => 'stack1',
|
|
|
|
'data' => $warningBars
|
2013-10-22 12:08:44 +02:00
|
|
|
),
|
|
|
|
array(
|
2014-02-18 18:35:34 +01:00
|
|
|
'label' => 'Critical',
|
2014-03-08 00:24:41 +01:00
|
|
|
'color' => '#ff5566',
|
2013-10-23 13:05:06 +02:00
|
|
|
'stack' => 'stack1',
|
|
|
|
'data' => $critBars
|
|
|
|
),
|
|
|
|
array(
|
2014-02-18 18:35:34 +01:00
|
|
|
'label' => 'Unknown',
|
2014-03-08 00:24:41 +01:00
|
|
|
'color' => '#dd66ff',
|
2013-10-23 13:05:06 +02:00
|
|
|
'stack' => 'stack1',
|
|
|
|
'data' => $unknownBars
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function drawHostGroupChart($query)
|
|
|
|
{
|
|
|
|
$upBars = array();
|
|
|
|
$downBars = array();
|
|
|
|
$unreachableBars = array();
|
|
|
|
foreach ($query as $hostgroup) {
|
2014-07-09 18:04:03 +02:00
|
|
|
$upBars[] = array(
|
|
|
|
$hostgroup->hostgroup,
|
|
|
|
$hostgroup->hosts_up
|
|
|
|
);
|
|
|
|
$downBars[] = array(
|
|
|
|
$hostgroup->hostgroup,
|
|
|
|
$hostgroup->hosts_down_unhandled
|
|
|
|
);
|
|
|
|
$unreachableBars[] = array(
|
|
|
|
$hostgroup->hostgroup,
|
|
|
|
$hostgroup->hosts_unreachable_unhandled
|
|
|
|
);
|
2013-10-23 13:05:06 +02:00
|
|
|
}
|
|
|
|
$this->view->chart = new GridChart();
|
2014-06-22 14:04:03 +02:00
|
|
|
$this->view->chart->setAxisLabel('', 'Hosts')->setXAxis(new StaticAxis());
|
2013-10-23 13:05:06 +02:00
|
|
|
$this->view->chart->drawBars(
|
|
|
|
array(
|
2014-02-18 18:35:34 +01:00
|
|
|
'label' => 'Up',
|
2014-03-08 00:24:41 +01:00
|
|
|
'color' => '#44bb77',
|
2013-10-23 13:05:06 +02:00
|
|
|
'stack' => 'stack1',
|
|
|
|
'data' => $upBars
|
|
|
|
),
|
|
|
|
array(
|
2014-02-18 18:35:34 +01:00
|
|
|
'label' => 'Down',
|
2014-03-08 00:24:41 +01:00
|
|
|
'color' => '#ff5566',
|
2013-10-23 13:05:06 +02:00
|
|
|
'stack' => 'stack1',
|
|
|
|
'data' => $downBars
|
|
|
|
),
|
|
|
|
array(
|
2014-02-18 18:35:34 +01:00
|
|
|
'label' => 'Unreachable',
|
2014-03-08 00:24:41 +01:00
|
|
|
'color' => '#dd66ff',
|
2013-10-23 13:05:06 +02:00
|
|
|
'stack' => 'stack1',
|
|
|
|
'data' => $unreachableBars
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private function drawGroupPie($query)
|
|
|
|
{
|
|
|
|
$this->view->chart = new PieChart();
|
|
|
|
if (isset($query->hosts_up)) {
|
|
|
|
$this->view->chart->drawPie(array(
|
2013-10-22 12:08:44 +02:00
|
|
|
'data' => array(
|
2013-10-23 13:05:06 +02:00
|
|
|
// (int) $query->hosts_up,
|
|
|
|
(int) $query->hosts_down_handled,
|
|
|
|
(int) $query->hosts_down_unhandled,
|
|
|
|
(int) $query->hosts_unreachable_handled,
|
|
|
|
(int) $query->hosts_unreachable_unhandled,
|
|
|
|
(int) $query->hosts_pending
|
2013-10-22 12:08:44 +02:00
|
|
|
),
|
2014-01-31 10:46:09 +01:00
|
|
|
'colors' => array( '#ff4444', '#ff0000', '#E066FF', '#f099FF', '#fefefe'),
|
2013-10-22 12:08:44 +02:00
|
|
|
'labels'=> array(
|
2013-10-23 13:05:06 +02:00
|
|
|
// (int) $query->hosts_up . ' Up Hosts',
|
|
|
|
(int) $query->hosts_down_handled . ' Down Hosts (Handled)',
|
|
|
|
(int) $query->hosts_down_unhandled . ' Down Hosts (Unhandled)',
|
|
|
|
(int) $query->hosts_unreachable_handled . ' Unreachable Hosts (Handled)',
|
|
|
|
(int) $query->hosts_unreachable_unhandled . ' Unreachable Hosts (Unhandled)',
|
|
|
|
(int) $query->hosts_pending . ' Pending Hosts'
|
2013-10-22 12:08:44 +02:00
|
|
|
)
|
2014-06-30 12:15:44 +02:00
|
|
|
), array(
|
2013-10-23 13:05:06 +02:00
|
|
|
'data' => array(
|
|
|
|
// (int) $query->services_ok,
|
|
|
|
(int) $query->services_warning_unhandled,
|
|
|
|
(int) $query->services_warning_handled,
|
|
|
|
(int) $query->services_critical_unhandled,
|
|
|
|
(int) $query->services_critical_handled,
|
|
|
|
(int) $query->services_unknown_unhandled,
|
|
|
|
(int) $query->services_unknown_handled,
|
|
|
|
(int) $query->services_pending
|
|
|
|
),
|
2014-01-31 10:46:09 +01:00
|
|
|
'colors' => array('#ff4444', '#ff0000', '#ffff00', '#ffff33', '#E066FF', '#f099FF', '#fefefe'),
|
2013-10-23 13:05:06 +02:00
|
|
|
'labels'=> array(
|
|
|
|
// $query->services_ok . ' Up Services',
|
|
|
|
$query->services_warning_handled . ' Warning Services (Handled)',
|
|
|
|
$query->services_warning_unhandled . ' Warning Services (Unhandled)',
|
|
|
|
$query->services_critical_handled . ' Down Services (Handled)',
|
|
|
|
$query->services_critical_unhandled . ' Down Services (Unhandled)',
|
|
|
|
$query->services_unknown_handled . ' Unreachable Services (Handled)',
|
|
|
|
$query->services_unknown_unhandled . ' Unreachable Services (Unhandled)',
|
|
|
|
$query->services_pending . ' Pending Services',
|
2013-10-22 12:08:44 +02:00
|
|
|
|
2013-10-23 13:05:06 +02:00
|
|
|
)
|
|
|
|
));
|
|
|
|
}
|
2013-10-22 12:08:44 +02:00
|
|
|
}
|
2014-03-08 00:24:41 +01:00
|
|
|
}
|