heap bytes released total

This commit is contained in:
Kevin Pike 2015-10-07 11:21:49 -07:00
parent 1eb8d032a8
commit db58b27d95
1 changed files with 2 additions and 2 deletions

View File

@ -111,8 +111,8 @@ func NewGoCollector() *goCollector {
valType: GaugeValue,
}, {
desc: NewDesc(
memstatNamespace("heap_released_bytes"),
"Number of bytes in heap released to OS.",
memstatNamespace("heap_released_bytes_total"),
"Total number of heap bytes released to OS.",
nil, nil,
),
eval: func(ms *runtime.MemStats) float64 { return float64(ms.HeapReleased) },