-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
this replaces prometheus client_golang default collector with one that includes Go scheduler metrics
- Loading branch information
1 parent
dae4587
commit 21b85c7
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package runtime | ||
|
||
import ( | ||
"github.com/prometheus/client_golang/prometheus" | ||
"github.com/prometheus/client_golang/prometheus/collectors" | ||
) | ||
|
||
// prometheus client_golang by default registers a collector that collects all metrics, except scheduler metrics | ||
// this package unregisters the default collector and adds one that includes scheduler metrics | ||
// | ||
// in order to register this, the package must be imported anonymously | ||
func init() { | ||
prometheus.DefaultRegisterer.Unregister(collectors.NewGoCollector()) | ||
prometheus.MustRegister(collectors.NewGoCollector( | ||
collectors.WithGoCollectorRuntimeMetrics(collectors.MetricsAll), | ||
)) | ||
} |