Skip to content

ramiroencinas/System-Stats-MEMUsage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

System::Stats::MEMUsage

Build Status

Raku module - Provides Memory Usage statistics.

OS Supported:

  • GNU/Linux by /proc/meminfo
  • Win32 by Kernel32/GlobalMemoryStatusEx function Native call

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>%";

About

Raku module - Provides Memory Usage statistics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages