summaryrefslogtreecommitdiffstats
path: root/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* testbench: fix make distcheckRainer Gerhards2013-11-191-3/+3
|
* add module mmsequencePavel Levshin2013-10-161-0/+4
|
* Merge branch 'v7-stable-mmrfc5424addhmac'Rainer Gerhards2013-09-261-0/+4
|\ | | | | | | | | | | | | | | Conflicts: Makefile.am configure.ac runtime/msg.c runtime/rsyslog.h
| * milestone: mmpstrucdata parses STRUCTURED-DATA (but does not yet store it)Rainer Gerhards2013-09-231-0/+4
| |
* | mmutf8fix: new module to fix invalid UTF-8 sequencesRainer Gerhards2013-09-201-0/+4
| |
* | Merge branch 'v7-stable-mmrfc5424addhmac'Rainer Gerhards2013-09-201-0/+4
|\| | | | | | | | | | | Conflicts: Makefile.am configure.ac
| * mmrfc5424addhmac: add module skeletonRainer Gerhards2013-09-181-0/+4
| |
* | Merge branch 'v7-stable'Rainer Gerhards2013-06-251-0/+1
|\|
| * debug: add memleak info to "make distcheck"Rainer Gerhards2013-06-251-0/+1
| | | | | | | | | | do --enable-valgrind to get better diagnostics in case of memory leaks
* | Merge branch 'master-mmfields'Rainer Gerhards2013-06-111-1/+5
|\ \ | | | | | | | | | | | | | | | Conflicts: Makefile.am configure.ac
| * | mmfields: created skeleton for new module; build system integrationRainer Gerhards2013-06-071-0/+4
| |/
* / mmcount: message modification plugin which counts messagesBala.FA2013-06-091-0/+4
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This module provides the capability to count log messages by severity or json property of given app-name. The count value is added into the log message as json property named 'mmcount' Example usage of the module in the configuration file module(load="mmcount") # count each severity of appname gluster action(type="mmcount" appname="gluster") # count each value of gf_code of appname gluster action(type="mmcount" appname="glusterd" key="!gf_code") # count value 9999 of gf_code of appname gluster action(type="mmcount" appname="glusterfsd" key="!gf_code" value="9999") # send email for every 50th mmcount if $app-name == 'glusterfsd' and $!mmcount <> 0 and $!mmcount % 50 == 0 then { $ActionMailSMTPServer smtp.example.com $ActionMailFrom rsyslog@example.com $ActionMailTo glusteradmin@example.com $template mailSubject,"50th message of gf_code=9999 on %hostname%" $template mailBody,"RSYSLOG Alert\r\nmsg='%msg%'" $ActionMailSubject mailSubject $ActionExecOnlyOnceEveryInterval 30 :ommail:;RSYSLOG_SyslogProtocol23Format } Signed-off-by: Bala.FA <barumuga@redhat.com>
* fix regression in build systemv7.3.13Rainer Gerhards2013-04-291-0/+4
|
* bugfix: build problems on SolarisJohn Lyman2013-04-251-1/+1
| | | | closes: http://bugzilla.adiscon.com/show_bug.cgi?id=436
* imjournal: streamline build system a bitRainer Gerhards2013-03-121-1/+5
| | | | | ... most importantly the configure switch is no longer --enable-journal but --enable-imjournal (as we now also have omjournal!)
* Add imjournal module for reading messages from systemd journal.Milan Bartos2013-03-051-1/+1
| | | | | | | | | | | | | For reading messages with all fields from structured systemd journal log messages. Loading module with $ModLoad imjournal is enough to start pulling messages no other configuration is needed. modified: Makefile.am modified: configure.ac new file: plugins/imjournal/Makefile.am new file: plugins/imjournal/imjournal.c new file: plugins/imjournal/imjournal.h
* add initial version of mmanon (anonymoization support)Rainer Gerhards2013-02-281-0/+4
|
* add support for writing to the Linux Journal (omjournal)Rainer Gerhards2013-02-261-0/+4
|
* Merge branch 'v7-stable'Rainer Gerhards2013-01-281-3/+4
|\
| * move platfrom-specific files to their own subdirectoryRainer Gerhards2013-01-281-2/+4
| |
| * remove outdated sample rsyslog.confRainer Gerhards2013-01-281-1/+0
| |
| * fix compile problem due to new (Solaris) compat layerRainer Gerhards2013-01-101-1/+1
| | | | | | | | | | The compat layer was not fully integrated into the build system, causing ./configure to fail.
* | Merge branch 'v7-stable-libnet-frag'Rainer Gerhards2013-01-111-1/+1
|\ \ | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac tools/omfile.c
| * | fix compile problem due to new (Solaris) compat layerRainer Gerhards2013-01-101-1/+1
| |/ | | | | | | | | The compat layer was not fully integrated into the build system, causing ./configure to fail.
* / bugfix/testbench: tls tests failed in make distcheck due to missing filesRainer Gerhards2012-12-141-1/+0
|/
* Merge branch 'v6-stable' into betaRainer Gerhards2012-10-041-4/+0
|\ | | | | | | | | Conflicts: plugins/cust1/Makefile.am
| * Merge branch 'v5-stable' into v6-stableRainer Gerhards2012-10-041-4/+0
| |\
| | * remove cust1 dummy plugin from build systemRainer Gerhards2012-10-041-4/+0
| | | | | | | | | | | | | | | | | | | | | Thanks to Michael Biebl for identifying this as the culprit for several build-related issues. The plugin is a placeholder, and was not used for quite some while. It is definitely not worth the effort to keep it along. If needed, can be quickly created.
| | * Merge branch 'v5-stable' into v5-betaRainer Gerhards2012-06-151-0/+2
| | |\
| | | * adding pkgconfigdir definition to Makefile.am to help build properlyAbby Edwards2012-06-131-0/+2
| | | |
* | | | Added new module, imkmsg, for structured kernel logs from /dev/kmsg.Milan Bartos2012-09-241-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is still in development, bute ready to be commited to master. modified: Makefile.am modified: configure.ac new file: plugins/imkmsg/Makefile.am new file: plugins/imkmsg/imkmsg.c new file: plugins/imkmsg/imkmsg.h new file: plugins/imkmsg/kmsg.c
* | | | Merge branch 'v6-stable' into v6-develRainer Gerhards2012-09-061-3/+4
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac doc/manual.html
| * | | preparing for 6.4.1 releasev6.4.1Rainer Gerhards2012-09-061-3/+4
| | | |
* | | | Merge branch 'beta'Rainer Gerhards2012-06-141-0/+2
|\| | |
| * | | adding pkgconfigdir definition to Makefile.am to help build properlyAbby Edwards2012-06-131-0/+2
| | | |
* | | | added new-style zeromq plugins, based on czmq api and rsyslog v6 confDavid Kelly2012-05-291-0/+8
|/ / /
* | | initial shot at omhiredisBrian Knox2012-03-211-0/+4
| | |
* | | build system: fully integrating ommongodbRainer Gerhards2012-03-071-0/+4
| | |
* | | mmaudit: added skeleton (copy of mmjsonparse)Rainer Gerhards2012-02-231-0/+4
| | |
* | | added mmjsonparse to support recognizing and parsing JSON enhanced syslog ↵Rainer Gerhards2012-02-211-0/+4
| | | | | | | | | | | | messages
* | | cleanup: remove omdbalertingRainer Gerhards2012-01-271-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | someone claimed to write a module with this functionality, if a template were provided. And indeed, it was provided but never anything happend (at least nothing was contributed back...). Removing this silly template now. If someone really intends to take up on it, get a copy from older git versions.
* | | Merge branch 'v5-devel'Rainer Gerhards2012-01-271-0/+2
|\| | | | | | | | | | | | | | | | | Conflicts: ChangeLog configure.ac
| * | Merge branch 'v5-stable-newstats' into v5-develRainer Gerhards2012-01-271-0/+2
| |\| | | | | | | | | | | | | Conflicts: configure.ac
| | * Merge branch 'v4-stable' into v5-stableRainer Gerhards2012-01-211-0/+2
| | |\
| | | * license docs were not properly redistributedRainer Gerhards2012-01-211-0/+2
| | | | | | | | | | | | | | | | thanks to Tomas Heinrich for alerting me.
* | | | Merge branch 'v5-devel' into masterRainer Gerhards2012-01-181-0/+5
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: ChangeLog Makefile.am configure.ac doc/manual.html plugins/imptcp/imptcp.c plugins/imudp/imudp.c plugins/imuxsock/imuxsock.c runtime/parser.c template.c tools/omfwd.c tools/syslogd.c
| * | | add elasticsearch output moduleNathan Scott2012-01-171-0/+5
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add support for sending events to elasticsearch - a distributed, RESTful, search engine built on Lucene (www.elasticsearch.org). The output module is enabled via a configure option, and uses libcurl to send the messages from rsyslog to elasticsearch. This patch makes use of the earlier JSON quoting patch to ensure valid JSON strings are sent to the server. Signed-off-by: Nathan Scott <nathans@aconex.com>
* | | removed imtemplate/omtemplate template modules, as this was waste of timeRainer Gerhards2012-01-091-10/+0
| | | | | | | | | | | | | | | | | | The actual input/output modules are better copy templates. Instead, the now-removed modules cost time for maintenance AND often caused confusion on what their role was.
* | | milestone: grammar integrated in rsyslog build systemRainer Gerhards2011-07-051-1/+1
| | |
* | | preparing for 6.1.8 releasev6.1.8Rainer Gerhards2011-05-211-0/+1
| | |