I am upgrading my ELK+Redis from a very old version to the latest one.
ES 1.6 to 7.4
LS 1.4 to 7.4
Redis 2.8 to 5.0
I freshly installed everything in a fresh machine. Things went smooth except one thing: logstash-filter-redis plugin
Here is my logstash conf file
input
{
redis {
host
port => 6380
data_type
key
}
}
filter {
grok {
match => [ "message", "" ]
}
redis {
host => ""
port => 6379
key => ""
}
output {
elasticsearch {
host => ""
index => ""
}
Here, the first redis:6380 inside input { } is being used to fetch logs (working as logstash input source)
while second redis:6379 is being called inside filter { } to get data associated with those logs.
I cannot see any logstash-filter-redis plugin at https://www.elastic.co/guide/en/logstash/current/filter-plugins.html
Can someone please help me with that?
Thanks