summaryrefslogtreecommitdiffstats
path: root/plugins
Commit message (Collapse)AuthorAgeFilesLines
* refactor: use common code for message property description processingRainer Gerhards2013-10-221-6/+12
| | | | in all cases except script var access -- this comes next...
* work a bit toward string handling unificationRainer Gerhards2013-10-211-5/+5
|
* impstats: initial shot at multi-ruleset supportRainer Gerhards2013-10-191-1/+39
|
* bugfix: imudp when using recvmmsg could report wrong sender IPRainer Gerhards2013-10-181-3/+5
|
* cosmetic: remove compiler warningsRainer Gerhards2013-10-181-3/+0
|
* bugfix: running imupd on multiple threads lead to segfault if recvmmsg is ↵Rainer Gerhards2013-10-181-34/+43
| | | | available
* remove compiler warningRainer Gerhards2013-10-181-2/+2
|
* remove no longer needed variableRainer Gerhards2013-10-181-1/+0
|
* bugfix: omelasticsearch did not compile on platforms without atomic instructionsRainer Gerhards2013-10-181-5/+5
|
* Merge branch 'v7-stable'Rainer Gerhards2013-10-161-3/+3
|\
| * bugfix: omelasticsearch: failed.es counter was only maintained in bulk modeRainer Gerhards2013-10-161-3/+3
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-161-5/+16
|\| | | | | | | | | Conflicts: plugins/omelasticsearch/omelasticsearch.c
| * bugfix: omelasticsearch: did not correctly initialize stats countersRainer Gerhards2013-10-161-0/+3
| | | | | | | | | | | | | | | | This usually did not lead to any problems, because they are in static memory, which is initialized to zero by the OS when the plugin is loaded. But it may cause problems especially on systems that do not support atomic instructions - in this case the associated mutexes also did not get properly initialized.
| * omelasticsearch: add failed.httprequests stats counterRainer Gerhards2013-10-161-0/+5
| |
| * bugfix omelasticsearch: failed.http stats counter had incorrect countRainer Gerhards2013-10-161-5/+8
| |
* | bugfix: imfile did not properly initialize strm object ptrRainer Gerhards2013-10-151-0/+1
| | | | | | | | | | | | This did not cause any real issue, as with the current config system the zerod-out static memory actually was initialized. However, this posed problems after we moved to dynamic memory alloc.
* | mmutf8fix: compile problem & potential misadressing at end of messageRainer Gerhards2013-10-151-2/+3
| | | | | | | | | | | | | | | | this is a regression of a recently-done bugfix, which I unfortunately did not test correctly (accidently, compilation for this module was not enabled). Thanks to Risto Vaarandi for alerting me.
* | imfile: permit to monitor an unlimited number of filesRainer Gerhards2013-10-141-26/+51
| |
* | imfile: improve config file parameter validationRainer Gerhards2013-10-141-0/+66
| |
* | cleanup: remove some code that stems back to the module sample codeRainer Gerhards2013-10-141-30/+2
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-141-1/+2
|\|
| * bugfix: mmanon did not detect all IP addresses in rewrite modeRainer Gerhards2013-10-141-0/+2
| | | | | | | | | | | | | | The problem occured if two IPs were close to each other and the first one was shrunk. closes: http://bugzilla.adiscon.com/show_bug.cgi?id=485 Thanks to micah-at-riseup.net for reporting this bug
| * bugfix: mmanon sometimes used invalid replacement char in simple modeRainer Gerhards2013-10-141-1/+0
| | | | | | | | | | | | | | | | depending on configuration sequence, the replacement character was set to 's' instead of the correct value. Most importantly, it was set to 's' if simple mode was selected and no replacement char set. closes: http://bugzilla.adiscon.com/show_bug.cgi?id=484 Thanks to micah-at-riseup.net for reporting this bug
* | Merge branch 'c9'Rainer Gerhards2013-10-111-0/+10
|\ \ | | | | | | | | | | | | Conflicts: plugins/imptcp/imptcp.c
| * | imptcp: add "defaultTZ" input parameterRainer Gerhards2013-10-111-1/+11
| | |
* | | imudp: reduce resource usageRainer Gerhards2013-10-111-3/+10
| | | | | | | | | | | | we utilize the imudp main thread to act as a worker itself
* | | imudp: support for multiple receiver threads addedRainer Gerhards2013-10-111-21/+104
| | |
* | | bugfix: mmutf8fix did not properly handle invalid UTF-8 at END of messageRainer Gerhards2013-10-101-0/+5
| | | | | | | | | | | | | | | if the very last character sequence was too long, this was not detected Thanks to Risto Vaarandi for reporting this problem.
* | | Merge branch 'v7-stable'Rainer Gerhards2013-10-101-0/+1
|\ \ \ | | |/ | |/|
| * | bugfix: memory leak in mmnormalizeRainer Gerhards2013-10-101-0/+1
| | |
* | | Merge branch 'c9'Rainer Gerhards2013-10-091-0/+10
|\ \ \ | | |/ | |/| | | | | | | | | | | | | | | | Conflicts: configure.ac plugins/impstats/impstats.c plugins/imptcp/imptcp.c plugins/imudp/imudp.c
| * | imudp: add "defaultTZ" input config parameterRainer Gerhards2013-10-091-0/+10
| | |
| * | impstats: implement parameter "resetCounters"Rainer Gerhards2013-09-091-3/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | it provides the capability to make impstats emit deltas in contrast to accumulated counter values (see doc for details). Conflicts: plugins/impstats/impstats.c
| * | experimental: make impstats return delta values where possibleRainer Gerhards2013-09-093-5/+5
| | | | | | | | | | | | | | | | | | | | | Conflicts: plugins/impstats/impstats.c plugins/imptcp/imptcp.c
| * | Merge branch 'v7-stable' into c9Rainer Gerhards2013-09-097-8/+8
| |\ \
* | \ \ Merge branch 'v7-stable'Rainer Gerhards2013-10-041-1/+1
|\ \ \ \ | | |_|/ | |/| |
| * | | mmanon: removed the check for specific "terminator characters" after last octetRainer Gerhards2013-10-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As it turned out, this didn't work in practice as there was an enormous set of potential terminator chars -- so removing them was the best thing to do. Note that this may change behaviour of existing installations. Yet, we still consider this an important bugfix, that should be applied to the stable branch.
| * | | mmanon: added "]" to set of acceptable chars after an IPv4 addressRainer Gerhards2013-09-301-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | This is used in Exim and Postfix ... and probably a bunch of other tools closes: http://bugzilla.adiscon.com/show_bug.cgi?id=477 Thanks to Muri Cicanor for requesting the addition
* | | | Merge branch 'v7-stable-mmrfc5424addhmac'Rainer Gerhards2013-09-261-1/+5
|\ \ \ \
| * | | | mmrfc5424addhmac: correctly handle empty structured dataRainer Gerhards2013-09-261-1/+5
| | | | |
* | | | | Merge branch 'v7-stable'Rainer Gerhards2013-09-261-1/+5
|\ \ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | Conflicts: plugins/omprog/omprog.c
| * | | | bugfix: omprog blocked signals to executed processRisto Vaarandi2013-09-261-1/+4
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* | | | | Merge branch 'v7-stable-mmrfc5424addhmac'Rainer Gerhards2013-09-265-104/+574
|\ \ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile.am configure.ac runtime/msg.c runtime/rsyslog.h
| * | | | mmrfc5424addhmac: complete initial implementationRainer Gerhards2013-09-251-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | hash is now also persisted back to structured-data rsyslog property
| * | | | mmrfc5424addhmac milestone: detect if "our" SD-ID is already presentRainer Gerhards2013-09-241-8/+115
| | | | | | | | | | | | | | | | | | | | ... and stop processing in this case (as required)
| * | | | mmpstrucdata: add structured data in explicit subtreeRainer Gerhards2013-09-241-2/+8
| | | | |
| * | | | milestone: mmpstrucdata persists to json treeRainer Gerhards2013-09-231-19/+18
| | | | | | | | | | | | | | | | | | | | but not yet to a specific subtree
| * | | | milestone: mmpstrucdata parses STRUCTURED-DATA (but does not yet store it)Rainer Gerhards2013-09-232-0/+403
| | | | |
| * | | | expose so-far msg-internal method to query structured dataRainer Gerhards2013-09-231-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This also lead to a slight performance optimization in the msg.c module (when it comes to querying structured data). This is stage work in order to provide the capability to fully parse structured data.
| * | | | consistently use new message protocol type #define'sRainer Gerhards2013-09-232-2/+2
| | | | |