mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-02 14:32:14 +01:00
adds service supervision with OpenRC's builtin supervise-daemon logstash/bin added to $PATH take ownership
17 lines
432 B
Plaintext
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 }
|
|
}
|
|
|