I think I've found a bug in Nagios BPI 2.4.4?
I created a new BPI group. One of the checks is a disk space check. and the service name has : in it at the end.
When you write the configuration it strips out the : and then gives an error saying it can't find a service
If I then manually edit the config and put a space in after the : it works
Config Before
Code: Select all
}
define Test-BPI {
title=Test BPI
desc=Test BPI
primary=1
info=
members=WXSQLCLICD01-01 :: Drive C:;&,
warning_threshold=90
critical_threshold=80
priority=3
type=default
auth_users=
}Code: Select all
}
define Test-BPI {
title=Test BPI
desc=Test BPI
primary=1
info=
members=WXSQLCLICD01-01 :: Drive C: ;&,
warning_threshold=90
critical_threshold=80
priority=3
type=default
auth_users=
}