Skip to content

Commit d498b3c

Browse files
bwplotkakakkoyun
authored andcommitted
gocollector: Added options to Go Collector for changing the (#1031)
* Renamed files. Signed-off-by: Bartlomiej Plotka <[email protected]> * gocollector: Added options to Go Collector for diffetent collections. Fixes #983 Also: * fixed TestMemStatsEquivalence, it was noop before (: * Removed gc_cpu_fraction metric completely, since it's not working completely for Go1.17+ Signed-off-by: Bartlomiej Plotka <[email protected]>
1 parent 585540a commit d498b3c

7 files changed

+396
-159
lines changed

prometheus/collectors/collectors.go

+24
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,27 @@
1414
// Package collectors provides implementations of prometheus.Collector to
1515
// conveniently collect process and Go-related metrics.
1616
package collectors
17+
18+
import "github.com/prometheus/client_golang/prometheus"
19+
20+
// NewBuildInfoCollector returns a collector collecting a single metric
21+
// "go_build_info" with the constant value 1 and three labels "path", "version",
22+
// and "checksum". Their label values contain the main module path, version, and
23+
// checksum, respectively. The labels will only have meaningful values if the
24+
// binary is built with Go module support and from source code retrieved from
25+
// the source repository (rather than the local file system). This is usually
26+
// accomplished by building from outside of GOPATH, specifying the full address
27+
// of the main package, e.g. "GO111MODULE=on go run
28+
// github.com/prometheus/client_golang/examples/random". If built without Go
29+
// module support, all label values will be "unknown". If built with Go module
30+
// support but using the source code from the local file system, the "path" will
31+
// be set appropriately, but "checksum" will be empty and "version" will be
32+
// "(devel)".
33+
//
34+
// This collector uses only the build information for the main module. See
35+
// https://github.com/povilasv/prommod for an example of a collector for the
36+
// module dependencies.
37+
func NewBuildInfoCollector() prometheus.Collector {
38+
//nolint:staticcheck // Ignore SA1019 until v2.
39+
return prometheus.NewBuildInfoCollector()
40+
}

prometheus/collectors/go_collector.go prometheus/collectors/go_collector_go116.go

+3-23
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@
1111
// See the License for the specific language governing permissions and
1212
// limitations under the License.
1313

14+
//go:build !go1.17
15+
// +build !go1.17
16+
1417
package collectors
1518

1619
import "github.com/prometheus/client_golang/prometheus"
@@ -42,28 +45,5 @@ import "github.com/prometheus/client_golang/prometheus"
4245
// NOTE: The problem is solved in Go 1.15, see
4346
// https://github.com/golang/go/issues/19812 for the related Go issue.
4447
func NewGoCollector() prometheus.Collector {
45-
//nolint:staticcheck // Ignore SA1019 until v2.
4648
return prometheus.NewGoCollector()
4749
}
48-
49-
// NewBuildInfoCollector returns a collector collecting a single metric
50-
// "go_build_info" with the constant value 1 and three labels "path", "version",
51-
// and "checksum". Their label values contain the main module path, version, and
52-
// checksum, respectively. The labels will only have meaningful values if the
53-
// binary is built with Go module support and from source code retrieved from
54-
// the source repository (rather than the local file system). This is usually
55-
// accomplished by building from outside of GOPATH, specifying the full address
56-
// of the main package, e.g. "GO111MODULE=on go run
57-
// github.com/prometheus/client_golang/examples/random". If built without Go
58-
// module support, all label values will be "unknown". If built with Go module
59-
// support but using the source code from the local file system, the "path" will
60-
// be set appropriately, but "checksum" will be empty and "version" will be
61-
// "(devel)".
62-
//
63-
// This collector uses only the build information for the main module. See
64-
// https://github.com/povilasv/prommod for an example of a collector for the
65-
// module dependencies.
66-
func NewBuildInfoCollector() prometheus.Collector {
67-
//nolint:staticcheck // Ignore SA1019 until v2.
68-
return prometheus.NewBuildInfoCollector()
69-
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
// Copyright 2021 The Prometheus Authors
2+
// Licensed under the Apache License, Version 2.0 (the "License");
3+
// you may not use this file except in compliance with the License.
4+
// You may obtain a copy of the License at
5+
//
6+
// http://www.apache.org/licenses/LICENSE-2.0
7+
//
8+
// Unless required by applicable law or agreed to in writing, software
9+
// distributed under the License is distributed on an "AS IS" BASIS,
10+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
// See the License for the specific language governing permissions and
12+
// limitations under the License.
13+
14+
//go:build go1.17
15+
// +build go1.17
16+
17+
package collectors
18+
19+
import "github.com/prometheus/client_golang/prometheus"
20+
21+
//nolint:staticcheck // Ignore SA1019 until v2.
22+
type goOptions = prometheus.GoCollectorOptions
23+
type goOption func(o *goOptions)
24+
25+
type GoCollectionOption uint32
26+
27+
const (
28+
// GoRuntimeMemStatsCollection represents the metrics represented by runtime.MemStats structure such as
29+
// go_memstats_alloc_bytes
30+
// go_memstats_alloc_bytes_total
31+
// go_memstats_sys_bytes
32+
// go_memstats_lookups_total
33+
// go_memstats_mallocs_total
34+
// go_memstats_frees_total
35+
// go_memstats_heap_alloc_bytes
36+
// go_memstats_heap_sys_bytes
37+
// go_memstats_heap_idle_bytes
38+
// go_memstats_heap_inuse_bytes
39+
// go_memstats_heap_released_bytes
40+
// go_memstats_heap_objects
41+
// go_memstats_stack_inuse_bytes
42+
// go_memstats_stack_sys_bytes
43+
// go_memstats_mspan_inuse_bytes
44+
// go_memstats_mspan_sys_bytes
45+
// go_memstats_mcache_inuse_bytes
46+
// go_memstats_mcache_sys_bytes
47+
// go_memstats_buck_hash_sys_bytes
48+
// go_memstats_gc_sys_bytes
49+
// go_memstats_other_sys_bytes
50+
// go_memstats_next_gc_bytes
51+
// so the metrics known from pre client_golang v1.12.0, except skipped go_memstats_gc_cpu_fraction (see
52+
// https://github.com/prometheus/client_golang/issues/842#issuecomment-861812034 for explanation.
53+
//
54+
// NOTE that this mode represents runtime.MemStats statistics, but they are
55+
// actually implemented using new runtime/metrics package.
56+
// Deprecated: Use GoRuntimeMetricsCollection instead going forward.
57+
GoRuntimeMemStatsCollection GoCollectionOption = 1 << iota
58+
// GoRuntimeMetricsCollection is the new set of metrics represented by runtime/metrics package and follows
59+
// consistent naming. The exposed metric set depends on Go version, but it is controlled against
60+
// unexpected cardinality. This set has overlapping information with GoRuntimeMemStatsCollection, just with
61+
// new names. GoRuntimeMetricsCollection is what is recommended for using going forward.
62+
GoRuntimeMetricsCollection
63+
)
64+
65+
// WithGoCollections allows enabling different collections for Go collector on top of base metrics
66+
// like go_goroutines, go_threads, go_gc_duration_seconds, go_memstats_last_gc_time_seconds, go_info.
67+
//
68+
// Check GoRuntimeMemStatsCollection and GoRuntimeMetricsCollection for more details. You can use none,
69+
// one or more collections at once. For example:
70+
// WithGoCollections(GoRuntimeMemStatsCollection | GoRuntimeMetricsCollection) means both GoRuntimeMemStatsCollection
71+
// metrics and GoRuntimeMetricsCollection will be exposed.
72+
//
73+
// Use WithGoCollections(GoRuntimeMemStatsCollection) to have Go collector working in
74+
// the compatibility mode with client_golang pre v1.12 (move to runtime/metrics).
75+
func WithGoCollections(flags uint32) goOption {
76+
return func(o *goOptions) {
77+
o.EnabledCollections = flags
78+
}
79+
}
80+
81+
// NewGoCollector returns a collector that exports metrics about the current Go
82+
// process using debug.GCStats using runtime/metrics.
83+
func NewGoCollector(opts ...goOption) prometheus.Collector {
84+
//nolint:staticcheck // Ignore SA1019 until v2.
85+
promPkgOpts := make([]func(o *prometheus.GoCollectorOptions), len(opts))
86+
for i, opt := range opts {
87+
promPkgOpts[i] = opt
88+
}
89+
//nolint:staticcheck // Ignore SA1019 until v2.
90+
return prometheus.NewGoCollector(promPkgOpts...)
91+
}

prometheus/go_collector.go

+1-9
Original file line numberDiff line numberDiff line change
@@ -197,14 +197,6 @@ func goRuntimeMemStats() memStatsMetrics {
197197
),
198198
eval: func(ms *runtime.MemStats) float64 { return float64(ms.NextGC) },
199199
valType: GaugeValue,
200-
}, {
201-
desc: NewDesc(
202-
memstatNamespace("gc_cpu_fraction"),
203-
"The fraction of this program's available CPU time used by the GC since the program started.",
204-
nil, nil,
205-
),
206-
eval: func(ms *runtime.MemStats) float64 { return ms.GCCPUFraction },
207-
valType: GaugeValue,
208200
},
209201
}
210202
}
@@ -268,7 +260,6 @@ func (c *baseGoCollector) Collect(ch chan<- Metric) {
268260
quantiles[0.0] = stats.PauseQuantiles[0].Seconds()
269261
ch <- MustNewConstSummary(c.gcDesc, uint64(stats.NumGC), stats.PauseTotal.Seconds(), quantiles)
270262
ch <- MustNewConstMetric(c.gcLastTimeDesc, GaugeValue, float64(stats.LastGC.UnixNano())/1e9)
271-
272263
ch <- MustNewConstMetric(c.goInfoDesc, GaugeValue, 1)
273264
}
274265

@@ -278,6 +269,7 @@ func memstatNamespace(s string) string {
278269

279270
// memStatsMetrics provide description, evaluator, runtime/metrics name, and
280271
// value type for memstat metrics.
272+
// TODO(bwplotka): Remove with end Go 1.16 EOL and replace with runtime/metrics.Description
281273
type memStatsMetrics []struct {
282274
desc *Desc
283275
eval func(*runtime.MemStats) float64

prometheus/go_collector_go116.go

+16-1
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,28 @@ type goCollector struct {
4040
//
4141
// Deprecated: Use collectors.NewGoCollector instead.
4242
func NewGoCollector() Collector {
43+
msMetrics := goRuntimeMemStats()
44+
msMetrics = append(msMetrics, struct {
45+
desc *Desc
46+
eval func(*runtime.MemStats) float64
47+
valType ValueType
48+
}{
49+
// This metric is omitted in Go1.17+, see https://github.com/prometheus/client_golang/issues/842#issuecomment-861812034
50+
desc: NewDesc(
51+
memstatNamespace("gc_cpu_fraction"),
52+
"The fraction of this program's available CPU time used by the GC since the program started.",
53+
nil, nil,
54+
),
55+
eval: func(ms *runtime.MemStats) float64 { return ms.GCCPUFraction },
56+
valType: GaugeValue,
57+
})
4358
return &goCollector{
4459
base: newBaseGoCollector(),
4560
msLast: &runtime.MemStats{},
4661
msRead: runtime.ReadMemStats,
4762
msMaxWait: time.Second,
4863
msMaxAge: 5 * time.Minute,
49-
msMetrics: goRuntimeMemStats(),
64+
msMetrics: msMetrics,
5065
}
5166
}
5267

0 commit comments

Comments
 (0)