mirror of https://github.com/mikaku/Monitorix.git
fixed a bug that prevented counting the SReclaimable value #204
This commit is contained in:
parent
207c595924
commit
9d26e28f90
|
@ -232,7 +232,7 @@ sub system_update {
|
||||||
}
|
}
|
||||||
if(/^Inactive:\s+(\d+) kB$/) {
|
if(/^Inactive:\s+(\d+) kB$/) {
|
||||||
$minac = $1;
|
$minac = $1;
|
||||||
last;
|
next;
|
||||||
}
|
}
|
||||||
if(/^SReclaimable:\s+(\d+) kB$/) {
|
if(/^SReclaimable:\s+(\d+) kB$/) {
|
||||||
$srecl = $1;
|
$srecl = $1;
|
||||||
|
|
Loading…
Reference in New Issue