We recently noticed that one of our systems stopped talking to our Nagios instance. I found in our /var/log/messages some of these messages:
May 29 08:20:48 some system xinetd[28577]: FAIL: nsca per_source_limit from=ip address
May 29 08:21:18 some system xinetd[28577]: FAIL: nsca per_source_limit from=ip address
May 29 08:21:18 some system xinetd[28577]: FAIL: nsca per_source_limit from=ip address
May 29 08:21:18 some system xinetd[28577]: FAIL: nsca per_source_limit from=ip address
May 29 08:21:24 some system xinetd[28577]: FAIL: nsca per_source_limit from=ip address
May 29 08:21:24 some system xinetd[28577]: FAIL: nsca per_source_limit from=ip address
Any ideas or suggestions?
Send_NSCA Problems
Re: Send_NSCA Problems
Learned something new today. I came across this blog that may have a solution:
http://www.agitated.net/blog/?p=399
http://www.agitated.net/blog/?p=399
-
scottwilkerson
- DevOps Engineer
- Posts: 19396
- Joined: Tue Nov 15, 2011 3:11 pm
- Location: Nagios Enterprises
- Contact:
Re: Send_NSCA Problems
What you will need to do is edit the /etc/xinetd.d/nsca file on the XI server to include the following lines
add them between { and }
Then restart xinetd
Code: Select all
per_source = UNLIMITED
instances = UNLIMITEDThen restart xinetd
Code: Select all
service xinetd restartRe: Send_NSCA Problems
This change has resolved our issue. Thank you for your help.