class documentation
class _MetricGaugeFloat(temporalio.common.MetricGaugeFloat, _MetricCommon[
Constructor: _MetricGaugeFloat(name, description, unit, core_metric, ...)
Undocumented
Method | set |
Set a value on the gauge. |
Inherited from _MetricCommon
(via MetricGaugeFloat
):
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 | _core |
Undocumented |
Instance Variable | _core |
Undocumented |
Instance Variable | _description |
Undocumented |
Instance Variable | _name |
Undocumented |
Instance Variable | _unit |
Undocumented |
def set(self, value:
float
, additional_attributes: Optional[ temporalio.common.MetricAttributes]
= None):
(source)
¶
overrides
temporalio.common.MetricGaugeFloat.set
Set a value on the gauge.
Parameters | |
value:float | A non-negative float to set. |
additionalOptional[ | Additional attributes to append to the current set. |
Raises | |
ValueError | Value is negative. |
TypeError | Attribute values are not the expected type. |