Sha256: 44ccc36acc74f21a92c0adf9be2fa31ff8a4f1ce315cf00e21564c9b14612b2a
Contents?: true
Size: 265 Bytes
Versions: 35
Compression:
Stored size: 265 Bytes
Contents
# frozen_string_literal: true module Datadog module Core module Metrics Metric = Struct.new(:type, :name, :value, :options) do def initialize(*args) super self.options = options || {} end end end end end
Version data entries
35 entries across 35 versions & 2 rubygems