Package io.opentelemetry.api.metrics
Interface DoubleHistogramBuilder
public interface DoubleHistogramBuilder
Builder class for
DoubleHistogram.-
Method Summary
Modifier and TypeMethodDescriptionbuild()Builds and returns aDoubleHistogramwith the desired options.ofLongs()Sets the counter for recordinglongvalues.setDescription(String description) Sets the description for this instrument.Sets the unit of measure for this instrument.
-
Method Details
-
setDescription
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
-
setUnit
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
-
ofLongs
LongHistogramBuilder ofLongs()Sets the counter for recordinglongvalues. -
build
DoubleHistogram build()Builds and returns aDoubleHistogramwith the desired options.- Returns:
- a
DoubleHistogramwith the desired options.
-