mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-23 14:42:28 +01:00
40 lines
953 B
Markdown
40 lines
953 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||
|
||
[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [getServerRam](./bitburner.ns.getserverram.md)
|
||
|
||
## NS.getServerRam() method
|
||
|
||
Returns an array with two elements that gives information about a server’s 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).
|
||
|
||
<b>Signature:</b>
|
||
|
||
```typescript
|
||
getServerRam(host: string): [number, number];
|
||
```
|
||
|
||
## Parameters
|
||
|
||
| Parameter | Type | Description |
|
||
| --- | --- | --- |
|
||
| host | string | Host or IP of target server. |
|
||
|
||
<b>Returns:</b>
|
||
|
||
\[number, number\]
|
||
|
||
Array with total and used memory on the specified server.
|
||
|
||
## Remarks
|
||
|
||
RAM cost: 0.1 GB
|
||
|
||
## Example
|
||
|
||
|
||
```ts
|
||
res = getServerRam("helios");
|
||
totalRam = res[0];
|
||
ramUsed = res[1];
|
||
```
|
||
|