diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-03-07 16:34:51 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-03-07 16:34:51 +0000 |
commit | d471e71adabdad4fba8b59c4017a1c5f1f111073 (patch) | |
tree | 078d95dfd438e1b3d6a72a1ede5d422c89b9a0a7 /doc/rsyslog_conf.html | |
parent | 549c0cccd44dc36a6ba8c480fa65bcaad6cb20ec (diff) | |
download | rsyslog-d471e71adabdad4fba8b59c4017a1c5f1f111073.tar.gz rsyslog-d471e71adabdad4fba8b59c4017a1c5f1f111073.tar.xz rsyslog-d471e71adabdad4fba8b59c4017a1c5f1f111073.zip |
fixed potential infinite loop condition when module load failed on startup
Diffstat (limited to 'doc/rsyslog_conf.html')
-rw-r--r-- | doc/rsyslog_conf.html | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/rsyslog_conf.html b/doc/rsyslog_conf.html index 11f80a2d..03b15c17 100644 --- a/doc/rsyslog_conf.html +++ b/doc/rsyslog_conf.html @@ -505,7 +505,7 @@ once they are implemented, it can make very much sense </tr> <tr> <td>regex</td> -<td>Compares the property against the provided regular +<td>Compares the property against the provided POSIX regular expression.</td> </tr> </tbody> @@ -547,7 +547,11 @@ code), this can be done easily by:</p> <p>This filter will match when the message contains the string "ID-4711". Please note that the comparison is case-sensitive, so it would not match if "id-4711" would be contained in the message.</p> -<p>Getting property-based filters right can sometimes be +<p><code><b>:msg, regex, "fatal .* error"</b></code></p> +<p>This filter uses a POSIX regular expression. It matches when the +string contains the words "fatal" and "error" with anything in between +(e.g. "fatal net error" and "fatal lib error" but not "fatal error" as +two spaces are required by the regular expression!).</p><p>Getting property-based filters right can sometimes be challenging. In order to help you do it with as minimal effort as possible, rsyslogd spits out debug information for all property-based filters during their evaluation. To enable this, run rsyslogd in |