diff options
-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) } |