mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
metrics: fix function comment
This commit is contained in:
parent
b6474e9f90
commit
89bb50d182
1 changed files with 3 additions and 3 deletions
|
|
@ -19,7 +19,7 @@ var (
|
||||||
gcStats debug.GCStats
|
gcStats debug.GCStats
|
||||||
)
|
)
|
||||||
|
|
||||||
// Capture new values for the Go garbage collector statistics exported in
|
// CaptureDebugGCStats capture new values for the Go garbage collector statistics exported in
|
||||||
// debug.GCStats. This is designed to be called as a goroutine.
|
// debug.GCStats. This is designed to be called as a goroutine.
|
||||||
func CaptureDebugGCStats(r Registry, d time.Duration) {
|
func CaptureDebugGCStats(r Registry, d time.Duration) {
|
||||||
for range time.Tick(d) {
|
for range time.Tick(d) {
|
||||||
|
|
@ -27,7 +27,7 @@ func CaptureDebugGCStats(r Registry, d time.Duration) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Capture new values for the Go garbage collector statistics exported in
|
// CaptureDebugGCStatsOnce capture new values for the Go garbage collector statistics exported in
|
||||||
// debug.GCStats. This is designed to be called in a background goroutine.
|
// debug.GCStats. This is designed to be called in a background goroutine.
|
||||||
// Giving a registry which has not been given to RegisterDebugGCStats will
|
// Giving a registry which has not been given to RegisterDebugGCStats will
|
||||||
// panic.
|
// panic.
|
||||||
|
|
@ -50,7 +50,7 @@ func CaptureDebugGCStatsOnce(r Registry) {
|
||||||
debugMetrics.GCStats.PauseTotal.Update(int64(gcStats.PauseTotal))
|
debugMetrics.GCStats.PauseTotal.Update(int64(gcStats.PauseTotal))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Register metrics for the Go garbage collector statistics exported in
|
// RegisterDebugGCStats register metrics for the Go garbage collector statistics exported in
|
||||||
// debug.GCStats. The metrics are named by their fully-qualified Go symbols,
|
// debug.GCStats. The metrics are named by their fully-qualified Go symbols,
|
||||||
// i.e. debug.GCStats.PauseTotal.
|
// i.e. debug.GCStats.PauseTotal.
|
||||||
func RegisterDebugGCStats(r Registry) {
|
func RegisterDebugGCStats(r Registry) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue