Abstraction layer over Linux-specific APIs.
Returns free disk space of file or directory. Argument path
must
be a file or directory, for example, /
or .
. The function
calls df(1) internally and expects sizes in 1024K blocks.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | path |
File or directory. |
||
character(len=*), | intent(inout), | optional | :: | file_system |
File system path (device, ZFS pool). |
|
integer(kind=i8), | intent(out), | optional | :: | size |
Size [byte]. |
|
integer(kind=i8), | intent(out), | optional | :: | used |
Used space [byte]. |
|
integer(kind=i8), | intent(out), | optional | :: | available |
Available space [byte] |
|
integer, | intent(out), | optional | :: | capacity |
Capacity [%] |
|
character(len=*), | intent(inout), | optional | :: | mounted_on |
Mount point. |
Returns number of CPU cores from /proc/cpuinfo
(cpu cores
of
processor 0).
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(out) | :: | ncore |
Number of CPU cores. |
Returns CPU idle time of from /proc/stat
(cpu
):
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(out) | :: | idle |
CPU idle time [%]. |
Returns model name of first CPU from /proc/cpuinfo
(model name
of
processor 0), for instance:
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(inout) | :: | model |
Hardware model. |
Returns load averages from /proc/loadavg
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real, | intent(out), | optional | :: | avg1 |
Average, 1 min. |
|
real, | intent(out), | optional | :: | avg5 |
Average, 5 min. |
|
real, | intent(out), | optional | :: | avg15 |
Average, 15 min. |
Reads temperature of first CPU in °C from
/sys/class/thermal/thermal_zone0/temp
.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real, | intent(out) | :: | temperature |
Temperature [°C] |