diff options
Diffstat (limited to '')
-rw-r--r-- | elk/logstash.conf | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/elk/logstash.conf b/elk/logstash.conf new file mode 100644 index 0000000..0440f5d --- /dev/null +++ b/elk/logstash.conf @@ -0,0 +1,19 @@ +input { + beats { + port => 5044 + } + + # tcp { + # port => 50000 + # } +} + +## Add your filters / logstash plugins configuration here + +output { + elasticsearch { + hosts => ["elasticsearch:9200"] + ssl => false + index => "logstash" + } +} |