Class: Console::Event::Metric

Inherits:
Generic
  • Object
show all
Defined in:
lib/console/event/metric.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Generic

#as_json, register

Constructor Details

#initialize(name, value, **tags) ⇒ Metric

Returns a new instance of Metric.



30
31
32
33
34
# File 'lib/console/event/metric.rb', line 30

def initialize(name, value, **tags)
  @name = name
  @value = value
  @tags = tags
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



36
37
38
# File 'lib/console/event/metric.rb', line 36

def name
  @name
end

#tagsObject (readonly)

Returns the value of attribute tags.



38
39
40
# File 'lib/console/event/metric.rb', line 38

def tags
  @tags
end

#valueObject (readonly)

Returns the value of attribute value.



37
38
39
# File 'lib/console/event/metric.rb', line 37

def value
  @value
end

Class Method Details

.[](**parameters) ⇒ Object



26
27
28
# File 'lib/console/event/metric.rb', line 26

def self.[](**parameters)
  parameters.map(&self.method(:new))
end

Instance Method Details

#format(output, terminal, verbose) ⇒ Object



44
45
46
# File 'lib/console/event/metric.rb', line 44

def format(output, terminal, verbose)
  output.puts "#{@name}=#{@value} #{@tags.inspect}"
end

#to_hObject



40
41
42
# File 'lib/console/event/metric.rb', line 40

def to_h
  {name: @name, value: @value, tags: @tags}
end