Created
October 24, 2014 02:11
-
-
Save gt50/7cadde47cbbb5a7a1fee to your computer and use it in GitHub Desktop.
netflow.conf for logstash (not working with ASA)
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 { | |
udp { | |
port => 6343 | |
codec => netflow { versions => [ 5, 9] } | |
type => "netflow" | |
} | |
} | |
output { | |
if [type] == "netflow" { | |
elasticsearch { host => localhost } | |
file { | |
path => "/var/log/logstash/rawdata.log" | |
type => "netflow" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment