class Memory::Leak::Cluster

def as_json(...)

@returns [Hash] A serializable representation of the cluster.
def as_json(...)
	{
		total_size: @total_size,
		total_size_limit: @total_size_limit,
		processes: @processes.transform_values(&:as_json),
	}
end