Sha256: 84b898e5d33ac11991c9f0a5fdc12f24fdf1f750b8f5291ee64b279ca4183dbf

Contents?: true

Size: 480 Bytes

Versions: 1

Compression:

Stored size: 480 Bytes

Contents

### THIS IS A EXAMPLE CONFIG SO LOGSTASH WILL RUN ###
### PLEASE UPDATE THIS TO WHATEVER YOU WANT TO USE ###

input {
        syslog {
                type => syslog
                port => 5544
        }
}


filter {
        mutate {
                add_field => [ "hostip", "%{host}" ]
        }
        dns {
                reverse => [ "host" ]
                action => "replace"
        }
}

output {
        elasticsearch {
                host => "localhost"
        }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
logstash-lib-1.3.2 pkg/rpm/SOURCES/logstash.conf