summaryrefslogtreecommitdiffstats
path: root/doc/rsyslog_conf_basic_structure.html
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2013-03-13 15:45:29 +0100
committerRainer Gerhards <rgerhards@adiscon.com>2013-03-13 15:45:29 +0100
commit4c4ca32b6bab140015b8eb1d0386aad4bcc8591a (patch)
tree357c5262fc46cc3aeb1135db9cbd0382df005712 /doc/rsyslog_conf_basic_structure.html
parenta25a4bc02e2a6e9915677600401ef927f9b58013 (diff)
parent462426844d188e21a402cda78dc33c100e1b394d (diff)
downloadrsyslog-4c4ca32b6bab140015b8eb1d0386aad4bcc8591a.tar.gz
rsyslog-4c4ca32b6bab140015b8eb1d0386aad4bcc8591a.tar.bz2
rsyslog-4c4ca32b6bab140015b8eb1d0386aad4bcc8591a.zip
Merge branch 'v7-stable'
Conflicts: configure.ac doc/manual.html
Diffstat (limited to 'doc/rsyslog_conf_basic_structure.html')
-rw-r--r--doc/rsyslog_conf_basic_structure.html11
1 files changed, 10 insertions, 1 deletions
diff --git a/doc/rsyslog_conf_basic_structure.html b/doc/rsyslog_conf_basic_structure.html
index fad1b110..00a700d4 100644
--- a/doc/rsyslog_conf_basic_structure.html
+++ b/doc/rsyslog_conf_basic_structure.html
@@ -49,7 +49,8 @@ after the stop statement are never evaluated.
<h3>Data Manipulation Statements</h3>
<ul>
-<li><b>set</b> - sets a user variable
+<li><b>set</b> - <a href="http://www.rsyslog.com/how-to-set-variables-in-rsyslog-v7/">sets</a>
+a user variable
<li><b>unset</b> - deletes a previously set user variable
</ul>
@@ -80,6 +81,14 @@ a message comes in via that input, the "program" (ruleset) bound to it will be e
(but not any other!).
<p>There is detail documentation available for
<a href="multi_ruleset">rsyslog rulesets</a>.
+<p>For quick reference, rulesets are defined as follows:
+<pre>
+ruleset(name="rulesetname") {
+ action(type="omfile" file="/path/to/file")
+ action(type="..." ...)
+ /* and so on... */
+}
+</pre>
<p>[<a href="manual.html">manual index</a>]
[<a href="rsyslog_conf.html">rsyslog.conf</a>]