bitburner-src/markdown/bitburner.ns.getserverram.md
omuretsu 06a985bdf8 Revert "Remove markdown from git tracking (#139)"
This reverts commit bbb6e3f309935aebac74ddb1fbeec12dfb7540b1.
2022-10-21 11:16:00 -04:00

1.1 KiB
Raw Blame History

Home > bitburner > NS > getServerRam

NS.getServerRam() method

Warning: This API is now obsolete.

use getServerMaxRam / getServerUsedRam

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, in GB.

Remarks

RAM cost: 0.1 GB

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).

Example 1

// NS1:
var serverRam = getServerRam("helios");
var totalRam = serverRam[0];
var ramUsed = serverRam[1];

Example 2

// NS2:
const [totalRam, ramUsed] = ns.getServerRam("helios");