Class: HealthMonitor::Providers::Redis::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/health_monitor/providers/redis.rb

Constant Summary collapse

DEFAULT_URL =
nil

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



15
16
17
# File 'lib/health_monitor/providers/redis.rb', line 15

def initialize
  @url = DEFAULT_URL
end

Instance Attribute Details

#connectionObject

Returns the value of attribute connection.



13
14
15
# File 'lib/health_monitor/providers/redis.rb', line 13

def connection
  @connection
end

#max_used_memoryObject

Returns the value of attribute max_used_memory.



13
14
15
# File 'lib/health_monitor/providers/redis.rb', line 13

def max_used_memory
  @max_used_memory
end

#urlObject

Returns the value of attribute url.



13
14
15
# File 'lib/health_monitor/providers/redis.rb', line 13

def url
  @url
end