in src/EnterpriseSearch/Schema/JvmInfo.php [38:58]
public function __construct(
array $memory_pools,
MemoryUsage $memory_usage,
int $pid,
ThreadStats $threads,
JavaGcInfo $gc,
int $uptime,
string $vm_name,
string $vm_vendor,
string $vm_version,
) {
$this->memory_pools = $memory_pools;
$this->memory_usage = $memory_usage;
$this->pid = $pid;
$this->threads = $threads;
$this->gc = $gc;
$this->uptime = $uptime;
$this->vm_name = $vm_name;
$this->vm_vendor = $vm_vendor;
$this->vm_version = $vm_version;
}