We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66d042f commit 151c66eCopy full SHA for 151c66e
mamonsu/lib/senders/zbx.py
@@ -118,7 +118,6 @@ def _send_data(self, data):
118
sock = socket.socket()
119
sock.settimeout(int(self.timeout))
120
sock.connect((self.host, self.port))
121
- # time.sleep(100)
122
self.log.debug('request: {0}'.format(data))
123
sock.sendall(packet)
124
resp_header = self._receive(sock, 13)
mamonsu/lib/supervisor.py
@@ -53,7 +53,7 @@ def _loop(self):
53
plugin_errors += 1
54
time.sleep(10)
55
plugin_probes += 1
56
- if plugin_probes >= 60:
+ if plugin_probes >= 6:
57
if plugin_errors > 0:
58
self._sender.send(
59
'mamonsu.plugin.errors[]',
0 commit comments