Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Go GC metrics to admin endpoint default
Add Go `runtime/metrics` path `/gc/` to the default included metrics. This will add several new metrics and about 80 additional series per process: * `go_gc_cycles_automatic_gc_cycles_total` * `go_gc_cycles_forced_gc_cycles_total` * `go_gc_cycles_total_gc_cycles_total` * `go_gc_heap_allocs_by_size_bytes_bucket` * `go_gc_heap_allocs_by_size_bytes_count` * `go_gc_heap_allocs_by_size_bytes_sum` * `go_gc_heap_allocs_bytes_total` * `go_gc_heap_allocs_objects_total` * `go_gc_heap_frees_by_size_bytes_bucket` * `go_gc_heap_frees_by_size_bytes_count` * `go_gc_heap_frees_by_size_bytes_sum` * `go_gc_heap_frees_bytes_total` * `go_gc_heap_frees_objects_total` * `go_gc_heap_goal_bytes` * `go_gc_heap_objects_objects` * `go_gc_heap_tiny_allocs_objects_total` * `go_gc_limiter_last_enabled_gc_cycle` * `go_gc_pauses_seconds_bucket` * `go_gc_pauses_seconds_count` * `go_gc_pauses_seconds_sum` * `go_gc_stack_starting_size_bytes` Signed-off-by: SuperQ <[email protected]>
- Loading branch information