Skip to content

Instantly share code, notes, and snippets.

@lbjay
Last active August 29, 2015 14:05
Show Gist options
  • Save lbjay/c57e28a486bc1e10c82f to your computer and use it in GitHub Desktop.
Save lbjay/c57e28a486bc1e10c82f to your computer and use it in GitHub Desktop.
tsdb-eval logstash config
input {
udp {
port => 3333
codec => json
}
}
filter {
date {
match => [ "created", "YYYY-MM-dd'T'HH:mm:ssZZ" ]
}
}
output {
stdout {
codec => rubydebug
}
elasticsearch {
embedded => true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment