Skip to content

Commit 2d12b69

Browse files
committedFeb 23, 2023
Release version 2.0.0
1 parent 7a86b88 commit 2d12b69

24 files changed

+69
-1525
lines changed
 

‎CHANGELOG.md

+6-417
Large diffs are not rendered by default.

‎README.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ Join the [Icinga community channels](https://icinga.com/community/) for question
4040

4141
## Requirements
4242

43-
* [Icinga Web 2](https://www.icinga.com/products/icinga-web-2/) (>= 2.8.2)
43+
* [Icinga Web 2](https://www.icinga.com/products/icinga-web-2/) (>= 2.11)
4444
* [Grafana](https://grafana.com/) (>= 7.0)
4545
* [InfluxDB](https://docs.influxdata.com/influxdb/) (>= 1.0) [Graphite](https://graphiteapp.org) as backend for Grafana
46-
* [PHP 7](https://www.php.net) **with curl enabled** (for proxy mode)
46+
* [PHP 8.1](https://www.php.net) **with curl and gd enabled**
4747

4848
## Documentation
4949

@@ -61,6 +61,3 @@ updating the documentation. Every contribution is appreciated!
6161

6262
Please continue reading in the [contributing chapter](CONTRIBUTING.md).
6363

64-
## Donations
65-
This module is and will always be free of charge. But if you feel the urge to make the developer happy, you can donate item(s) from his [Amazon wishlist](https://www.amazon.de/hz/wishlist/ls/1QS5BHOL5V7AE?&sort=default) :)
66-

‎application/controllers/IcingadbimgController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,8 @@ private function getServiceObject()
268268
'host',
269269
'host.state'
270270
]);
271-
$query->filter(Filter::equal('name', $this->getParam('service')));
272-
$query->filter(Filter::equal('host.name', $this->getParam('host')));
271+
$query->filter(Filter::equal('name', urldecode($this->getParam('service'))));
272+
$query->filter(Filter::equal('host.name', urldecode($this->getParam('host'))));
273273

274274
$this->applyRestrictions($query);
275275

‎application/controllers/IcingadbshowController.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
use ipl\Stdlib\Filter;
2525
use ipl\Web\Url;
2626

27+
2728
class IcingadbshowController extends IcingadbGrafanaController
2829
{
2930
/** @var bool */
@@ -52,6 +53,7 @@ public function indexAction()
5253
}
5354
$this->disableAutoRefresh();
5455

56+
/*
5557
if (!$this->showFullscreen) {
5658
$this->getTabs()->add(
5759
'graphs',
@@ -63,6 +65,7 @@ public function indexAction()
6365
6466
$this->getTabs()->extend(new PrintAction());
6567
}
68+
*/
6669

6770
$this->addControl(
6871
HtmlElement::create(
@@ -168,4 +171,4 @@ public function getServiceObject($service, $host)
168171

169172
return $service;
170173
}
171-
}
174+
}

0 commit comments

Comments
 (0)