summaryrefslogtreecommitdiffstats
path: root/run.php
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:44:36 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:44:36 +0000
commit0fef7990d7a08bdb9c2dc4a1795bbff6d2235cfb (patch)
treea55346ef98b92803951a5ebbccbcb14bc8ac4ca4 /run.php
parentInitial commit. (diff)
downloadicingaweb2-module-idoreports-0fef7990d7a08bdb9c2dc4a1795bbff6d2235cfb.tar.xz
icingaweb2-module-idoreports-0fef7990d7a08bdb9c2dc4a1795bbff6d2235cfb.zip
Adding upstream version 0.10.0.upstream/0.10.0upstream
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');
+}