summaryrefslogtreecommitdiff
blob: adf29e1e133dabde349acc3c8ca826d7216762b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
input {
    stdin {
        type => "stdin"
    }

    file {
        type => "syslog"
        path => [ "/var/log/*.log", "/var/log/debug", "/var/log/messages", "/var/log/syslog" ]
    }
}

output {
    stdout {
        codec => rubydebug
    }

    elasticsearch {
    }
}