All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.rocketmq.shaded.io.opentelemetry.api.metrics.DoubleHistogramBuilder Maven / Gradle / Ivy

There is a newer version: 5.0.7
Show newest version
/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.apache.rocketmq.shaded.io.opentelemetry.api.metrics;

/** Builder class for {@link DoubleHistogram}. */
public interface DoubleHistogramBuilder {

  /**
   * Sets the description for this instrument.
   *
   * 

Description strings should follow the instrument description rules: * https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/api.md#instrument-description */ DoubleHistogramBuilder setDescription(String description); /** * Sets the unit of measure for this instrument. * *

Unit strings should follow the instrument unit rules: * https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/metrics/api.md#instrument-unit */ DoubleHistogramBuilder setUnit(String unit); /** Sets the counter for recording {@code long} values. */ LongHistogramBuilder ofLongs(); /** * Builds and returns a {@code DoubleHistogram} with the desired options. * * @return a {@code DoubleHistogram} with the desired options. */ DoubleHistogram build(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy