Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for Sorted Set (ZSET) in REDIS #83

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Commits on Jun 16, 2020

  1. This commit adds support for ZSET in REDIS with data_type 'sortedset'.

    Batch is supported, too.
    
    The commit adds the following options to the configuration:
    * **reverse_order *boolean*, default false, pop high score items first
    
    Usage example:
      input {
        redis {
    	host => "127.0.0.1"
    	port => 6379
    	data_type => "sortedset"
    	key => "syslog"
    	reverse_order => true
        }
      }
    
    Signed-off-by: tandara0 <[email protected]>
    tandara0 committed Jun 16, 2020
    Configuration menu
    Copy the full SHA
    f715c64 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2020

  1. change unit test time limit

    Signed-off-by: tandara0 <[email protected]>
    tandara0 committed Jun 17, 2020
    Configuration menu
    Copy the full SHA
    d57d32e View commit details
    Browse the repository at this point in the history