diff options
author | Wolfy-J <[email protected]> | 2018-06-11 23:18:33 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-11 23:18:33 +0300 |
commit | 9769dce9755472b5c98cf9c123ce4f9e87fecd85 (patch) | |
tree | 9321666696b93e85dcd9c4f3bb98d9a10486ed69 /cmd | |
parent | 2edc79048d461adebf040b2ea4f1cec22d97dd0e (diff) |
replace dead workers
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/rr/http/workers.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cmd/rr/http/workers.go b/cmd/rr/http/workers.go index b7da0d71..871d8c86 100644 --- a/cmd/rr/http/workers.go +++ b/cmd/rr/http/workers.go @@ -163,7 +163,5 @@ func renderMemory(pid int) string { return err.Error() } - return humanize.Bytes(i.RSS) + " " + humanize.Bytes(i.Locked) + - " " + humanize.Bytes(i.Data) + " " + humanize.Bytes(i.Stack) + " " + humanize.Bytes(i.Swap) + - " " + humanize.Bytes(i.VMS) + return humanize.Bytes(i.VMS) } |