You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-admin/logstash-bin/files/agent.conf.sample

30 lines
409 B

input {
beats {
port => 5044
}
# may need root privileges
file {
type => "syslog"
path => [ "/var/log/*.log", "/var/log/debug", "/var/log/messages", "/var/log/syslog" ]
}
redis {
key => logstash
data_type => list
}
stdin {
type => "stdin"
}
}
output {
stdout {
codec => rubydebug
}
elasticsearch {
}
}