From 40a0f0670b126897f5a98445ed51669b9dc88ec6 Mon Sep 17 00:00:00 2001 From: Sahina Bose Date: Wed, 12 Nov 2014 12:49:38 +0530 Subject: plugins: Modified the quorum messages Modified the quorum messages to be friendlier Change-Id: I8d76a094cc455847a76ece5c1744b8399f4e7e58 Bug-Url: https://bugzilla.redhat.com/1109702 Signed-off-by: Sahina Bose Reviewed-on: http://review.gluster.org/9101 Reviewed-by: Ramesh N --- plugins/check_gluster_syslog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plugins') diff --git a/plugins/check_gluster_syslog.py b/plugins/check_gluster_syslog.py index 46bc344..6a37f52 100755 --- a/plugins/check_gluster_syslog.py +++ b/plugins/check_gluster_syslog.py @@ -53,13 +53,13 @@ def processQuorumMsg(msgid, msg, level): # [MSGID: 106002] Server quorum lost for volume dist. # Stopping local bricks. # [MSGID: 106001] Server quorum not met. Rejecting operation. - alertMsg = "QUORUM: Server quorum lost." + alertMsg = "QUORUM: Cluster server-side quorum lost." pluginstatus = utils.PluginStatusCode.CRITICAL # elif msgid == 106003: elif "[MSGID: 106003]" in msg: # [MSGID: 106003] Server quorum regained for volume dist. # Starting local bricks. - alertMsg = "QUORUM: Server quorum regained." + alertMsg = "QUORUM: Cluster server-side quorum regained." pluginstatus = utils.PluginStatusCode.OK if pluginstatus >= 0: -- cgit