26 lines
462 B
Python
26 lines
462 B
Python
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
|
|
class ClientMetrics(BaseModel):
|
|
"""ClientMetrics contains information regarding the state of the peer."""
|
|
|
|
rtc_frames_decoded: int
|
|
|
|
rtc_frames_dropped: int
|
|
|
|
rtc_frames_per_second: int
|
|
|
|
rtc_frames_received: int
|
|
|
|
rtc_freeze_count: int
|
|
|
|
rtc_jitter_sec: float
|
|
|
|
rtc_keyframes_decoded: int
|
|
|
|
rtc_total_freezes_duration_sec: float
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|