Sha256: 1b2587480d47aa11799213d82b8783fed294be0b87ad37c5b5e3189e31b52823
Contents?: true
Size: 802 Bytes
Versions: 1
Compression:
Stored size: 802 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 Counter. class Counter # Increment the Counter by a fixed amount. # # @param [numeric] increment The increment amount, 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 add(increment, attributes: nil); end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
opentelemetry-metrics-api-0.1.0 | lib/opentelemetry/metrics/instrument/counter.rb |