summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2011-04-13 14:21:18 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2011-04-13 14:21:18 +0200
commit209ab60f85001fcb4763fd125de879a00bb1b87f (patch)
treed4cc054ac1fb225bac86a56dd4502a195059c0a7 /plugins
parent92a782dd2fc85c233f7144d86970321f2bfee588 (diff)
downloadrsyslog-209ab60f85001fcb4763fd125de879a00bb1b87f.tar.gz
rsyslog-209ab60f85001fcb4763fd125de879a00bb1b87f.tar.xz
rsyslog-209ab60f85001fcb4763fd125de879a00bb1b87f.zip
added log classification capabilities (via mmnormalize & tags)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mmnormalize/mmnormalize.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/mmnormalize/mmnormalize.c b/plugins/mmnormalize/mmnormalize.c
index 8db4ad45..9c23afde 100644
--- a/plugins/mmnormalize/mmnormalize.c
+++ b/plugins/mmnormalize/mmnormalize.c
@@ -65,7 +65,7 @@ typedef struct _instanceData {
} instanceData;
typedef struct configSettings_s {
- uchar *rulebase; /**< name of sample db to use */
+ uchar *rulebase; /**< name of normalization rulebase to use */
sbool bUseRawMsg; /**< use %rawmsg% instead of %msg% */
} configSettings_t;
@@ -150,7 +150,7 @@ CODE_STD_STRING_REQUESTparseSelectorAct(1)
}
if(cs.rulebase == NULL) {
- errmsg.LogError(0, RS_RET_NO_RULESET, "error: no sample database was specified, use "
+ errmsg.LogError(0, RS_RET_NO_RULESET, "error: no normalization rulebase was specified, use "
"$MMNormalizeSampleDB directive first!");
ABORT_FINALIZE(RS_RET_NO_RULESET);
}
@@ -182,7 +182,7 @@ CODE_STD_STRING_REQUESTparseSelectorAct(1)
}
ln_setEECtx(pData->ctxln, pData->ctxee);
if(ln_loadSamples(pData->ctxln, (char*) cs.rulebase) != 0) {
- errmsg.LogError(0, RS_RET_NO_RULESET, "error: sample db '%s' could not be loaded "
+ errmsg.LogError(0, RS_RET_NO_RULESET, "error: normalization rulebase '%s' could not be loaded "
"cannot activate action", cs.rulebase);
ee_exitCtx(pData->ctxee);
ln_exitCtx(pData->ctxln);