Hi all,<br><br>I am trying to configure nagios with NSCA.<br>NSCA is successfully receiving the messages (sent with send_nsca), updates the services state and the message info.<br>The problem is that after 10 seconds, the service is returning to "OK" state; in the meantime I haven't send any other messages.<br>
<br>How can I make the service keep that last state until it receives a new message?<br><br>The definition of the services I am using follows:<br><br>define service{<br> use generic-service<br>
name passive-service<br> active_checks_enabled 0<br> passive_checks_enabled 1<br> register 0<br> is_volatile 0<br>
check_period 24x7<br> max_check_attempts 1<br> normal_check_interval 5<br> retry_check_interval 1<br> check_freshness 0<br>
freshness_threshold 5<br> contact_groups admins<br> check_command check_dummy!0<br> notification_interval 120<br> notification_period 24x7<br>
notification_options w,u,c,r<br>}<br><br>define service{<br> use passive-service<br> service_description TestMessage10<br> host_name NMS<br>
register 1<br> contact_groups admins<br> check_freshness 1<br> freshness_threshold 60<br> check_period 24x7<br>
}<br><br><br>Thank you<br>