Logstash Module - Add redis output

This commit is contained in:
Mike Reeves
2018-04-19 13:30:31 -04:00
parent 656423cee9
commit a57f44a022
4 changed files with 29 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
output {
redis {
host => 'redis'
data_type => 'list'
key => 'logstash:redis'
congestion_interval => 1
congestion_threshold => 50000000
# batch_events => 500
}
}