Skip to content

Instantly share code, notes, and snippets.

@damianharvey
damianharvey / config
Last active August 29, 2015 14:16
ELK Demo logstash config
input {
file {
path => [ "/logdata/access_log" ]
type => "apache-access"
start_position => "beginning"
}
file {
path => [ "/logdata/error_log" ]
type => "apache-error"
start_position => "beginning"