summaryrefslogtreecommitdiffstats
path: root/doc/rsyslog_conf_global.html
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'v4-stable' into v4-develRainer Gerhards2011-07-111-1/+2
|\ | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| * doc: clarified requirements for $WorkDirectory directiveRainer Gerhards2011-06-151-1/+2
| |
* | added $LocalHostName config directive & some bugfixingRainer Gerhards2010-12-161-0/+6
| | | | | | | | | | | | - added $LocalHostName config directive - bugfix: local hostname was pulled too-early, so that some config directives (namely FQDN settings) did not have any effect
* | added new $Sleep directive to hold processing for a couple of seconds during ↵Rainer Gerhards2010-04-261-1/+4
| | | | | | | | startup
* | Merge branch 'v4-stable' into v4-develRainer Gerhards2010-04-121-2/+2
|\|
| * doc bugfix: $OMFileFlushOnTXEnd wrongly documentedRainer Gerhards2010-04-071-2/+2
| |
* | Merge branch 'v4-stable-solaris' into v4-develRainer Gerhards2010-04-121-2/+10
|\| | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html tools/omfile.c tools/syslogd.c
| * new feature: $OMFileAsyncWriting directive addedRainer Gerhards2010-03-251-0/+8
| | | | | | | | it permits to specifiy if asynchronous writing should be done or not
| * retain old $OMFileFlushOnTXEnd semanticsRainer Gerhards2010-03-091-2/+2
| | | | | | | | | | required because due to bug the default was actually different than specified (or better said: spec was inconsistent in doc as well).
* | added at least minimal doc for $EscapeControlCharacterTabRainer Gerhards2009-11-271-0/+1
| |
* | added new config directive $omfileForceChown to fix some broken system configs.Rainer Gerhards2009-09-111-0/+1
| | | | | | | | See ticket for details: http://bugzilla.adiscon.com/show_bug.cgi?id=150
* | Merge branch 'v4-beta' into v4-develRainer Gerhards2009-09-041-4/+7
|\|
| * Merge branch 'v4-stable' into v4-betaRainer Gerhards2009-09-041-4/+7
| |\
| | * Merge branch 'v3-stable' into v4-stableRainer Gerhards2009-09-041-4/+7
| | | | | | | | | | | | | | | Conflicts: doc/rsyslog_conf.html
* | | added $LogRSyslogStatusMessages configuration directiveRainer Gerhards2009-09-041-0/+4
|/ / | | | | | | | | ...permitting to turn off rsyslog start/stop/HUP messages. See Debian ticket http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=463793
* | Merge branch 'v4-beta' into v4-develRainer Gerhards2009-07-151-4/+8
|\ \
| * | CONFIG CHANGE: $HUPisRestart default is now "off".Rainer Gerhards2009-07-151-4/+8
| | | | | | | | | | | | | | | We are doing this to support removal of restart-type HUP in v5. Elaborate doc added to explain reasoning and actions to be taken.
* | | added ability for the TCP output action to "rebind" its send socketRainer Gerhards2009-07-141-0/+7
|/ / | | | | | | | | | | | | | | ...after sending n messages (actually, it re-opens the connection, the name is used because this is a concept very similiar to $ActionUDPRebindInterval). New config directive $ActionSendTCPRebindInterval added for the purpose. By default, rebinding is disabled. This is considered# useful for load balancers.
* | completed ruleset documentationRainer Gerhards2009-07-021-2/+4
| |
* | switched default to keep in line with traditional syslogd behaviourRainer Gerhards2009-06-191-2/+5
| |
* | completed multi-ruleset core supportRainer Gerhards2009-06-121-2/+8
| | | | | | | | ... as well as added multi-ruleset support for imtcp
* | implemented $OMFileFlushOnTXEnd directiveRainer Gerhards2009-06-121-0/+7
| | | | | | | | plus some cleanup...
* | added $Ruleset config commandRainer Gerhards2009-06-101-0/+2
| | | | | | | | | | | | so we now can define multiple rule sets, we just can not use them ;) That means we have the foundation to bind listeners to different rule sets.
* | added $OMFileIOBufferSize config directive and plumbingRainer Gerhards2009-06-041-0/+1
| |
* | modified stream class and omfile to work with itRainer Gerhards2009-06-041-0/+3
|/ | | | now some basic operations are carried out via the stream class.
* added ability for the UDP output action to rebind its send socket after ↵Rainer Gerhards2009-05-291-0/+3
| | | | | | | | sending n messages New config directive $ActionSendUDPRebindInterval added for the purpose. By default, rebinding is disabled. This is considered useful for load balancers.
* doc: added info on when $OptimizeForUniprocessor was made availableRainer Gerhards2009-05-281-1/+1
|
* added capability to draw configuration graphsRainer Gerhards2009-05-111-0/+3
| | | | | | | | - added $GenerateConfigGraph configuration command which can be used to generate nice-looking (and very informative) rsyslog configuration graphs. - added $ActionName configuration directive (currently only used for graph generation, but may find other uses)
* added doc for $MaxOpenFiles directiveRainer Gerhards2009-04-141-9/+9
|
* omfile bugfixingRainer Gerhards2009-03-181-0/+1
| | | | | | | - fixed a bug that caused action retries not to work correctly situation was only cleared by a restart - bugfix: closed dynafile was potentially never written until another dynafile name was generated - potential loss of messages
* added new config directive $RepeatedMsgContainsOriginalMsgRainer Gerhards2009-02-021-1/+7
| | | | | | so that the "last message repeated n times" messages, if generated, may have an alternate format that contains the message that is being repeated. Note that this is on an action-by-action basis.
* added $PreserveFQDN config file directiveRainer Gerhards2008-12-081-0/+3
| | | | Enables to use FQDNs in sender names where the legacy default
* added ability to drop privilegesRainer Gerhards2008-11-261-0/+5
| | | | | | | Added $PrivDropToGroup, $PrivDropToUser, $PrivDropToGroupID, $PrivDropToUserID config directives to enable dropping privileges. This is an effort to provide a security enhancement. For the limits of this approach, see http://wiki.rsyslog.com/index.php/Security
* added forgotten filesRainer Gerhards2008-11-111-0/+227
they were new after restructuring the doc...