diff options
author | Nathan Scott <nathans@aconex.com> | 2011-08-15 22:22:13 +1000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2012-01-17 10:31:37 +0100 |
commit | f8019d52f83884acb5e8f8755fe976d1592b4ccb (patch) | |
tree | 58f9362b2f4124489604e2a1f0d263898269b98c /plugins/omelasticsearch/Makefile.am | |
parent | 052b1c75945106c6336fd0c172fbaa129248334c (diff) | |
download | rsyslog-f8019d52f83884acb5e8f8755fe976d1592b4ccb.tar.gz rsyslog-f8019d52f83884acb5e8f8755fe976d1592b4ccb.tar.bz2 rsyslog-f8019d52f83884acb5e8f8755fe976d1592b4ccb.zip |
add elasticsearch output module
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>
Diffstat (limited to 'plugins/omelasticsearch/Makefile.am')
-rw-r--r-- | plugins/omelasticsearch/Makefile.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/omelasticsearch/Makefile.am b/plugins/omelasticsearch/Makefile.am new file mode 100644 index 00000000..a574c72f --- /dev/null +++ b/plugins/omelasticsearch/Makefile.am @@ -0,0 +1,8 @@ +pkglib_LTLIBRARIES = omelasticsearch.la + +omelasticsearch_la_SOURCES = omelasticsearch.c +omelasticsearch_la_CPPFLAGS = $(RSRT_CFLAGS) $(PTHREADS_CFLAGS) +omelasticsearch_la_LDFLAGS = -module -avoid-version +omelasticsearch_la_LIBADD = $(CURL_LIBS) + +EXTRA_DIST = |