diff options
Diffstat (limited to 'cmd/rr/http/workers.go')
-rw-r--r-- | cmd/rr/http/workers.go | 4 |
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) } |