summaryrefslogtreecommitdiff
blob: 96781bd3327bfb5d67782467ccbafad36fc35ab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 {
        hosts => localhost
    }
}