IceMX.Metrics¶
- class IceMX.Metrics(id: str = '', total: int = 0, current: int = 0, totalLifetime: int = 0, failures: int = 0)¶
Bases:
ValueThe base class for metrics. A metrics object represents a collection of measurements associated to a given a system.
- total¶
The total number of objects observed by this metrics. This includes the number of currently observed objects and the number of objects observed in the past.
- Type:
- totalLifetime¶
The sum of the lifetime of each observed objects. This does not include the lifetime of objects which are currently observed, only the objects observed in the past.
- Type:
Notes
The Slice compiler generated this dataclass from Slice class
::IceMX::Metrics.