It seems like LogStash Redis input plugin doesn't support Redis Streams
(Only Redis pubsub is supported ?),
is there way to read message from a stream of Redis Streams?
tried like below but did not work
input {
redis {
host => "localhost",
port => 6379
data_type => "list"
key => "my_stream"
}
}
Reference