class documentation
class MetricHistogramFloat(MetricCommon): (source)
Known subclasses: temporalio.common._NoopMetricHistogramFloat
, temporalio.runtime._MetricHistogramFloat
, temporalio.worker._workflow_instance._ReplaySafeMetricHistogramFloat
Histogram metric created by a metric meter.
Method | record |
Record a value on the histogram. |
Inherited from MetricCommon
:
Method | with |
Create a new metric 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:
def record(self, value:
float
, additional_attributes: Optional[ MetricAttributes]
= None):
(source)
¶
overridden in
temporalio.common._NoopMetricHistogramFloat
, temporalio.runtime._MetricHistogramFloat
, temporalio.worker._workflow_instance._ReplaySafeMetricHistogramFloat
Record a value on the histogram.
Parameters | |
value:float | A non-negative float to record. |
additionalOptional[ | Additional attributes to append to the current set. |
Raises | |
ValueError | Value is negative. |
TypeError | Attribute values are not the expected type. |