bitburner-src/markdown/bitburner.ns.getserverram.md
Olivier Gagnon 49a545f00e many bugfix
2021-12-03 14:12:32 -05:00

45 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) &gt; [bitburner](./bitburner.md) &gt; [NS](./bitburner.ns.md) &gt; [getServerRam](./bitburner.ns.getserverram.md)
## NS.getServerRam() method
> Warning: This API is now obsolete.
>
> use getServerMaxRam / getServerUsedRam
>
<b>Signature:</b>
```typescript
getServerRam(host: string): [number, number];
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| host | string | Host of target server. |
<b>Returns:</b>
\[number, number\]
Array with total and used memory on the specified server.
## 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
```ts
res = getServerRam("helios");
totalRam = res[0];
ramUsed = res[1];
```