summaryrefslogtreecommitdiffstats
path: root/runtime
Commit message (Collapse)AuthorAgeFilesLines
* nit: update copyright datesRainer Gerhards2013-11-293-3/+3
|
* introduce new function to emit warning and other non-error messagesRainer Gerhards2013-11-294-42/+80
| | | | also refactor the error message subsystem a bit
* use const keyword at (some) appropriate placesRainer Gerhards2013-11-294-8/+8
|
* regression fix: action queues with default settings did not start worker threadv7.5.7Rainer Gerhards2013-11-251-5/+3
|
* queue: dynamic default for discardMark, emit warning if set very lowRainer Gerhards2013-11-211-4/+29
|
* queue: guard various config param defaults against very low queue sizesRainer Gerhards2013-11-211-8/+27
|
* queue: add config parameter queue.spooldirectoryRainer Gerhards2013-11-211-0/+12
| | | | | | Conflicts: runtime/queue.c
* Merge branch 'v7-stable' into v7-develRainer Gerhards2013-11-211-8/+30
|\ | | | | | | | | Conflicts: runtime/queue.c
| * queue: spool directory setting was not properly propagated to DA queueRainer Gerhards2013-11-211-1/+21
| |
| * refactor queue spool directory config handlingRainer Gerhards2013-11-211-7/+7
| |
| * bugfix: legacy directive $ActionQueueWorkerThreads was not honoredRainer Gerhards2013-11-192-0/+2
| | | | | | | | | | | | | | Conflicts: ChangeLog runtime/queue.c
| * do not adjust batch size for disk queuesRainer Gerhards2013-11-071-1/+1
| |
| * do not complain for queue size on DA queuesRainer Gerhards2013-11-071-1/+2
| |
* | queue.workerThreadMinimumMessage set to queue.size / num workersRainer Gerhards2013-11-191-2/+18
| |
* | bugfix: legacy directive $ActionQueueWorkerThreads was not honoredRainer Gerhards2013-11-192-0/+3
| |
* | queue: auto-adjust watermarksRainer Gerhards2013-11-191-10/+14
| |
* | queue: warn if high watermark is set too lowRainer Gerhards2013-11-191-0/+8
| |
* | emit warning message if output module with msg passing mode runs asynchronouslyRainer Gerhards2013-11-072-0/+16
| |
* | bugfix: regular workers are no longer started if DA worker is activePavel Levshin2013-11-071-8/+7
| | | | | | | | | | form mail: Look, below, if it is time to activate DA worker, we call it explicitly. But in this case we do not advise regular workers. They are likely already running at this point, but it is not guaranteed. What if, for example, the system is set to start additional workers when the queue is going over high watermark? What if HighWatermark is set to 1? Regular workers will not be started, and DA worker may fail. Thus, it is reasonable to advise regular workers even if we are going DA.
* | cleanup no longer needed codeRainer Gerhards2013-11-074-8/+1
| |
* | Merge branch 'master' into master-newwtipoolRainer Gerhards2013-11-071-2/+3
|\ \
| * | do not adjust batch size for disk queuesRainer Gerhards2013-11-071-1/+1
| | |
| * | do not complain for queue size on DA queuesRainer Gerhards2013-11-061-1/+2
| | |
* | | improve worker thread pool handlingPavel Levshin2013-11-064-6/+15
|/ / | | | | | | | | among others, make possible that workers really timeout and the pool thus shrinks
* | Merge branch 'v7-stable'Rainer Gerhards2013-11-051-6/+14
|\|
| * improved checking of queue config parameters on startupRainer Gerhards2013-11-051-6/+7
| |
| * emit warning message if queue.size is set dangerously lowRainer Gerhards2013-11-051-0/+7
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-11-052-1/+32
|\|
| * Merge branch 'v7-stable-call-ruleset-queue' into v7-stableRainer Gerhards2013-11-052-1/+32
| |\ | | | | | | | | | | | | Conflicts: ChangeLog
| | * bugfix: call to ruleset with async queue did not use the queueRainer Gerhards2013-06-262-1/+32
| | | | | | | | | | | | closes: http://bugzilla.adiscon.com/show_bug.cgi?id=443
* | | add debug output for global vars (unsupported!) during property filter ↵Rainer Gerhards2013-10-161-3/+3
| | | | | | | | | | | | evaluation
* | | Merge branch 'master' into tmpRainer Gerhards2013-10-162-3/+14
|\ \ \
| * | | undo "localhostname property handling simplification", which broke thingsRainer Gerhards2013-10-162-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | in v7.5, this is not a simplification but actually complicates things. While we could fix the effects by patching other places, the end result would be anything else but simpler. So we undid that change.
* | | | Merge branch 'master-var-refactor' into tmpRainer Gerhards2013-10-167-400/+223
|\ \ \ \ | |/ / / |/| | |
| * | | Merge branch 'master' into master-var-refactorRainer Gerhards2013-10-262-1/+14
| |\ \ \
| * | | | cleanup: remove no longer needed codeRainer Gerhards2013-10-241-86/+0
| | | | |
| * | | | refactoring regression fix: segfault if $$now is used in scriptRainer Gerhards2013-10-241-0/+6
| | | | | | | | | | | | | | | | | | | | Thanks to Pavel Levshin for finding this bug.
| * | | | Merge branch 'master' into master-var-refactorRainer Gerhards2013-10-241-0/+6
| |\ \ \ \
| * | | | | (temporarily?) re-enable global vars in string templatesRainer Gerhards2013-10-231-0/+2
| | | | | |
| * | | | | refactoring regression fix: invalid free for JSON propertiesRainer Gerhards2013-10-231-1/+4
| | | | | |
| * | | | | permit writing not only msg variables via the msgAddJSON() APIRainer Gerhards2013-10-231-18/+17
| | | | | |
| * | | | | bugfix: unset statement always worked on message var, even if local var was ↵Rainer Gerhards2013-10-231-9/+21
| | | | | | | | | | | | | | | | | | | | | | | | given
| * | | | | fix VAR handling in script grammar and codeRainer Gerhards2013-10-233-8/+3
| | | | | | | | | | | | | | | | | | | | | | | | The $-var designator is now correctly stripped off the varname.
| * | | | | enable error message for invalid property namesRainer Gerhards2013-10-231-4/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | also add some support for global vars back, as the syntax may not go away.
| * | | | | refactor: align jsonFind() calling interface with recent changesRainer Gerhards2013-10-232-5/+5
| | | | | |
| * | | | | minor cleanupRainer Gerhards2013-10-231-2/+0
| | | | | |
| * | | | | refactor: remove now no-longer needed functionsRainer Gerhards2013-10-233-99/+0
| | | | | |
| * | | | | refactor get.*PropVal() series of functionsRainer Gerhards2013-10-232-35/+25
| | | | | |
| * | | | | remove no longer necessary casesRainer Gerhards2013-10-231-6/+2
| | | | | |
| * | | | | fix potential segfault introduced by last refactoringRainer Gerhards2013-10-231-2/+5
| | | | | |