summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* preparing for 4.3.1v4.3.1Rainer Gerhards2009-05-254-62/+60
|
* added new testing module imdiagRainer Gerhards2009-05-2521-82/+289
| | | | | which enables to talk to the rsyslog core at runtime. The current implementation is only a beginning, but can be expanded over time
* fixing some nits with the build systemRainer Gerhards2009-05-222-2/+2
|
* added capability to run multiple tcp listeners (on different ports)Rainer Gerhards2009-05-2238-221/+584
| | | | | | | | | | | Well, actually this and a lot of related things. I improved the testbench so that the new capabilities are automatically tested and also did some general cleanup. The current multiple tcp listener solution will probably receive some further cleanup, too, but looks quite OK so far. I also reviewed the way tcpsrv et all work, in preparation of using this code for imdiag. I need to document the findings, especially as the code is rather complicated "thanks" to the combination of plain tcp and gssapi transport modes.
* made imdiag *just* compile & some cleanupRainer Gerhards2009-05-202-27/+26
| | | | | | imdiag was never finished (not even really begun), but now I need it. I made the few things that are available compile, but more serious work is required.
* updated ChangeLog with Michael Biebl's changesRainer Gerhards2009-05-191-1/+2
|
* Cleanup configure.ac a little for better readabilityMichael Biebl2009-05-191-32/+44
| | | | | | | | - Use 2 new lines as separator between configure options. - Remove forgotten copy&paste text. - Reorder and move template configure option to the end. Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* Improve ./configure outputMichael Biebl2009-05-191-28/+38
| | | | | | | Improve readability of the ./configure output by grouping relevant entries and indenting them. Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* Rename want_gssapi_krb5 to enable_gssapi_krb5Michael Biebl2009-05-191-6/+6
| | | | | | | Be consistent and rename the configure variable want_gssapi_krb5 to enable_gssapi_krb5. Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* Do not fail "make check" if omstdout is not enabledMichael Biebl2009-05-192-6/+7
| | | | | | | | | Only run omod-if-array.sh and parsertest.sh test if omstdout plugin is enabled. Remove the comment and fix the help output for --enable-stdout (default was "no", not "yes") Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* Fix compiler warningsMichael Biebl2009-05-193-0/+3
| | | | | | include <string.h> for memcpy and strlen. Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* Cleanup and typo fixesMichael Biebl2009-05-192-7/+3
| | | | Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* Add autogen.shMichael Biebl2009-05-191-0/+32
| | | | | | | | This file is useful for building rsyslog from git. It is a shortcut for autoreconf and ./configure and enables shave by default. Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* Add shave supportMichael Biebl2009-05-195-0/+315
| | | | | | | | | | | | | | shave tranforms the verbose autotools output into a pretty Kbuild-like one which makes it easier to spot warnings. See also http://damien.lespiau.name/blog/2009/02/18/shave-making-the-autotools-output-sane/ git clone git://git.lespiau.name/shave By default, shave is disabled and you have to explicitly enable it via ./configure --enable-shave. Signed-off-by: Rainer Gerhards <rgerhards@adiscon.com>
* doc: given some concrete advise on the common %hostname% content problemRainer Gerhards2009-05-111-1/+8
|
* added capability to draw configuration graphsRainer Gerhards2009-05-1113-13/+530
| | | | | | | | - added $GenerateConfigGraph configuration command which can be used to generate nice-looking (and very informative) rsyslog configuration graphs. - added $ActionName configuration directive (currently only used for graph generation, but may find other uses)
* Make it recover from errors on insertions.Luis Fernando Muñoz Mejías2009-04-291-5/+4
| | | | | | | | | If the database rejected some entry, making the statement fail on it, the batch was not cleaned and the same values were retried over and over, causing a cascade of failures and a denial of service. We use now OCI_BATCH_ERRORS so that everything valid in the batch is inserted, and rejected values can be discarded.
* Replace get_db_statement by a template.Luis Fernando Muñoz Mejías2009-04-291-25/+13
| | | | | | | | | | | | | Instead of reading a complete line, we'll use a template and delegate in the core to read such template. Then, all omoracle has to do is to find that template and use it as the prepared statement. I'm not sure if this is the correct approach, though. It has to dig too much into rsyslog's structures... txt_statement is stored in a private area, so that we don't mess too much with rsyslog's internals (I still don't feel comfortable with this much digging into template structures).
* Add the $OmoracleBatchItemSize directiveLuis Fernando Muñoz Mejías2009-04-291-17/+29
| | | | | | | | | | | | | | | | This directive controls the amount of memory needed for properties in the batch. Users should specify the largest value they expect in the statement. As per Rainer's comment: on MAX_BUFSIZE: I'd tend to make this configurable, because with RFC5424 messages can be much longer and RFC5425 now recommends a minimum maximum size of 8K. So we let users to choose. Maybe we need a sensible default value to make users' lifes easier? Also, the old non-vector based interface is not supported anymore. I broke it already when moving to this stage.
* Add licensing information.Luis Fernando Muñoz Mejías2009-04-292-0/+10
| | | | | I'm not sure if GPLv3 contemplates the ability to link to proprietary software, if it was previous work. I explicitly allow linking to OCI.
* performance enhancement: imtcp calls parser no longer on input threadRainer Gerhards2009-04-232-12/+58
| | | | | | but rather inside on of the potentially many main msg queue worker threads (an enhancement scheduled for all input plugins where this is possible)
* Merge branch 'beta'Rainer Gerhards2009-04-232-7/+20
|\ | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| * bugfix: compile problems in im3195Rainer Gerhards2009-04-232-1/+3
| |
| * Merge branch 'v3-stable' into betaRainer Gerhards2009-04-232-6/+16
| |\ | | | | | | | | | | | | | | | Conflicts: ChangeLog runtime/queue.c
| | * bugfix: light and full delay watermarks had invalid valuesRainer Gerhards2009-04-232-6/+12
| | | | | | | | | | | | | | | ... badly affecting performance for delayable inputs (but not causeing any other issues)
| * | preparing for 4.1.7v4.1.7Rainer Gerhards2009-04-223-3/+3
| | |
* | | another typo fix...Rainer Gerhards2009-04-221-1/+1
| | |
* | | typo fix (important typo)Rainer Gerhards2009-04-211-1/+1
| | |
* | | doc status update & typo fixesRainer Gerhards2009-04-212-24/+24
| | |
* | | Merge branch 'nextmaster'Rainer Gerhards2009-04-2176-268/+2501
|\ \ \ | |/ / |/| |
| * | doc: added (hopefully) easier to grasp queue explanationRainer Gerhards2009-04-2122-5/+286
| | |
| * | improved testbench - added tests for queue disk-only modeRainer Gerhards2009-04-174-1/+52
| | |
| * | some cleanupRainer Gerhards2009-04-175-3/+6
| | | | | | | | | | | | | | | ... mostly removal of compile-time warnings (thanks to Michael Biebl for suggesting to look after that)
| * | update project status & cleanupRainer Gerhards2009-04-173-30/+32
| | | | | | | | | | | | | | | | | | removed some warning in imklog compilation, but may not have solved a lurking issue (but placed comment so that we know if something surfaces)
| * | bugfix: missing header (platform compatibility issue)v4.3.0Rainer Gerhards2009-04-171-0/+1
| | |
| * | preparing for 4.3.0 releaseRainer Gerhards2009-04-173-3/+8
| | |
| * | Merge branch 'master' into nextmasterRainer Gerhards2009-04-172-9/+58
| |\ \
| * \ \ Merge branch 'nextmaster' into oracleRainer Gerhards2009-04-1622-181/+581
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Conflicts: runtime/rsyslog.h
| | * \ \ Merge branch 'master' into nextmasterRainer Gerhards2009-04-162-5/+20
| | |\ \ \
| | * | | | cosmetic fix (status message)Rainer Gerhards2009-04-091-2/+0
| | | | | |
| | * | | | Merge branch 'setrlimit' into nextmasterRainer Gerhards2009-04-090-0/+0
| | |\ \ \ \
| | | * \ \ \ Merge branch 'setrlimit' of git+ssh://rger@git.adiscon.com/git/rsyslog into ↵Rainer Gerhards2009-04-094-12/+48
| | | |\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | setrlimit
| | * | | | | | Merge branch 'setrlimit' into nextmasterRainer Gerhards2009-04-091-1/+10
| | |\| | | | |
| | | * | | | | removed MSG_NOSIGNAL & provided work-aroundRainer Gerhards2009-04-091-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | as this send() option is not supported on Solaris. We now simply ignore SIGPIPE
| | * | | | | | updated project statusRainer Gerhards2009-04-141-4/+4
| | | | | | | |
| | * | | | | | Merge branch 'omprog' into nextmasterRainer Gerhards2009-04-1410-141/+392
| | |\ \ \ \ \ \ | | | |_|/ / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog runtime/rsyslog.h
| | | * | | | | improved omprog, now ready for first practical testingRainer Gerhards2009-04-013-8/+165
| | | | | | | |
| | | * | | | | initial work on omprog, an output module to send messages to another programRainer Gerhards2009-04-018-22/+116
| | | | | | | |
| | * | | | | | added doc for $MaxOpenFiles directiveRainer Gerhards2009-04-144-12/+48
| | | |/ / / / | | |/| | | |
| | * | | | | implemented $MaxOpenFiles directive and changed testbenchRainer Gerhards2009-04-145-16/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ... to utilize it. This work is not yet fully verified to be correct.