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: 55 × 2
#>    field                value
#>    <chr>                <dbl>
#>  1 memtotal       16379576000
#>  2 memfree        12354320000
#>  3 memavailable   15260368000
#>  4 buffers          105268000
#>  5 cached          3028976000
#>  6 swapcached               0
#>  7 active           917716000
#>  8 inactive        2636656000
#>  9 active(anon)     484244000
#> 10 inactive(anon)           0
#> # ℹ 45 more rows