class documentation

Histogram metric created by a metric meter.

Method record Record a value on the histogram.
Method with_additional_attributes Create a new histogram with the given attributes appended to the current set.
Property description Description for the metric if any.
Property name Name for the metric.
Property unit Unit for the metric if any.
@abstractmethod
def record(self, value: int, additional_attributes: Optional[MetricAttributes] = None): (source)

Record a value on the histogram.

Parameters
value:intA non-negative integer to record.
additional_attributes:Optional[MetricAttributes]Additional attributes to append to the current set.
Raises
ValueErrorValue is negative.
TypeErrorAttribute values are not the expected type.
@abstractmethod
def with_additional_attributes(self, additional_attributes: MetricAttributes) -> MetricHistogram: (source)

Create a new histogram with the given attributes appended to the current set.

Parameters
additional_attributes:MetricAttributesAdditional attributes to append to the current set.
Returns
MetricHistogramNew histogram.
Raises
TypeErrorAttribute values are not the expected type.