summaryrefslogtreecommitdiffstats
path: root/plugins/check_gluster_syslog.py
diff options
context:
space:
mode:
authorSahina Bose <sabose@redhat.com>2014-04-30 21:40:23 +0530
committerSahina Bose <sabose@redhat.com>2014-05-04 21:55:27 -0700
commitec287fcc84f8bebb52ccaad63f894689fb79862d (patch)
treebf61f33a87f73d61c6c9192cd949476c20cad134 /plugins/check_gluster_syslog.py
parent1bf8bbea994adbe10ff134bd75f569eccbebc42a (diff)
plugins: Changed nsca method for syslog monitoring
Changed the syslog monitoring plugin to use subprocess to send the nsca command There was an issue with using the utils method when being called from rsyslog service Change-Id: Ia4dea2b0f942ce815f123ece1fba8fd1f18fc6be Signed-off-by: Sahina Bose <sabose@redhat.com> Reviewed-on: http://review.gluster.org/7639 Reviewed-by: Timothy Asir <tim.gluster@gmail.com>
Diffstat (limited to 'plugins/check_gluster_syslog.py')
-rwxr-xr-xplugins/check_gluster_syslog.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/check_gluster_syslog.py b/plugins/check_gluster_syslog.py
index 277f32f..62464dd 100755
--- a/plugins/check_gluster_syslog.py
+++ b/plugins/check_gluster_syslog.py
@@ -52,10 +52,10 @@ def processQuotaMsg(msg, alertlevel):
alertMsg = "QUOTA: " + msg[msg.rfind(matches.group()) +
len(matches.group()) + 1:]
serviceName = nscautils.vol_service_name(volname, "Quota")
- nscautils.send_to_nsca(nscautils.getNagiosClusterName(),
- serviceName,
- getStatusCode(alertlevel),
- alertMsg)
+ nscautils.send_to_nsca_subproc(nscautils.getNagiosClusterName(),
+ serviceName,
+ getStatusCode(alertlevel),
+ alertMsg)
def processMsg(msg):