mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
runtime,runtime/metrics: add metric for distribution of GC pauses
For #37112. Change-Id: Ibb0425c9c582ae3da3b2662d5bbe830d7df9079c Reviewed-on: https://go-review.googlesource.com/c/go/+/247047 Run-TryBot: Michael Knyszek <mknyszek@google.com> TryBot-Result: Go Bot <gobot@golang.org> Trust: Michael Knyszek <mknyszek@google.com> Reviewed-by: Michael Pratt <mpratt@google.com>
This commit is contained in:
parent
36c5edd8d9
commit
d39a89fd58
6 changed files with 54 additions and 0 deletions
|
|
@ -88,6 +88,11 @@ var allDesc = []Description{
|
|||
Description: "Number of objects, live or unswept, occupying heap memory.",
|
||||
Kind: KindUint64,
|
||||
},
|
||||
{
|
||||
Name: "/gc/pauses:seconds",
|
||||
Description: "Distribution individual GC-related stop-the-world pause latencies.",
|
||||
Kind: KindFloat64Histogram,
|
||||
},
|
||||
{
|
||||
Name: "/memory/classes/heap/free:bytes",
|
||||
Description: "Memory that is available for allocation, and may be returned to the underlying system.",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue