summaryrefslogtreecommitdiffstats
path: root/library/Director/Dashboard/ObjectsDashboard.php
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--library/Director/Dashboard/ObjectsDashboard.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/library/Director/Dashboard/ObjectsDashboard.php b/library/Director/Dashboard/ObjectsDashboard.php
new file mode 100644
index 0000000..02c2a4b
--- /dev/null
+++ b/library/Director/Dashboard/ObjectsDashboard.php
@@ -0,0 +1,17 @@
+<?php
+
+namespace Icinga\Module\Director\Dashboard;
+
+class ObjectsDashboard extends Dashboard
+{
+ protected $dashletNames = array(
+ 'HostObject',
+ 'ServiceObject',
+ 'CommandObject',
+ );
+
+ public function getTitle()
+ {
+ return $this->translate('Define whatever you want to be monitored');
+ }
+}