Search This Blog

Tuesday, July 26, 2016

Increase SNMP ping Timeout Period for Check_MK

If you are monitoring external devices through SNMP like Netapp Storage, it may throw out alert when the Device is busy or the connect time out.

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

1 comment: