diff options
author | Wolfy-J <[email protected]> | 2018-06-14 14:30:39 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-14 14:30:39 +0300 |
commit | f25603fc58dc53abd3616d028cc2a17ff3a3162f (patch) | |
tree | 42561d9b523fda5705aa7facda4ae2a95866e4eb /cmd/rr/http | |
parent | 8ab8c64413ded038e3c8816647209c3b961b3a35 (diff) |
incorrect memory stats on macs (wtf apple), cookie value unescape
Diffstat (limited to 'cmd/rr/http')
-rw-r--r-- | cmd/rr/http/workers.go | 2 |
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) } |