Class: LogStasher::Device::Redis

Inherits:
Object
  • Object
show all
Defined in:
lib/logstasher/device/redis.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Redis

Returns a new instance of Redis.



9
10
11
12
13
# File 'lib/logstasher/device/redis.rb', line 9

def initialize(options = {})
  @options = default_options.merge(options)
  validate_options
  configure_redis
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



7
8
9
# File 'lib/logstasher/device/redis.rb', line 7

def options
  @options
end

#redisObject (readonly)

Returns the value of attribute redis.



7
8
9
# File 'lib/logstasher/device/redis.rb', line 7

def redis
  @redis
end

Instance Method Details

#closeObject



43
44
45
# File 'lib/logstasher/device/redis.rb', line 43

def close
  redis.quit
end

#data_typeObject



15
16
17
# File 'lib/logstasher/device/redis.rb', line 15

def data_type
  options[:data_type]
end

#keyObject



19
20
21
# File 'lib/logstasher/device/redis.rb', line 19

def key
  options[:key]
end

#redis_optionsObject



23
24
25
26
27
28
29
30
# File 'lib/logstasher/device/redis.rb', line 23

def redis_options
  unless @redis_options
    default_keys = default_options.keys
    @redis_options = options.select { |k, v| !default_keys.include?(k) }
  end

  @redis_options
end

#write(log) ⇒ Object



32
33
34
35
36
37
38
39
40
41
# File 'lib/logstasher/device/redis.rb', line 32

def write(log)
  case data_type
  when 'list'
    redis.rpush(key, log)
  when 'channel'
    redis.publish(key, log)
  else
    fail "Unknown data type #{data_type}"
  end
end