Skip to content

Commit 7eb9d11

Browse files
bwplotkakakkoyun
authored andcommitted
gocollector: Reverted client_golang v1.12 addition of runtime/metrics metrics by default. (#1033)
Fixes #967 Signed-off-by: Bartlomiej Plotka <[email protected]>
1 parent d498b3c commit 7eb9d11

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Unreleased
2+
3+
* [CHANGE] Minimum required Go version is now 1.16.
4+
* [CHANGE] Added `collectors.WithGoCollections` that allows to choose what collection of Go runtime metrics user wants: Equivalent of [`MemStats` structure](https://pkg.go.dev/runtime#MemStats) configured using `GoRuntimeMemStatsCollection`, new based on dedicated [runtime/metrics](https://pkg.go.dev/runtime/metrics) metrics represented by `GoRuntimeMetricsCollection` option, or both by specifying `GoRuntimeMemStatsCollection | GoRuntimeMetricsCollection` flag.
5+
* [CHANGE] :warning: Change in `collectors.NewGoCollector` metrics: Reverting addition of new ~80 runtime metrics by default. You can enable this back with `GoRuntimeMetricsCollection` option or `GoRuntimeMemStatsCollection | GoRuntimeMetricsCollection` for smooth transition.
6+
17
## 1.12.1 / 2022-01-29
28

39
* [BUGFIX] Make the Go 1.17 collector concurrency-safe #969

prometheus/collectors/go_collector_latest.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ const (
7070
// WithGoCollections(GoRuntimeMemStatsCollection | GoRuntimeMetricsCollection) means both GoRuntimeMemStatsCollection
7171
// metrics and GoRuntimeMetricsCollection will be exposed.
7272
//
73-
// Use WithGoCollections(GoRuntimeMemStatsCollection) to have Go collector working in
74-
// the compatibility mode with client_golang pre v1.12 (move to runtime/metrics).
73+
// The current default is GoRuntimeMemStatsCollection, so the compatibility mode with
74+
// client_golang pre v1.12 (move to runtime/metrics).
7575
func WithGoCollections(flags uint32) goOption {
7676
return func(o *goOptions) {
7777
o.EnabledCollections = flags

prometheus/go_collector_latest.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ func (c GoCollectorOptions) isEnabled(flag uint32) bool {
132132
return c.EnabledCollections&flag != 0
133133
}
134134

135-
const defaultGoCollections = goRuntimeMemStatsCollection | goRuntimeMetricsCollection
135+
const defaultGoCollections = goRuntimeMemStatsCollection
136136

137137
// NewGoCollector is the obsolete version of collectors.NewGoCollector.
138138
// See there for documentation.

prometheus/go_collector_latest_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ func TestGoCollector(t *testing.T) {
117117
var sink interface{}
118118

119119
func TestBatchHistogram(t *testing.T) {
120-
goMetrics := collectGoMetrics(t, defaultGoCollections)
120+
goMetrics := collectGoMetrics(t, goRuntimeMetricsCollection)
121121

122122
var mhist Metric
123123
for _, m := range goMetrics {

0 commit comments

Comments
 (0)