Sha256: fcbefb364a07e1a4ec0bffd969f52476d1cef474292615666528753826de2d3c
Contents?: true
Size: 235 Bytes
Versions: 9
Compression:
Stored size: 235 Bytes
Contents
module SimpleMetrics module DataPoint class Timing < Base def initialize(attributes) super(attributes) @type = 'ms' end def combine(dp) raise "Implement me!" end end end end
Version data entries
9 entries across 9 versions & 1 rubygems