Files
bitburner-src/markdown/bitburner.ns.getserverram.md
T
Olivier Gagnon 2b79871c02 doc
2021-11-03 00:27:21 -04:00

947 B
Raw Blame History

Home > bitburner > NS > getServerRam

NS.getServerRam() method

Returns an array with two elements that gives information about a servers memory (RAM). The first element in the array is the amount of RAM that the server has total (in GB). The second element in the array is the amount of RAM that is currently being used on the server (in GB).

Signature:

getServerRam(host: string): [number, number];

Parameters

Parameter Type Description
host string Host of target server.

Returns:

[number, number]

Array with total and used memory on the specified server.

Remarks

RAM cost: 0.1 GB

Example

res = getServerRam("helios");
totalRam = res[0];
ramUsed = res[1];