Cosmetic changes and some more inline comments.

This commit is contained in:
Johannes Findeisen 2022-10-01 22:02:32 +02:00
commit f4e3b9c01b
5 changed files with 15 additions and 10 deletions

View file

@ -31,7 +31,8 @@ max_processes = 24
timezone = CET
; this is for scheduling jobs to not run all at the same time. this should be set to the lowest interval you use. it
; can be set to a lower value if you only have a small amount of services you are monitoring. i recommend the lowest
; interval you use any any monitor. it is always starting with 0. default is 60.
; interval you use any any monitor. it is always starting with 0. default is 60. the current setting is for development
; only.
delta_range = 10
; hostgroup parents; if the hostgroup "group1" is down, don't alert for the hosts in group2. see TODO.txt for more
@ -47,6 +48,7 @@ group1 = group2
; add single hosts
group1 = host1,host2,host3
; add a range of ip addresses. maybe a different range operator should be chosen but for now i think ">" is sexy... :)
; for ip ranges see: https://stackoverflow.com/questions/19157307/generate-range-of-ips-in-python
group2 = 192.168.1.1>192.168.1.127
; add a combination of hosts and ranges
group3 = host1,host2,host3,192.168.1.1>192.168.1.127