Skip to content

Statistics#

Statistics ABC's.

The statistic abstract classes.

Statistics #

Bases: abc.ABC

Statistics.

All of the Statistics information.

Lavalink Reference

players abstractmethod property #

players: int

The amount of players connected to the session.

playing_players abstractmethod property #

playing_players: int

The amount of players playing a track.

uptime abstractmethod property #

uptime: int

The uptime of the session in milliseconds.

memory abstractmethod property #

memory: Memory

The memory stats of the session.

cpu abstractmethod property #

cpu: Cpu

The CPU stats of the session.

frame_stats abstractmethod property #

frame_stats: FrameStatistics | None

The frame statistics of the session.

Memory #

Bases: abc.ABC

Statistics Memory.

All of the Statistics Memory information.

Lavalink Reference

free property #

free: int

The amount of free memory in bytes.

used property #

used: int

The amount of used memory in bytes.

allocated property #

allocated: int

The amount of allocated memory in bytes.

reservable property #

reservable: int

The amount of reservable memory in bytes.

Cpu #

Bases: abc.ABC

Statistics CPU.

All of the Statistics CPU information.

Lavalink Reference

cores property #

cores: int

The amount of cores the server has.

system_load property #

system_load: float

The system load of the server.

lavalink_load: float

The load of Lavalink on the server.

FrameStatistics #

Bases: abc.ABC

Statistics Frame Statistics.

All of the Statistics frame statistics information.

Lavalink Reference

sent property #

sent: int

The amount of frames sent to Discord.

nulled property #

nulled: int

The amount of frames that were nulled.

deficit property #

deficit: int

The difference between sent frames and the expected amount of frames.