increase socket timeout for time consuming plugins
This commit is contained in:
parent
888b5334bc
commit
fc647c4831
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/env python
|
||||||
"""Gather Munin statistics and deliver to Carbon for Graphite display."""
|
"""Gather Munin statistics and deliver to Carbon for Graphite display."""
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
@ -79,6 +79,7 @@ class Munin():
|
|||||||
"""Initial connection to Munin host."""
|
"""Initial connection to Munin host."""
|
||||||
try:
|
try:
|
||||||
self._sock = socket.create_connection((self.hostname, self.port), 10)
|
self._sock = socket.create_connection((self.hostname, self.port), 10)
|
||||||
|
self._sock.settimeout(30)
|
||||||
except socket.error:
|
except socket.error:
|
||||||
logger.exception("Thread %s: Unable to connect to Munin host %s, port: %s",
|
logger.exception("Thread %s: Unable to connect to Munin host %s, port: %s",
|
||||||
self.thread.name, self.hostname, self.port)
|
self.thread.name, self.hostname, self.port)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user