Memory

@Serializable
data class Memory(val free: Long, val used: Long, val allocated: Long, val reservable: Long)

Memory statistics of a node.

Constructors

Link copied to clipboard
constructor(free: Long, used: Long, allocated: Long, reservable: Long)

Properties

Link copied to clipboard

the amount of allocated memory to the Lavalink JVM (in bytes)

Link copied to clipboard
val free: Long

the amount of free memory in the Lavalink JVM (in bytes)

Link copied to clipboard

the amount of maximal memory the Lavalink JVM will attempt touse (in bytes)

Link copied to clipboard
val used: Long

the amount of used memory in the Lavalink JVM (in bytes)