aports/testing/logstash/logstash.conf
Stuart Cardall 70516d0b45 testing/logstash: update to 5.2.2 / use supervise-daemon
adds service supervision with OpenRC's builtin supervise-daemon
logstash/bin added to $PATH
take ownership
2017-03-24 21:08:03 +00:00

17 lines
432 B
Plaintext

# https://www.elastic.co/guide/en/logstash/current/configuration.html
# https://www.elastic.co/guide/en/logstash/current/input-plugins.html
# https://www.elastic.co/guide/en/logstash/current/filter-plugins.html
# https://www.elastic.co/guide/en/logstash/current/output-plugins.html
input {
file {
type => "syslog"
path => ["/var/log/**/*.log"]
}
}
output {
stdout { codec => rubydebug }
}