Lists the Memory Information for the Current Machine

mem_info()

Value

A data.frame (tibble) with the two columns field and value. For most CPUs, there will be duplicated field:s.

Details

This function reads/queries /proc/meminfo on the current machine.

Examples

info <- mem_info()
print(info)
#> # A tibble: 58 × 2
#>    field                value
#>    <chr>                <dbl>
#>  1 memtotal       16373460000
#>  2 memfree        10552256000
#>  3 memavailable   14911028000
#>  4 buffers          138724000
#>  5 cached          4405152000
#>  6 swapcached               0
#>  7 active           908148000
#>  8 inactive        4083552000
#>  9 active(anon)     506812000
#> 10 inactive(anon)           0
#> # ℹ 48 more rows