Skip to content

Commit

Permalink
Release version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikesch-mp committed Feb 23, 2023
1 parent 7a86b88 commit 2d12b69
Show file tree
Hide file tree
Showing 24 changed files with 69 additions and 1,525 deletions.
423 changes: 6 additions & 417 deletions CHANGELOG.md

Large diffs are not rendered by default.

7 changes: 2 additions & 5 deletions README.md
Expand Up @@ -40,10 +40,10 @@ Join the [Icinga community channels](https://icinga.com/community/) for question

## Requirements

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

## Documentation

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

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

## Donations
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) :)

4 changes: 2 additions & 2 deletions application/controllers/IcingadbimgController.php
Expand Up @@ -268,8 +268,8 @@ private function getServiceObject()
'host',
'host.state'
]);
$query->filter(Filter::equal('name', $this->getParam('service')));
$query->filter(Filter::equal('host.name', $this->getParam('host')));
$query->filter(Filter::equal('name', urldecode($this->getParam('service'))));
$query->filter(Filter::equal('host.name', urldecode($this->getParam('host'))));

$this->applyRestrictions($query);

Expand Down
5 changes: 4 additions & 1 deletion application/controllers/IcingadbshowController.php
Expand Up @@ -24,6 +24,7 @@
use ipl\Stdlib\Filter;
use ipl\Web\Url;


class IcingadbshowController extends IcingadbGrafanaController
{
/** @var bool */
Expand Down Expand Up @@ -52,6 +53,7 @@ public function indexAction()
}
$this->disableAutoRefresh();

/*
if (!$this->showFullscreen) {
$this->getTabs()->add(
'graphs',
Expand All @@ -63,6 +65,7 @@ public function indexAction()
$this->getTabs()->extend(new PrintAction());
}
*/

$this->addControl(
HtmlElement::create(
Expand Down Expand Up @@ -168,4 +171,4 @@ public function getServiceObject($service, $host)

return $service;
}
}
}

0 comments on commit 2d12b69

Please sign in to comment.