logstash-plugins / logstash-input-redis

Apache License 2.0
31 stars 69 forks source link

Use of wildcards in redis input keys #49

Open martinohansen opened 8 years ago

martinohansen commented 8 years ago

Yo. I cant use wildcards in the key field if data_type is list.

Is this by design for can it get implemented?

input { redis { host => "redis" port => "6379" data_type => "list" key => "logstash-*" } }

drobakowski commented 7 years ago

Any news on this? I also would appreciate to have this feature. With the redis command KEYS it is possible to determine all keys matching a pattern like for example logstash-* - see https://redis.io/commands/keys. I guess with this given result list it should be possible to feed the worker with values from the specific key lists, but I'm not familiar with programming logstash-plugins. Maybe someone familiar with this plugin could give some more details?