Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge branch 'v7-stable-mmrfc5424addhmac' | Rainer Gerhards | 2013-09-26 | 1 | -1/+20 |
|\ | | | | | | | | | | | | | | | Conflicts: Makefile.am configure.ac runtime/msg.c runtime/rsyslog.h | ||||
| * | mmrfc5424addhmac: complete initial implementation | Rainer Gerhards | 2013-09-25 | 1 | -0/+1 |
| | | | | | | | | | | hash is now also persisted back to structured-data rsyslog property | ||||
| * | simplify STRUCTURED-DATA representation in msg object | Rainer Gerhards | 2013-09-25 | 1 | -2/+4 |
| | | |||||
| * | milestone: mmpstrucdata parses STRUCTURED-DATA (but does not yet store it) | Rainer Gerhards | 2013-09-23 | 1 | -0/+6 |
| | | |||||
| * | expose so-far msg-internal method to query structured data | Rainer Gerhards | 2013-09-23 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | 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. | ||||
| * | mmrfc5424addhmac milestone: do not process non-rfc5424 messages | Rainer Gerhards | 2013-09-23 | 1 | -0/+9 |
| | | |||||
* | | Merge branch 'v7-stable' | Rainer Gerhards | 2013-09-26 | 1 | -1/+0 |
|\ \ | |||||
| * | | remove no-longer needed data item | Rainer Gerhards | 2013-09-25 | 1 | -1/+0 |
| |/ | |||||
* | | Merge branch 'v7-stable' | Rainer Gerhards | 2013-09-03 | 1 | -1/+1 |
|\| | |||||
| * | make rsyslog use the new json-c pkgconfig file if available | hwoarang | 2013-09-03 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'c9' | Rainer Gerhards | 2013-09-02 | 1 | -1/+3 |
|\ \ | | | | | | | | | | | | | Conflicts: runtime/msg.c | ||||
| * | | milestone: defaultTZ can be set in msg obj (via imtcp) | Rainer Gerhards | 2013-08-30 | 1 | -1/+3 |
| |/ | | | | | | | ... but parser does not yet use it. | ||||
* | | first shot at global variables (without proper sync so far) | Rainer Gerhards | 2013-07-22 | 1 | -0/+2 |
| | | |||||
* | | milestone: basic local variable functionality available | Rainer Gerhards | 2013-07-17 | 1 | -0/+3 |
| | | | | | | | | but some nits, like do not work with disk queues | ||||
* | | refactor in preparation of local variables | Rainer Gerhards | 2013-07-17 | 1 | -1/+1 |
|/ | | | | | local variables require a second json root; this refactoring makes sure we can basically use common functions for json handling | ||||
* | Don't #include libestr and libee headers when not necessary | Tomas Heinrich | 2013-05-20 | 1 | -2/+0 |
| | | | | | Through msg.h, many unrelated components needlessly required LIBEE_CFLAGS. | ||||
* | mmanon: complete ipv4 functionality | Rainer Gerhards | 2013-03-04 | 1 | -0/+1 |
| | |||||
* | optimize: obtaining programname | Rainer Gerhards | 2013-01-14 | 1 | -2/+5 |
| | | | | included some additional refactoring for cleaner code | ||||
* | optimize msg.c/textpri | Rainer Gerhards | 2013-01-14 | 1 | -1/+0 |
| | | | | remove snprintf() in favor for quicker code | ||||
* | Merge branch 'v7-stable-newmsglock' into master-newmsglock | Rainer Gerhards | 2012-12-06 | 1 | -12/+0 |
|\ | | | | | | | | | | | | | Conflicts: runtime/msg.c runtime/queue.c tools/syslogd.c | ||||
| * | Merge branch 'v6-stable-newmsglock' into v7-stable-newmsglock | Rainer Gerhards | 2012-12-06 | 1 | -12/+0 |
| |\ | | | | | | | | | | | | | Conflicts: tools/syslogd.c | ||||
| | * | bugfix: some message properties could be garbled due to race condition | Rainer Gerhards | 2012-12-06 | 1 | -12/+0 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This happened only on very high volume systems, if the same message was being processed by two different actions. This was a regression caused by the new config processor, which did no longer properly enable msg locking in multithreaded cases. The bugfix is actually a refactoring of the msg locking code - we no longer do unlocked operations, as the use case for it has mostly gone away. It is potentially possible only at very low-end systems, and there the small additional overhead of doing the locking does not really hurt. Instead, the removal of that capability can actually slightly improve performance in common cases, as the code path is smaller and requires slightly less memory writes. That probably outperforms the extra locking overhead (which in the low-end case always happens in user space, without need for kernel support as we can always directly aquire the lock - there is no contention at all). | ||||
* | | | cleanup: remove no longer needed function | Rainer Gerhards | 2012-11-06 | 1 | -1/+0 |
| | | | |||||
* | | | queue: reduce CPU load for deserializing message properties | Rainer Gerhards | 2012-11-06 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | Linear runtime due to message order. Was quadratic before. However, not a big overall improvement. | ||||
* | | | queue: remove time() calls from msg deserialization | Rainer Gerhards | 2012-11-03 | 1 | -0/+1 |
| | | | |||||
* | | | queue: use specific deserializer for msg object | Rainer Gerhards | 2012-11-03 | 1 | -0/+2 |
| | | | | | | | | | | | | spares lengthy table lookups | ||||
* | | | queue: remove unnecessary (obj_t*) redirection from msg ptrs | Rainer Gerhards | 2012-11-03 | 1 | -0/+1 |
| | | | |||||
* | | | refactor tpl processor so that date is queried once per template | Rainer Gerhards | 2012-10-10 | 1 | -1/+1 |
|/ / | | | | | | | Things like $YEAR, $MONTH required a time() call each. | ||||
* | | new ruleengine: implement template type "subtree" | Rainer Gerhards | 2012-09-18 | 1 | -1/+3 |
| | | |||||
* | | new ruleengine: Implent "unset" statement | Rainer Gerhards | 2012-09-17 | 1 | -0/+7 |
| | | |||||
* | | add native json-passing to output modules using JSON API | Rainer Gerhards | 2012-08-31 | 1 | -0/+1 |
| | | |||||
* | | Merge branch 'master' into v7-devel | Rainer Gerhards | 2012-08-27 | 1 | -1/+1 |
|\| | | | | | | | | | Conflicts: runtime/msg.c | ||||
| * | add uuid property to message object | Jérôme Renard | 2012-08-26 | 1 | -1/+1 |
| | | |||||
* | | milestone: libee event removed from rsyslog core. Now pure JSON. | Rainer Gerhards | 2012-08-27 | 1 | -2/+1 |
| | | |||||
* | | milestone: first PoC for hierarchical data inside msg | Rainer Gerhards | 2012-08-27 | 1 | -1/+4 |
|/ | |||||
* | added "date-unixtimestamp" property replacer option to format as a unix ↵ | Rainer Gerhards | 2012-03-29 | 1 | -0/+2 |
| | | | | timestamp | ||||
* | added message property parsesuccess to indicate status of higher level ↵ | Rainer Gerhards | 2012-03-15 | 1 | -0/+2 |
| | | | | | | | | parser run added message property parsesuccess to indicate if the last run higher-level parser could successfully parse the message or not (see property replacer html doc for details) | ||||
* | milestone/[PARTWORK]: integrated all variable types (msg/sys/cee) | Rainer Gerhards | 2011-07-08 | 1 | -0/+1 |
| | |||||
* | milestone/[PARTWORK]: obtaining msg vars integrated, "==" works for strings | Rainer Gerhards | 2011-07-07 | 1 | -0/+1 |
| | |||||
* | Merge branch 'v5-beta' | Rainer Gerhards | 2011-02-25 | 1 | -1/+2 |
|\ | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html | ||||
| * | added debug support for trying to find well-hidden bug | Rainer Gerhards | 2011-02-23 | 1 | -1/+2 |
| | | |||||
* | | milestone: added support for CEE-variables to RainerScript | Rainer Gerhards | 2010-12-03 | 1 | -0/+2 |
| | | |||||
* | | milestone: added support for CEE-properties in property-based filters | Rainer Gerhards | 2010-12-01 | 1 | -1/+2 |
| | | |||||
* | | milestone: template supports CEE output via %$!all-json% | Rainer Gerhards | 2010-12-01 | 1 | -1/+1 |
| | | |||||
* | | milestone: added mmnormalize (compiles, but untested) | Rainer Gerhards | 2010-12-01 | 1 | -0/+3 |
|/ | |||||
* | bugfix: atomic increment for msg object may not work correct on all platforms. | Chris Metcalf | 2010-11-25 | 1 | -1/+1 |
| | | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com> | ||||
* | finshed implementation of strgen modules | Rainer Gerhards | 2010-06-04 | 1 | -2/+5 |
| | | | | | | and also provided four build-in modules for the most common use cases, hopefully resulting in a speedup of around 5% for typical rsyslog processing. | ||||
* | Merge branch 'v4-devel' into master | Rainer Gerhards | 2010-04-27 | 1 | -0/+1 |
|\ | | | | | | | | | | | | | | | | | | | | | | | Conflicts: runtime/Makefile.am runtime/atomic.h runtime/queue.c runtime/queue.h runtime/wti.c runtime/wti.h runtime/wtp.c runtime/wtp.h | ||||
| * | bugfix: problems with atomic operations emulation | Rainer Gerhards | 2010-04-27 | 1 | -0/+1 |
| | | | | | | | | | | | | replaced atomic operation emulation with new code. The previous code seemed to have some issue and also limited concurrency severely. The whole atomic operation emulation has been rewritten. | ||||
| * | changed flag value for v5-compatibility | Rainer Gerhards | 2010-04-19 | 1 | -1/+1 |
| | |