summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-06-11 23:16:41 +0300
committerWolfy-J <[email protected]>2018-06-11 23:16:41 +0300
commit2edc79048d461adebf040b2ea4f1cec22d97dd0e (patch)
tree516f35fb77d763fdd87896437aa9e80dd12cf200 /cmd
parent974f4e68a8e4a7a38fca15b05543663374d30549 (diff)
replace dead workers
Diffstat (limited to 'cmd')
-rw-r--r--cmd/rr/http/workers.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/rr/http/workers.go b/cmd/rr/http/workers.go
index d04e37fb..b7da0d71 100644
--- a/cmd/rr/http/workers.go
+++ b/cmd/rr/http/workers.go
@@ -163,5 +163,7 @@ func renderMemory(pid int) string {
return err.Error()
}
- return humanize.Bytes(i.RSS)
+ 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)
}