summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* doc: mention imported bugfixRainer Gerhards2013-10-181-0/+3
|
* Merge branch 'v7-stable'Rainer Gerhards2013-10-182-1/+5
|\
| * bugfix: segfault if re_extract() function was used and no match foundRainer Gerhards2013-10-182-1/+5
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-171-2/+2
|\|
| * doc: typo fixRainer Gerhards2013-10-171-2/+2
| | | | | | | | thanks to Xuri Nagarin for alerting us
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-162-3/+4
|\|
| * bugfix: omelasticsearch: failed.es counter was only maintained in bulk modeRainer Gerhards2013-10-162-3/+4
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-162-5/+24
|\| | | | | | | | | Conflicts: plugins/omelasticsearch/omelasticsearch.c
| * bugfix: omelasticsearch: did not correctly initialize stats countersRainer Gerhards2013-10-162-1/+10
| | | | | | | | | | | | | | | | 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-162-0/+7
| |
| * bugfix omelasticsearch: failed.http stats counter had incorrect countRainer Gerhards2013-10-161-5/+8
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-162-2/+2
|\|
| * require libestr 0.1.8, as there are bugs in previous versions that affect usRainer Gerhards2013-10-162-2/+2
| |
* | nit: fixing 7.5.5 release datev7.5.5Rainer Gerhards2013-10-161-1/+1
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-10-161-0/+1
|\|
| * doc: add new helpful link to impstats docRainer Gerhards2013-10-161-0/+1
| |
* | Merge branch 'c10'Rainer Gerhards2013-10-162-0/+90
|\ \ | | | | | | | | | | | | | | | Conflicts: configure.ac doc/rsyslog_conf_modules.html
| * | doc: linking between mmrfc5424addhmac resourcesRainer Gerhards2013-10-162-0/+8
| | |
| * | Merge branch 'c10-neu' into c10Rainer Gerhards2013-10-161-87/+24
| |\ \ | | | | | | | | | | | | | | | | Conflicts: doc/mmrfc5424addhmac.html
| | * | doc: describe mmrfc5424addhmac parametersRainer Gerhards2013-10-161-87/+17
| | | |
| * | | doc: describe mmrfc5424addhmac log verification methodRainer Gerhards2013-10-161-1/+27
| |/ /
| * | doc: add base doc for mmrfc5424addhmacRainer Gerhards2013-10-151-0/+119
| | | | | | | | | | | | | | | while it probably is not of general interest, at least some rough facts are conveyed.
| * | change version number to reflect custom branchRainer Gerhards2013-09-261-1/+1
| | |
* | | turn off accidentally enabled make check debug modeRainer Gerhards2013-10-151-1/+1
| | |
* | | bugfix: imfile did not properly initialize strm object ptrRainer Gerhards2013-10-155-4/+29
| | | | | | | | | | | | | | | | | | 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-142-26/+52
| | |
* | | 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-142-1/+13
|\ \ \ | | |/ | |/|
| * | bugfix: mmanon did not detect all IP addresses in rewrite modeRainer Gerhards2013-10-142-1/+8
| | | | | | | | | | | | | | | | | | | | | 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-142-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | 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 'master-lookup'Rainer Gerhards2013-10-1313-3/+507
|\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: grammar/rainerscript.h runtime/rsyslog.h
| * | | reload lookup tables on HUPRainer Gerhards2013-07-163-2/+54
| | | |
| * | | add base plumbing for (later) dynamic table reloadRainer Gerhards2013-07-163-11/+23
| | | | | | | | | | | | | | | | | | | | among others, we change some internal interfaces. So far, we only add the necessary locks. More work in later commits.
| * | | milestone: basic lookup() functionality is presentRainer Gerhards2013-07-104-9/+106
| | | | | | | | | | | | | | | | done the naive way, string indzes only
| * | | doc: copy&paste error fixRainer Gerhards2013-07-101-1/+1
| | | |
| * | | milestone: completed string lookup table load (naive version)Rainer Gerhards2013-07-103-1/+60
| | | |
| * | | milestone: read in lookup table file & json parse itRainer Gerhards2013-07-092-0/+78
| | | |
| * | | milestone: lookup table ready for actual load (but load not yet done)Rainer Gerhards2013-07-096-9/+60
| | | |
| * | | Merge branch 'master' into master-lookupRainer Gerhards2013-07-095-61/+93
| |\ \ \
| * | | | milestone: add lookup_table stmt to RainerScriptRainer Gerhards2013-07-096-5/+50
| | | | | | | | | | | | | | | | | | | | ... but still does nothing execpt calling the handler.
| * | | | add lookup table sekeleton to build systemRainer Gerhards2013-07-054-0/+111
| | | | |
* | | | | doc: describe new imptcp input parameterRainer Gerhards2013-10-122-1/+12
| | | | |
* | | | | doc: mention new feature in ChangeLog (after import from custom branch)Rainer Gerhards2013-10-111-0/+1
| | | | |
* | | | | 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
* | | | | | doc: add link to statistic counter descriptionRainer Gerhards2013-10-111-0/+7
| | | | | |
* | | | | | doc: describe new "thread" imudp module parameterRainer Gerhards2013-10-111-0/+9
| | | | | |