summaryrefslogtreecommitdiffstats
path: root/run.php
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 13:22:15 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-14 13:22:15 +0000
commit99158ba38e5ad4a210b488951838266fb5cfff95 (patch)
tree57d669fe7fed381905dad1dbf19d912f85af71aa /run.php
parentInitial commit. (diff)
downloadicingaweb2-module-idoreports-99158ba38e5ad4a210b488951838266fb5cfff95.tar.xz
icingaweb2-module-idoreports-99158ba38e5ad4a210b488951838266fb5cfff95.zip
Adding upstream version 0.10.1.upstream/0.10.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'run.php')
-rw-r--r--run.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/run.php b/run.php
new file mode 100644
index 0000000..dc5e714
--- /dev/null
+++ b/run.php
@@ -0,0 +1,13 @@
+<?php
+
+// Icinga IDO Reports | (c) 2018 Icinga GmbH | GPLv2
+
+namespace Icinga\Module\Idoreports {
+
+ use Icinga\Application\Icinga;
+
+ /** @var \Icinga\Application\Modules\Module $this */
+
+ $this->provideHook('reporting/Report', '\\Icinga\\Module\\Idoreports\\HostSlaReport');
+ $this->provideHook('reporting/Report', '\\Icinga\\Module\\Idoreports\\ServiceSlaReport');
+}