Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@chasseurmic
Created March 28, 2015 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chasseurmic/fdbc3103d731094df066 to your computer and use it in GitHub Desktop.
Save chasseurmic/fdbc3103d731094df066 to your computer and use it in GitHub Desktop.
Logstash Embedded Configuration
input {
tcp {
'port' => "9998"
codec => json
}
udp {
'port' => "9999"
codec => json
}
}
output {
elasticsearch {
embedded => true
}
stdout {
codec => rubydebug
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment