Created
July 9, 2018 08:40
-
-
Save eufat/f9be9220322f398f7fbbb35c6c2053c2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input { | |
beats { | |
port => 5044 | |
} | |
} | |
## Add your filters / logstash plugins configuration here | |
filter { | |
kv {} | |
csv { | |
convert => { | |
method => text | |
duration => integer | |
key => integer | |
timestamp => long | |
} | |
} | |
} | |
output { | |
elasticsearch { | |
hosts => "elasticsearch:9200" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment