summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-06-11 23:18:33 +0300
committerWolfy-J <[email protected]>2018-06-11 23:18:33 +0300
commit9769dce9755472b5c98cf9c123ce4f9e87fecd85 (patch)
tree9321666696b93e85dcd9c4f3bb98d9a10486ed69 /cmd
parent2edc79048d461adebf040b2ea4f1cec22d97dd0e (diff)
replace dead workers
Diffstat (limited to 'cmd')
-rw-r--r--cmd/rr/http/workers.go4
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)
}