()
| 138 | |
| 139 | /** Total physical RAM in MiB. */ |
| 140 | export function getSystemTotalMb(): number { |
| 141 | const hostTotalMb = Math.floor(totalmem() / BYTES_PER_MIB); |
| 142 | const cgroupLimitMb = getCgroupLimitMb(); |
| 143 | |
| 144 | return cgroupLimitMb === null ? hostTotalMb : Math.min(hostTotalMb, cgroupLimitMb); |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * Total-RAM ceiling (MiB) at or below which the host is treated as |
no test coverage detected