Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save boredstiff/ce3e8fc2458eebdd4367d521b76e0df9 to your computer and use it in GitHub Desktop.

Select an option

Save boredstiff/ce3e8fc2458eebdd4367d521b76e0df9 to your computer and use it in GitHub Desktop.
logstash.conf
input {
file {
path => "/logs/my_service.log"
start_position => "beginning"
sincedb_path => "/dev/null"
codec => json
}
}
output {
elasticsearch {
hosts => ["http://elasticsearch:9200"]
index => "customer_api"
}
stdout { codec => rubydebug }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment