Class: Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/marr/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



4
5
6
7
8
# File 'lib/marr/configuration.rb', line 4

def initialize
  @namespaces = []
  @trace_id_length = 8
  @custom_render = false
end

Instance Attribute Details

#custom_renderObject

Returns the value of attribute custom_render.



2
3
4
# File 'lib/marr/configuration.rb', line 2

def custom_render
  @custom_render
end

#namespacesObject

Returns the value of attribute namespaces.



2
3
4
# File 'lib/marr/configuration.rb', line 2

def namespaces
  @namespaces
end

#trace_id_lengthObject

Returns the value of attribute trace_id_length.



2
3
4
# File 'lib/marr/configuration.rb', line 2

def trace_id_length
  @trace_id_length
end