runtimepy.metrics.channel
index
/home/vkottler/src/vkottler/workspace/runtimepy/runtimepy/metrics/channel.py

A module implementing a channel-metrics interface.

 
Classes
       
builtins.object
ChannelMetrics

 
class ChannelMetrics(builtins.object)
    ChannelMetrics() -> None
 
Metrics for a network channel.
 
  Methods defined here:
__init__(self) -> None
Initialize this instance.
__str__(self) -> str
Get metrics as a string.
increment(self, count: int, time_ns: int = None) -> None
Update tracking.
poll(self, time_ns: int = None) -> None
Poll kbps tracking.
reset(self) -> None
Reset metrics.
update(self, other: 'ChannelMetrics') -> None
Update values in this instance from values in another instance.

Data descriptors defined here:
__dict__
dictionary for instance variables
__weakref__
list of weak references to the object

 
Data
        METRICS_DEPTH = 50