Sha256: 9858cc6b5509ce6045bbbddd776f3dacc0fcf84ea3e93050e9dfb45ef2b216f7
Contents?: true
Size: 335 Bytes
Versions: 6
Compression:
Stored size: 335 Bytes
Contents
#encoding: utf-8 java_import org.logstash.instrument.metrics.counter.LongCounter module LogStash module Instrument module MetricType class Counter < LongCounter def initialize(namespaces, key) super(namespaces, key.to_s) end def execute(action, value = 1) send(action, value) end end end; end; end
Version data entries
6 entries across 6 versions & 1 rubygems