summaryrefslogtreecommitdiffstats
path: root/runtime/msg.c
Commit message (Collapse)AuthorAgeFilesLines
* cleanupRainer Gerhards2013-03-291-2/+0
|
* Merge branch 'v7-stable-info'Rainer Gerhards2013-03-291-5/+12
|\ | | | | | | | | | | Conflicts: ChangeLog template.c
| * permit substring extraction relative to end-of-string in templatesRainer Gerhards2013-03-291-5/+12
| |
* | mmanon: complete ipv4 functionalityRainer Gerhards2013-03-041-0/+8
| |
* | optimze: reduce memory operations during dns resolution/hostname settingRainer Gerhards2013-01-221-20/+38
| | | | | | | | | | | | | | | | | | | | previously, hostname and ip strings were shuffled to the msg object, which created a property out of them. Now the cache holds the property, and it is resused (almost) everywhere, what saves a lot of memory operations. The only exception is imtcp session setup, where different handling of the hostname is done, which we need to sort out (but that's another story).
* | Merge branch 'master' into master-dns-propsRainer Gerhards2013-01-241-6/+10
|\ \
| * | regression fix: programname was not properly handledRainer Gerhards2013-01-241-6/+10
| | | | | | | | | | | | Regression from recent refactoring - never released.
* | | optimize: have dns cache pre-create rsyslog prop_t'sRainer Gerhards2013-01-241-7/+3
|/ /
* | optimize: reduce nbr of strcpy() in FROMHOST processingRainer Gerhards2013-01-181-3/+5
| |
* | bugfix: regression from textpri() optimizationRainer Gerhards2013-01-151-1/+2
| |
* | optimize: obtaining programnameRainer Gerhards2013-01-141-62/+29
| | | | | | | | included some additional refactoring for cleaner code
* | optimzize: msg/getNow() - remove snprintfRainer Gerhards2013-01-141-8/+26
| | | | | | | | instead, we use a lookup table for the values.
* | optimize msg.c/textpriRainer Gerhards2013-01-141-10/+14
| | | | | | | | remove snprintf() in favor for quicker code
* | optimize: do date() call in template processing only if actually neededRainer Gerhards2013-01-131-0/+4
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-01-091-1/+6
|\| | | | | | | | | Conflicts: ChangeLog
| * Check that sysinfo(2) can return uptimeMartin Carpenter2013-01-091-1/+6
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-01-081-0/+2
|\|
| * bugfix: very large memory consumption (and probably out of memory)Rainer Gerhards2013-01-071-0/+2
| | | | | | | | | | ...when FromPos was specified in template, but ToPos not. Thanks to Radu Gheorghe for alerting us of this bug.
* | minor cleanupRainer Gerhards2012-12-141-0/+1
| |
* | Merge branch 'v7-stable-newmsglock' into master-newmsglockRainer Gerhards2012-12-061-132/+89
|\| | | | | | | | | | | | | Conflicts: runtime/msg.c runtime/queue.c tools/syslogd.c
| * Merge branch 'v6-stable-newmsglock' into v7-stable-newmsglockRainer Gerhards2012-12-061-137/+9
| |\ | | | | | | | | | | | | Conflicts: tools/syslogd.c
| | * bugfix: some message properties could be garbled due to race conditionRainer Gerhards2012-12-061-137/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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).
* | | Merge branch 'v7-stable'Rainer Gerhards2012-11-141-2/+2
|\| |
| * | bugfix: make rsyslog compile on kfreebsd againGuillem Jover2012-11-141-2/+2
| | | | | | | | | | | | closes: http://bugzilla.adiscon.com/show_bug.cgi?id=380
* | | Merge branch 'v7-stable'Rainer Gerhards2012-11-091-1/+9
|\| |
| * | enabled to build without libuuid, at loss of uuid functionalityRainer Gerhards2012-11-091-1/+9
| | | | | | | | | | | | | | | | | | this enables smoother builds on older systems that do not support libuuid. Loss of functionality should usually not matter too much as uuid support has only recently been added and is very seldom used.
| * | Fix crash when date properties are used without a templateMiloslav Trmač2012-10-111-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | E.g. in > set $!time = $timereported; > set $!time_rcvd = $timegenerated; pTpe is set to NULL by the caller. (Is "default" the correct format to use?) Signed-off-by: Miloslav Trmač <mitr@redhat.com>
* | | bugfix: property tTIMESTAMP was incorrectly restoredRainer Gerhards2012-11-071-1/+1
| | | | | | | | | | | | in msg deserializer
* | | cleanup: remove no longer needed functionRainer Gerhards2012-11-061-86/+0
| | |
* | | queue: reduce CPU load for deserializing message propertiesRainer Gerhards2012-11-061-16/+181
| | | | | | | | | | | | | | | Linear runtime due to message order. Was quadratic before. However, not a big overall improvement.
* | | very minimal improvement in reconstructing persisted queue entriesRainer Gerhards2012-11-051-6/+4
| | |
* | | queue: remove time() calls from msg deserializationRainer Gerhards2012-11-031-0/+13
| | |
* | | queue: use specific deserializer for msg objectRainer Gerhards2012-11-031-1/+2
| | | | | | | | | | | | spares lengthy table lookups
* | | queue: remove unnecessary (obj_t*) redirection from msg ptrsRainer Gerhards2012-11-031-6/+3
| | |
* | | Fix crash when date properties are used without a templateMiloslav Trmač2012-10-111-2/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | E.g. in > set $!time = $timereported; > set $!time_rcvd = $timegenerated; pTpe is set to NULL by the caller. (Is "default" the correct format to use?) Signed-off-by: Miloslav Trmač <mitr@redhat.com>
* | | optimize property replacer: reduce runtime for simple processingRainer Gerhards2012-10-111-4/+2
| | |
* | | fix: wrong variable was populated in MsgGetProp()Rainer Gerhards2012-10-111-8/+8
| | | | | | | | | | | | problem in this morning's change, never released
* | | slightly improve performance for $NOW family of system propertiesRainer Gerhards2012-10-111-17/+32
| | |
* | | refactor tpl processor so that date is queried once per templateRainer Gerhards2012-10-101-22/+21
|/ / | | | | | | Things like $YEAR, $MONTH required a time() call each.
* | Implement ability for CEE-based properties to be stored in disk queuesRainer Gerhards2012-09-191-0/+12
| |
* | bugfix: MsgDup() did not copy CEE structureRainer Gerhards2012-09-191-1/+5
| | | | | | | | | | | | This function was called at various places, most importantly during "last messages repeated n times" processing and omruleset. If CEE(JSON) data was present, it was lost as part of the copy process.
* | clarify: NO memleak, json_object_object_del() reduces reference countRainer Gerhards2012-09-181-2/+0
| | | | | | | | | | json-c upstream made this clear some posts later in the discussion that I was refering to.
* | new ruleengine: do a deep copy for "set" statement affecting JSON treeRainer Gerhards2012-09-181-1/+50
| | | | | | | | | | Otherwise, further modifications will modify the original and "copied" JSON tree.
* | new ruleengine: implement native JSON in RainerScriptRainer Gerhards2012-09-181-0/+3
| |
* | new ruleengine: implement template type "subtree"Rainer Gerhards2012-09-181-9/+36
| |
* | new ruleengine: couple of fixes to new codeRainer Gerhards2012-09-171-4/+11
| | | | | | | | | | | | - memory leak if container was tried to replace - too early free due to invalid reference counting - performance improvement for set statement
* | new ruleengine: Implent "unset" statementRainer Gerhards2012-09-171-0/+42
| |
* | Implement set config stmt (initial version)Rainer Gerhards2012-09-131-13/+44
| | | | | | | | | | code passes basic tests, no extended testing done. Definitely room for improvement, but not bad ;)
* | bugfix: string-generating templates caused abort if CEE field could not be foundRainer Gerhards2012-09-101-3/+8
| |
* | bugfix: specifying json root in a template lead to abortRainer Gerhards2012-09-031-5/+13
| | | | | | | | Thanks to Miloslav Trmač for alerting us of this problem.