diff --git a/config/modules/monitoring/menu.ini b/config/modules/monitoring/menu.ini
index 232a31f3e..6367e88f9 100755
--- a/config/modules/monitoring/menu.ini
+++ b/config/modules/monitoring/menu.ini
@@ -23,8 +23,11 @@ Comments = "/monitoring/list/comments"
Contacts = "/monitoring/list/contacts"
Contact Groups = "/monitoring/list/contactgroups"
-Servicegroups.title = "Servicegroups"
-Servicegroups.route = "/monitoring/list/servicegroups"
+Servicegroups.title = "Servicegroups"
+Servicegroups.route = "/monitoring/list/servicegroups"
-Hostgroups.title = "Hostgroups"
-Hostgroups.route = "/monitoring/list/hostgroups"
+Hostgroups.title = "Hostgroups"
+Hostgroups.route = "/monitoring/list/hostgroups"
+
+History.title = "History"
+History.route = "/monitoring/list/eventhistory"
diff --git a/modules/monitoring/application/controllers/ListController.php b/modules/monitoring/application/controllers/ListController.php
index 141fc0054..b38478b38 100644
--- a/modules/monitoring/application/controllers/ListController.php
+++ b/modules/monitoring/application/controllers/ListController.php
@@ -47,6 +47,7 @@ use Icinga\Module\Monitoring\DataView\Contactgroup as ContactgroupView;
use Icinga\Module\Monitoring\DataView\HostAndServiceStatus as HostAndServiceStatusView;
use Icinga\Module\Monitoring\DataView\Comment as CommentView;
use Icinga\Module\Monitoring\DataView\Groupsummary as GroupsummaryView;
+use Icinga\Module\Monitoring\DataView\EventHistory as EventHistoryView;
class Monitoring_ListController extends MonitoringController
{
@@ -366,6 +367,17 @@ class Monitoring_ListController extends MonitoringController
));
}
+ public function eventhistoryAction()
+ {
+ $query = EventHistoryView::fromRequest($this->_request)->getQuery();
+ $this->handleFormatRequest($query);
+ $this->view->history = $query->paginate();
+ $this->setupSortControl(
+ array(
+ )
+ );
+ }
+
/**
* Handle the 'format' and 'view' parameter
*
diff --git a/modules/monitoring/application/views/scripts/list/eventhistory.phtml b/modules/monitoring/application/views/scripts/list/eventhistory.phtml
new file mode 100644
index 000000000..086cb1b90
--- /dev/null
+++ b/modules/monitoring/application/views/scripts/list/eventhistory.phtml
@@ -0,0 +1,104 @@
+
History
+
+
+ = $this->paginationControl($history, null, null, array('preserve' => $this->preserve)); ?>
+
+
+
+
+
+ = date('d.m. H:i', $event->timestamp); ?> |
+
+ service)): ?>
+
+ = $event->service ?>
+
+
+ on = $event->host ?>
+
+
+
+
+ = $event->host ?>
+
+
+
+ type) {
+ case 'notify':
+ $icon = 'notification';
+ $title = 'Notification';
+ $msg = $event->output;
+ break;
+ case 'comment':
+ $icon = 'comment';
+ $title = 'Comment';
+ $msg = $event->output;
+ break;
+ case 'ack':
+ $icon = 'acknowledgement';
+ $title = 'Acknowledgement';
+ $msg = $event->output;
+ break;
+ case 'dt_comment':
+ $icon = 'in-downtime';
+ $title = 'In Downtime';
+ $msg = $event->output;
+ break;
+ case 'flapping':
+ $icon = 'flapping';
+ $title = 'Flapping';
+ $msg = $event->output;
+ break;
+ case 'hard_state':
+ $icon = '{{HARDSTATE_ICON}}';
+ $title = 'Hard State';
+ $msg = $event->output . ' Attempt ' . $event->attempt . '/' . $event->max_attempts . ' (Hard)';
+ $class = 'border-status-' . (
+ $isService ?
+ strtolower($this->util()->getServiceStateName($event->state)) :
+ strtolower($this->util()->getHostStateName($event->state))
+ );
+ break;
+ case 'soft_state':
+ $icon = '{{SOFTSTATE_ICON}}';
+ $title = 'Soft State';
+ $msg = $event->output . ' Attempt ' . $event->attempt . '/' . $event->max_attempts . ' (Soft)';
+ $class = 'border-status-' . (
+ $isService ?
+ strtolower($this->util()->getServiceStateName($event->state)) :
+ strtolower($this->util()->getHostStateName($event->state))
+ );
+ break;
+ case 'dt_start':
+ $icon = 'downtime-start';
+ $title = 'Downtime Start';
+ $msg = $event->output;
+ break;
+ case 'dt_end':
+ $icon = 'downtime-end';
+ $title = 'Downtime End';
+ $msg = $event->output;
+ break;
+ }
+ ?>
+ class="= $class ?>">
+
+
+
+ |
+
+ endforeach; ?>
+
+
+ = $this->paginationControl($history, null, null, array('preserve' => $this->preserve)); ?>
+
+
diff --git a/modules/monitoring/application/views/scripts/show/components/eventHistory.phtml b/modules/monitoring/application/views/scripts/show/components/eventHistory.phtml
deleted file mode 100644
index e69de29bb..000000000
diff --git a/modules/monitoring/application/views/scripts/show/history.phtml b/modules/monitoring/application/views/scripts/show/history.phtml
index 457f56b89..dec5dde61 100644
--- a/modules/monitoring/application/views/scripts/show/history.phtml
+++ b/modules/monitoring/application/views/scripts/show/history.phtml
@@ -90,13 +90,13 @@
'host' => $object->host_name,
'service' => $object->service_description
)); ?>">
- All events for = $event->service_description ?>
+ All events for = $object->service_description ?>
- All events for = $event->host_name ?>
+ All events for = $object->host_name ?>
diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/EventHistoryQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/EventHistoryQuery.php
index 335b406f7..33dcaa013 100644
--- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/EventHistoryQuery.php
+++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/EventHistoryQuery.php
@@ -30,9 +30,7 @@ class EventHistoryQuery extends AbstractQuery
'max_attempts' => 'eh.max_attempts',
'output' => 'eh.output', // we do not want long_output
//'problems' => 'CASE WHEN eh.state = 0 OR eh.state IS NULL THEN 0 ELSE 1 END',
- 'type' => 'eh.type',
- 'service_host_name' => 'eho.name1 COLLATE latin1_general_ci',
- 'service_description' => 'eho.name2 COLLATE latin1_general_ci'
+ 'type' => 'eh.type'
),
'hostgroups' => array(
'hostgroup' => 'hgo.name1 COLLATE latin1_general_ci',
diff --git a/modules/monitoring/library/Monitoring/Backend/Ido/Query/NotificationhistoryQuery.php b/modules/monitoring/library/Monitoring/Backend/Ido/Query/NotificationhistoryQuery.php
index d6f72e952..5a3aeb1b1 100644
--- a/modules/monitoring/library/Monitoring/Backend/Ido/Query/NotificationhistoryQuery.php
+++ b/modules/monitoring/library/Monitoring/Backend/Ido/Query/NotificationhistoryQuery.php
@@ -21,46 +21,29 @@ class NotificationhistoryQuery extends AbstractQuery
protected function joinBaseTables()
{
-//"('[' || cndetails.contacts || '] ' || n.output)"
- // This is one of the db-specific workarounds that could be abstracted
- // in a better way:
switch ($this->ds->getDbType()) {
case 'mysql':
- $concat_contacts = "GROUP_CONCAT(c.alias ORDER BY c.alias SEPARATOR ', ')";
+ $concattedContacts = "GROUP_CONCAT(c.alias ORDER BY c.alias SEPARATOR ', ')";
break;
case 'pgsql':
- // TODO: Find a way to "ORDER" these:
- $concat_contacts = "ARRAY_TO_STRING(ARRAY_AGG(c.alias), ', ')";
+ // TODO: Find a way to order the contact alias list:
+ $concattedContacts = "ARRAY_TO_STRING(ARRAY_AGG(c.alias), ', ')";
break;
case 'oracle':
- // TODO: This is only valid for Oracle >= 11g Release 2.
- $concat_contacts = "LISTAGG(c.alias, ', ') WITHIN GROUP (ORDER BY c.alias)";
+ // TODO: This is only valid for Oracle >= 11g Release 2
+ $concattedContacts = "LISTAGG(c.alias, ', ') WITHIN GROUP (ORDER BY c.alias)";
// Alternatives:
//
// RTRIM(XMLAGG(XMLELEMENT(e, column_name, ',').EXTRACT('//text()')),
//
// not supported and not documented but works since 10.1,
- // however it is NOT always present;
+ // however it is NOT always present:
// WM_CONCAT(c.alias)
break;
- default:
- die('Not yet'); // TODO: Proper Exception
}
-$this->columnMap['history']['output'] = "('[' || $concat_contacts || '] ' || n.output)";
-/*
- $cndetails = $this->db->select()->from(
- array('cn' => $this->prefix . 'contactnotifications'),
- array(
- 'notification_id' => 'notification_id',
- 'cnt' => 'COUNT(*)',
- 'contacts' => $concat_contacts
- )
- )->join(
- array('c' => $this->prefix . 'contacts'),
- 'cn.contact_object_id = c.contact_object_id',
- array()
- )->group('notification_id');
-*/
+
+ $this->columnMap['history']['output'] = "('[' || $concattedContacts || '] ' || n.output)";
+
$this->baseQuery = $this->db->select()->from(
array('n' => $this->prefix . 'notifications'),
array()
@@ -72,14 +55,14 @@ $this->columnMap['history']['output'] = "('[' || $concat_contacts || '] ' || n.o
array('c' => $this->prefix . 'contacts'),
'cn.contact_object_id = c.contact_object_id',
array()
- )->group('cn.notification_id')
+ )->group('cn.notification_id');
- /*->join(
- array('cndetails' => $cndetails),
- 'cndetails.notification_id = n.notification_id',
- array()
- )*/
- ;
+ if ($this->ds->getDbType() === 'pgsql') {
+ $this->baseQuery->group('n.object_id')
+ ->group('n.start_time')
+ ->group('n.output')
+ ->group('n.state');
+ }
$this->joinedVirtualTables = array('history' => true);
}
diff --git a/modules/monitoring/library/Monitoring/DataView/DataView.php b/modules/monitoring/library/Monitoring/DataView/DataView.php
index 3ee7f285a..3d6b2a48f 100644
--- a/modules/monitoring/library/Monitoring/DataView/DataView.php
+++ b/modules/monitoring/library/Monitoring/DataView/DataView.php
@@ -49,7 +49,7 @@ abstract class DataView
public static function getTableName()
{
$tableName = explode('\\', get_called_class());
- $tableName = strtolower(end($tableName));
+ $tableName = end($tableName);
return $tableName;
}
diff --git a/modules/monitoring/library/Monitoring/DataView/EventHistory.php b/modules/monitoring/library/Monitoring/DataView/EventHistory.php
new file mode 100644
index 000000000..f94db68da
--- /dev/null
+++ b/modules/monitoring/library/Monitoring/DataView/EventHistory.php
@@ -0,0 +1,48 @@
+ array(
+ 'default_dir' => self::SORT_DESC
+ ),
+ 'timestamp' => array(
+ 'default_dir' => self::SORT_DESC
+ )
+ );
+ }
+
+ public function getFilterColumns()
+ {
+ return array(
+ 'hostgroups'
+ );
+ }
+}