blob: ddd5ada667d7f3afd460f123852babf44d0dad5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# 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 }
}
|