This has me stumped. I whittled my ugly config down to 35 lines, and was still able to re-create the error. Any ideas what is wrong? I'm running Nagios Core v. 3.2.3. Much thanks in advance!<br><br>-Eric<br><br>Error is:<br>
<br>Error: Could not expand servicegroups specified in service escalation (config file '/home/opsmon/etc/nagios/objects/qbo/foo.cfg', starting on line 13)<br> Error processing object config files!<br><br>Here's the config:<br>
<br>define servicegroup {<br> servicegroup_name group-1<br> alias All Services<br> register 0<br>}<br><br>define contact {<br> contact_name primary-oncall<br> alias Primary Oncall<br>
email <a href="mailto:foo@bar.com">foo@bar.com</a><br>}<br><br>define serviceescalation {<br> servicegroup_name group-1<br> first_notification 1<br> last_notification 6<br> notification_interval 5<br>
contacts primary-oncall<br>}<br><br>define service {<br> servicegroups group-1<br> host_name <a href="http://admin.qa">admin.qa</a><br> check_command check_foo<br>
}<br><br>define host {<br> host_name <a href="http://admin.qa">admin.qa</a><br> address 127.0.0.1<br>}<br><br>define command {<br> command_name check_foo<br> command_line /bin/true<br>
}<br><br>