Class: Yabeda::Gauge
Overview
Arbitrary value, can be changed in both sides
Instance Attribute Summary
Attributes inherited from Metric
#aggregation, #comment, #group, #name, #per, #tags, #unit
Instance Method Summary collapse
Methods inherited from Metric
Constructor Details
This class inherits a constructor from Yabeda::Metric
Instance Method Details
#decrement(tags, by: 1) ⇒ Object
19 20 21 |
# File 'lib/yabeda/gauge.rb', line 19 def decrement(, by: 1) set(, get().to_i - by) end |
#increment(tags, by: 1) ⇒ Object
15 16 17 |
# File 'lib/yabeda/gauge.rb', line 15 def increment(, by: 1) set(, get().to_i + by) end |
#set(tags, value) ⇒ Object
6 7 8 9 10 11 12 13 |
# File 'lib/yabeda/gauge.rb', line 6 def set(, value) = ::Yabeda::Tags.build() values[] = value ::Yabeda.adapters.each do |_, adapter| adapter.perform_gauge_set!(self, , value) end value end |