class documentation
class _NoopMetricGauge(_NoopMetric, MetricGauge): (source)
Constructor: _NoopMetricGauge(name, description, unit)
Undocumented
Method | set |
Set a value on the gauge. |
Method | with |
Create a new gauge with the given attributes appended to the current set. |
Inherited from _NoopMetric
:
Method | __init__ |
Undocumented |
Property | description |
Undocumented |
Property | name |
Undocumented |
Property | unit |
Undocumented |
Instance Variable | _description |
Undocumented |
Instance Variable | _name |
Undocumented |
Instance Variable | _unit |
Undocumented |
overrides
temporalio.common.MetricGauge.set
Set a value on the gauge.
Parameters | |
value:int | A non-negative integer to set. |
additionalOptional[ | Additional attributes to append to the current set. |
Raises | |
ValueError | Value is negative. |
TypeError | Attribute values are not the expected type. |
def with_additional_attributes(self, additional_attributes:
MetricAttributes
) -> MetricGauge
:
(source)
¶
Create a new gauge with the given attributes appended to the current set.
Parameters | |
additionalMetricAttributes | Additional attributes to append to the current set. |
Returns | |
MetricGauge | New gauge. |
Raises | |
TypeError | Attribute values are not the expected type. |