Sha256: 1e5a180f233678ea4430640d55da5ea9f000a29de39fb2508ba585c4ccfa27d9
Contents?: true
Size: 1.37 KB
Versions: 1
Compression:
Stored size: 1.37 KB
Contents
module Fluent class RedisOutput < BufferedOutput Fluent::Plugin.register_output('redis', self) attr_reader :host, :port, :db_number, :redis def initialize super require 'redis' require 'msgpack' end def configure(conf) super @host = conf.has_key?('host') ? conf['host'] : 'localhost' @port = conf.has_key?('port') ? conf['port'].to_i : 6379 @db_number = conf.has_key?('db_number') ? conf['db_number'].to_i : nil if conf.has_key?('namespace') $log.warn "namespace option has been removed from fluent-plugin-redis 0.1.3. Please add or remove the namespace '#{conf['namespace']}' manually." end end def start super @redis = Redis.new(:host => @host, :port => @port, :thread_safe => true, :db => @db_number) end def shutdown @redis.quit end def format(tag, time, record) identifier = [tag, time].join(".") [identifier, record].to_msgpack end def write(chunk) @redis.pipelined { chunk.open { |io| begin MessagePack::Unpacker.new(io).each.each { |record| @redis.rpush record[1]["url"], record[1].tap{|x| x.delete("url")} } rescue EOFError # EOFError always occured when reached end of chunk. end } } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluent-plugin-redis-url-tracker-0.2.1 | lib/fluent/plugin/out_redis.rb |