Rand Stats

System::Stats::MEMUsage

github:ramiroencinas

System::Stats::MEMUsage

Build Status

Raku module - Provides Memory Usage statistics.

OS Supported:

Installing the module

zef update
zef install System::Stats::MEMUsage

Example Usage:

use v6;
use System::Stats::MEMUsage;    

my %mem = MEM_Usage();

say "Total: %mem<total> bytes";
say " Free: %mem<free> bytes";
say " Used: %mem<used> bytes";
say "Usage: %mem<usage-percent>%";