class ElasticLogger::Configuration

Attributes

host[RW]
path[RW]
prefix[RW]
types_file[RW]

Public Class Methods

new() click to toggle source
# File lib/elastic-logger/configuration.rb, line 5
def initialize
  @host = 'localhost:9200'
  @types_file = 'config/elastic_log_types.yml'
  @path = 'log'
  @prefix = ''
end