summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master-mmfields'Rainer Gerhards2013-06-114-1/+293
|\ | | | | | | | | | | Conflicts: Makefile.am configure.ac
| * mmfields: store parsed-out fields in rsyslog dictionaryRainer Gerhards2013-06-091-2/+13
| |
| * mmfields/milestone: fields properly extractedRainer Gerhards2013-06-071-4/+50
| | | | | | | | but not yet stored in rsyslog dictionary
| * mmfields: created skeleton for new module; build system integrationRainer Gerhards2013-06-074-0/+235
| |
* | prepare 7.5.0 releasev7.5.0Rainer Gerhards2013-06-113-3/+3
| |
* | imuxsock: don't report an error message for $OmitLocalLoggingTomas Heinrich2013-06-101-0/+4
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-06-104-16/+76
|\ \ | | | | | | | | | | | | Conflicts: ChangeLog
| * | doc bugfix: imrelp does not have a v6+ "ruleset" config parameterRainer Gerhards2013-06-101-4/+2
| | |
| * | doc: add contributed patches to ChangeLogRainer Gerhards2013-06-101-0/+4
| | |
| * | bugfix: prevent an endless loop in the ratelimiterTomas Heinrich2013-06-101-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | If messages are being dropped because of ratelimiting, an internal message is generated to inform about this fact. This should happen only uppon the firs occurance but the counter that tracks the number of dropped messages was incremented only after sending the message. If the message itself gets ratelimited, an endless loop spins out of control. Thanks to Jerry James for notifying about this.
| * | bugfix: be more tolerant to malformed journal fieldsTomas Heinrich2013-06-101-1/+8
| | | | | | | | | | | | | | | | | | This prevents a segfault when a malformed journal entry field doesn't contain an equal sign. Should not ever happen but was actually triggered by a real bug in systemd journal.
| * | bugfix imzmq3: potential segfault on startupHongfei Cheng2013-06-062-13/+62
| | | | | | | | | | | | if no problem happend at startup, everything went fine
* | | imrelp: implement "ruleset" module parameterRainer Gerhards2013-06-103-11/+65
| | |
* | | add minimal doc for contributed mmcount moduleRainer Gerhards2013-06-092-0/+59
| | |
* | | mmcount: message modification plugin which counts messagesBala.FA2013-06-095-0/+384
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This module provides the capability to count log messages by severity or json property of given app-name. The count value is added into the log message as json property named 'mmcount' Example usage of the module in the configuration file module(load="mmcount") # count each severity of appname gluster action(type="mmcount" appname="gluster") # count each value of gf_code of appname gluster action(type="mmcount" appname="glusterd" key="!gf_code") # count value 9999 of gf_code of appname gluster action(type="mmcount" appname="glusterfsd" key="!gf_code" value="9999") # send email for every 50th mmcount if $app-name == 'glusterfsd' and $!mmcount <> 0 and $!mmcount % 50 == 0 then { $ActionMailSMTPServer smtp.example.com $ActionMailFrom rsyslog@example.com $ActionMailTo glusteradmin@example.com $template mailSubject,"50th message of gf_code=9999 on %hostname%" $template mailBody,"RSYSLOG Alert\r\nmsg='%msg%'" $ActionMailSubject mailSubject $ActionExecOnlyOnceEveryInterval 30 :ommail:;RSYSLOG_SyslogProtocol23Format } Signed-off-by: Bala.FA <barumuga@redhat.com>
* | [io]mrelp: add TLS compression supportRainer Gerhards2013-06-076-5/+40
| |
* | Merge branch 'nextmaster'Rainer Gerhards2013-06-0624-117/+739
|\ \ | |/ |/| | | | | Conflicts: ChangeLog
| * doc: describe relp tls parametersJan Gerhards2013-05-152-4/+10
| |
| * fix handling of unbounded blocksRainer Gerhards2013-05-161-1/+2
| |
| * fix regression on unencrypted queue filesRainer Gerhards2013-05-161-0/+2
| |
| * cleanupRainer Gerhards2013-05-163-7/+6
| |
| * complete handle multiple blocks in encrypted queue filesRainer Gerhards2013-05-166-37/+146
| |
| * properly handle padding bytes when reading queue filesRainer Gerhards2013-05-161-5/+10
| |
| * enable ability to read existing encrypted queue fileRainer Gerhards2013-05-152-3/+28
| |
| * clean up crypto provider state files on queue file rolloverRainer Gerhards2013-05-155-4/+29
| |
| * do not try to write to read-open encryption state fileRainer Gerhards2013-05-152-5/+7
| |
| * clean up crypto provider state files on queue file closeRainer Gerhards2013-05-156-2/+40
| |
| * omrelp: add "rebindInterval" parameterRainer Gerhards2013-05-142-5/+27
| |
| * imrelp: add support for TLSRainer Gerhards2013-05-141-5/+13
| |
| * Merge branch 'master' into nextmaster-rtlsRainer Gerhards2013-05-141-57/+0
| |\
| * | omrelp: add support for TLSRainer Gerhards2013-05-143-2/+17
| | |
| * | reflect librelp API changeRainer Gerhards2013-05-131-5/+5
| | |
| * | Merge branch 'master' into nextmasterRainer Gerhards2013-05-132-0/+3
| |\ \
| * | | fix invalid function prototypesRainer Gerhards2013-05-131-2/+2
| | | | | | | | | | | | | | | | regression from yet-unreleased enhancement (RELP IP address setting)
| * | | Merge branch 'master' into nextmasterRainer Gerhards2013-05-134-8/+8
| |\ \ \
| * \ \ \ Merge branch 'master' into nextmasterRainer Gerhards2013-05-131-95/+95
| |\ \ \ \
| * | | | | basic queue file encryptionRainer Gerhards2013-05-138-23/+248
| | | | | |
| * | | | | enable shuffling of crypto parameters down through queue definitionRainer Gerhards2013-05-108-43/+112
| | | | | |
| * | | | | extend crypto provider interface so that it can support queue subsystemRainer Gerhards2013-05-083-18/+45
| | | | | |
| * | | | | Merge branch 'master' into nextmasterRainer Gerhards2013-05-083-0/+13
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog
| * | | | | | cosmetic: update .gitignore filesRainer Gerhards2013-05-081-0/+1
| | | | | | |
| * | | | | | doc: add Axel Rau's patch to ChangeLogRainer Gerhards2013-05-061-0/+5
| | | | | | |
| * | | | | | Add configurable local client IPAxel Rau2013-05-065-2/+40
| | | | | | |
* | | | | | | prepare for 7.4.0 releasev7.4.0Rainer Gerhards2013-06-053-3/+4
| | | | | | |
* | | | | | | 0mq fixes; credits to Hongfei Cheng and Brian KnoxRainer Gerhards2013-06-045-397/+614
| | | | | | |
* | | | | | | build: don't check for libs that are not neededTomas Heinrich2013-06-031-7/+1
| | | | | | |
* | | | | | | doc: correct omfile documentationTomas Heinrich2013-06-031-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Some of the options affect all files, not just dynafiles.
* | | | | | | doc: clarify RSYSLOG_DEBUG formatTomas Heinrich2013-06-031-0/+1
| | | | | | |
* | | | | | | bugfix: postpone the start of the imgssapi listenerTomas Heinrich2013-06-031-2/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the listen socket is opened earlier (during configuration parsing), it is closed again during early init. The start has been postponed to the 'runInput' stage, which has an unpleasant side effect that it will fail if the priviledges are dropped. The code should be eventually fixed to support the new config system.
* | | | | | | bugfix: $template statement with multiple spaces lead to invalid tpl nameRainer Gerhards2013-05-273-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If multiple spaces were used in front of the template name, all but one of them became actually part of the template name. So $template a,"..." would be name " a", and as such "a" was not available, e.g. in *.* /var/log/file;a This is a legacy config problem. As it was unreported for many years, no backport of the fix to old versions will happen. This is a long-standing bug that was only recently reported by forum user mc-sim. Reference: http://kb.monitorware.com/post23448.html