class Metrics::Instruments::Instrument

Public Instance Methods

tag(key, value) click to toggle source
# File lib/ruby-metrics/instruments/instrument.rb, line 8
def tag(key, value)
  tags[key] = value
end
tags() click to toggle source
# File lib/ruby-metrics/instruments/instrument.rb, line 4
def tags
  @tags ||= {}
end