mirror of
https://github.com/rsyslog/rsyslog.git
synced 2025-12-21 19:30:43 +01:00
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>
9 lines
262 B
Makefile
9 lines
262 B
Makefile
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 =
|