This commit is contained in:
insanity 2017-10-23 18:10:34 +09:00
parent 3ef6659f46
commit 2e31ae10eb

View File

@ -32,12 +32,10 @@ func (ps *ProcessStat) Parse(r io.Reader) (*[]ProcessStat, error) {
user: parts[0],
pid: parts[1],
size: parts[2],
pcpu: parts[3],
pmem: parts[4],
pcpu: parts[3],
pmem: parts[4],
cmd: parts[5],
})
}
return &psStats, scanner.Err()
}