class documentation
class _ReplaySafeMetricHistogramTimedelta(temporalio.common.MetricHistogramTimedelta, _ReplaySafeMetricCommon[
Constructor: _ReplaySafeMetricHistogramTimedelta(underlying)
Undocumented
Method | record |
Record a value on the histogram. |
Inherited from _ReplaySafeMetricCommon
(via MetricHistogramTimedelta
):
Method | __init__ |
Undocumented |
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. |
Instance Variable | _underlying |
Undocumented |
def record(self, value:
timedelta
, additional_attributes: Optional[ temporalio.common.MetricAttributes]
= None):
(source)
¶
Record a value on the histogram.
Note, duration precision is millisecond.
Parameters | |
value:timedelta | A non-negative timedelta to record. |
additionalOptional[ | Additional attributes to append to the current set. |
Raises | |
ValueError | Value is negative. |
TypeError | Attribute values are not the expected type. |