Skip to content

Instantly share code, notes, and snippets.

@thyagobr
Created August 7, 2015 13:56
Show Gist options
  • Select an option

  • Save thyagobr/24a902e6358f83cb5697 to your computer and use it in GitHub Desktop.

Select an option

Save thyagobr/24a902e6358f83cb5697 to your computer and use it in GitHub Desktop.
logstash basic udp/es config
input {
udp {
port => 5228
codec => json_lines
}
}
output {
elasticsearch { host => localhost }
stdout {
codec => json_lines
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment