@lacunahub/lavaluna.js
    Preparing search index...

    Interface StatsOP

    A collection of statistics sent every minute.

    interface StatsOP {
        cpu: CPUStats;
        frameStats?: FrameStats;
        memory: MemoryStats;
        op: "stats";
        players: number;
        playingPlayers: number;
        uptime: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    The cpu stats of the node.

    frameStats?: FrameStats

    The frame stats of the node. null if the node has no players or when retrieved via /v4/stats

    memory: MemoryStats

    The memory stats of the node.

    op: "stats"
    players: number

    The amount of players connected to the node.

    playingPlayers: number

    The amount of players playing a track.

    uptime: number

    The uptime of the node in milliseconds.