Skip to content

Instantly share code, notes, and snippets.

@quasiben
Created November 12, 2015 20:56
Show Gist options
  • Save quasiben/cd4b09c36ddd149afe75 to your computer and use it in GitHub Desktop.
Save quasiben/cd4b09c36ddd149afe75 to your computer and use it in GitHub Desktop.
input { stdin { } }
filter {
grok {
match => { "message" => "%{COMBINEDAPACHELOG}" }
}
date {
match => [ "timestamp" , "dd/MMM/yyyy:HH:mm:ss Z" ]
}
}
output {
elasticsearch { host => "ip-172-31-63-233" }
stdout { codec => rubydebug }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment