summaryrefslogtreecommitdiff
path: root/cmd/rr
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-06-14 14:30:39 +0300
committerWolfy-J <[email protected]>2018-06-14 14:30:39 +0300
commitf25603fc58dc53abd3616d028cc2a17ff3a3162f (patch)
tree42561d9b523fda5705aa7facda4ae2a95866e4eb /cmd/rr
parent8ab8c64413ded038e3c8816647209c3b961b3a35 (diff)
incorrect memory stats on macs (wtf apple), cookie value unescape
Diffstat (limited to 'cmd/rr')
-rw-r--r--cmd/rr/http/workers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/rr/http/workers.go b/cmd/rr/http/workers.go
index 728c415e..a70762af 100644
--- a/cmd/rr/http/workers.go
+++ b/cmd/rr/http/workers.go
@@ -163,5 +163,5 @@ func renderMemory(pid int) string {
return err.Error()
}
- return humanize.Bytes(i.VMS)
+ return humanize.Bytes(i.RSS)
}