blob: cfd4b742225052ddce43a33a38e3098ccde6949a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
Custom Variables
================
The monitoring integration of this module can use custom variables from the
Icinga context to control display and filtering of the integration.
Also see [Configuration](02-Configuration.md) on how to configure the features.
Custom variables control:
* If the EventDB integration and actions are shown for a host or service
* How the linked results should be filtered
## Examples
For Icinga 2:
```icinga2
object Host "test" {
import "generic-host"
address = "127.0.0.1"
vars.edb = "1"
vars.edb_filter = "priority!=7&priority!=5&priority!=6&ack=0"
// ...
}
```
For Icinga 1.x:
```nagios
define host {
use generic-host
host_name test
address 127.0.0.1
_edb 1
_edb_filter priority!=7&priority!=5&priority!=6&ack=0
}
```
**Note:** A filter by `host_name` will always be added, unless you have `host_name` as part of your filter.
## Legacy filters
The module also supports legacy JSON filters from the icinga-web 1.x EventDB module.
Please see the `examples` directory of this module for some supported filters.
|