From mboxrd@z Thu Jan 1 00:00:00 1970 From: kupcevic@sourceware.org Date: 14 Jun 2006 21:18:16 -0000 Subject: [Cluster-devel] conga/ricci/modules/log LogParser.cpp Message-ID: <20060614211816.17131.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: conga Changes by: kupcevic at sourceware.org 2006-06-14 21:18:16 Modified files: ricci/modules/log: LogParser.cpp Log message: Logging module: add fence_ to fencing search Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/ricci/modules/log/LogParser.cpp.diff?cvsroot=cluster&r1=1.2&r2=1.3 --- conga/ricci/modules/log/LogParser.cpp 2006/06/05 19:54:40 1.2 +++ conga/ricci/modules/log/LogParser.cpp 2006/06/14 21:18:16 1.3 @@ -102,18 +102,24 @@ MutexLocker l(mutex); if (!init) { init = true; - sets.push_back(tag_set("cluster", - set(cluster, - cluster + sizeof(cluster)/sizeof(char*)))); + tag_set clu("cluster", + set(cluster, + cluster + sizeof(cluster)/sizeof(char*))); + clu.match.insert("fence_"); + sets.push_back(clu); + sets.push_back(tag_set("cluster service manager", set(cluster_service_manager, cluster_service_manager + sizeof(cluster_service_manager)/sizeof(char*)))); + sets.push_back(tag_set("lvs", set(LVS, LVS + sizeof(LVS)/sizeof(char*)))); + sets.push_back(tag_set("storage", set(storage, storage + sizeof(storage)/sizeof(char*)))); + tag_set SEL("selinux", set(selinux, selinux + sizeof(selinux)/sizeof(char*)));