Put this in your main.mk file:
su - [OMDSiteName Example:] mds vi ~/etc/check_mk/main.mk
snmp_timing = [ ( {'retries': 2, 'timeout':30}, ["snmp"], ALL_HOSTS ), ]
Let check_mk server check 1 more time before it send alert after the first one fail.
The wait time out increase to 30 seconds.
These lines apply changes on all of your SNMP machines having the tag snmp.
To force checm_mk client and ping run second checking if first one fail, add these into ~/etc/check_mk/main.mk:
extra_service_conf['max_check_attempts'] = [ ("2", ALL_HOSTS, "Check_MK"), ("3", ALL_HOSTS, "PING"), ]
Then restart OMD/Check_MK to make it works.
OMD[mds]:omd restart
To make all check_mk less sensitive:
extra_service_conf['max_check_attempts'] = [ ("2", ALL_HOSTS, ALL_SERVICES), ("3", ALL_HOSTS, "PING"), ]
Reference: http://mathias-kettner.de/checkmk_configvars.html
http://lists.mathias-kettner.de/pipermail/checkmk-en/2010-December/002241.html
By default the timeout is 5 seconds.
ReplyDelete