Sha256: 527cce9ef7bd60ff9cbe8bd98345d5112a27bac23f1afd32b07434e234899bc9

Contents?: true

Size: 820 Bytes

Versions: 2

Compression:

Stored size: 820 Bytes

Contents

# frozen_string_literal: true

# Copyright The OpenTelemetry Authors
#
# SPDX-License-Identifier: Apache-2.0

module OpenTelemetry
  module Metrics
    module Instrument
      # No-op implementation of Histogram.
      class Histogram
        # Updates the statistics with the specified amount.
        #
        # @param [numeric] amount The amount of the Measurement, which MUST be a non-negative numeric value.
        # @param [Hash{String => String, Numeric, Boolean, Array<String, Numeric, Boolean>}] attributes
        #   Values must be non-nil and (array of) string, boolean or numeric type.
        #   Array values must not contain nil elements and all elements must be of
        #   the same basic type (string, numeric, boolean).
        def record(amount, attributes: {}); end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
opentelemetry-metrics-api-0.2.0 lib/opentelemetry/metrics/instrument/histogram.rb
opentelemetry-metrics-api-0.1.1 lib/opentelemetry/metrics/instrument/histogram.rb