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 with a given 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 lifetimes of each observed object. This does not include the lifetimes 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.