Skip to content

Instantly share code, notes, and snippets.

@andrewwebber
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save andrewwebber/8ea92ef1f844236584c3 to your computer and use it in GitHub Desktop.

Select an option

Save andrewwebber/8ea92ef1f844236584c3 to your computer and use it in GitHub Desktop.
logstash
input {
tcp {
port => 1984
codec => json
}
}
filter {
mutate {
convert => { "PRIORITY" => "integer" }
}
}
output {
elasticsearch {
embedded => true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment