@@ -63,7 +63,7 @@ var memstatMetrics = []string{
63
63
}
64
64
65
65
func TestGoCollectorMarshalling (t * testing.T ) {
66
- reg := prometheus .NewRegistry ()
66
+ reg := prometheus .NewPedanticRegistry ()
67
67
reg .MustRegister (NewGoCollector (
68
68
WithGoCollectorRuntimeMetrics (GoRuntimeMetricsRule {
69
69
Matcher : regexp .MustCompile ("/.*" ),
@@ -80,7 +80,7 @@ func TestGoCollectorMarshalling(t *testing.T) {
80
80
}
81
81
82
82
func TestWithGoCollectorDefault (t * testing.T ) {
83
- reg := prometheus .NewRegistry ()
83
+ reg := prometheus .NewPedanticRegistry ()
84
84
reg .MustRegister (NewGoCollector ())
85
85
result , err := reg .Gather ()
86
86
if err != nil {
@@ -100,7 +100,7 @@ func TestWithGoCollectorDefault(t *testing.T) {
100
100
}
101
101
102
102
func TestWithGoCollectorMemStatsMetricsDisabled (t * testing.T ) {
103
- reg := prometheus .NewRegistry ()
103
+ reg := prometheus .NewPedanticRegistry ()
104
104
reg .MustRegister (NewGoCollector (
105
105
WithGoCollectorMemStatsMetricsDisabled (),
106
106
))
@@ -157,7 +157,7 @@ func TestGoCollectorAllowList(t *testing.T) {
157
157
},
158
158
} {
159
159
t .Run (test .name , func (t * testing.T ) {
160
- reg := prometheus .NewRegistry ()
160
+ reg := prometheus .NewPedanticRegistry ()
161
161
reg .MustRegister (NewGoCollector (
162
162
WithGoCollectorMemStatsMetricsDisabled (),
163
163
WithGoCollectorRuntimeMetrics (test .rules ... ),
@@ -219,7 +219,7 @@ func TestGoCollectorDenyList(t *testing.T) {
219
219
},
220
220
} {
221
221
t .Run (test .name , func (t * testing.T ) {
222
- reg := prometheus .NewRegistry ()
222
+ reg := prometheus .NewPedanticRegistry ()
223
223
reg .MustRegister (NewGoCollector (
224
224
WithGoCollectorMemStatsMetricsDisabled (),
225
225
WithoutGoCollectorRuntimeMetrics (test .matchers ... ),
@@ -242,7 +242,7 @@ func TestGoCollectorDenyList(t *testing.T) {
242
242
}
243
243
244
244
func ExampleGoCollector () {
245
- reg := prometheus .NewRegistry ()
245
+ reg := prometheus .NewPedanticRegistry ()
246
246
247
247
// Register the GoCollector with the default options. Only the base metrics, default runtime metrics and memstats are enabled.
248
248
reg .MustRegister (NewGoCollector ())
@@ -252,7 +252,7 @@ func ExampleGoCollector() {
252
252
}
253
253
254
254
func ExampleGoCollector_WithAdvancedGoMetrics () {
255
- reg := prometheus .NewRegistry ()
255
+ reg := prometheus .NewPedanticRegistry ()
256
256
257
257
// Enable Go metrics with pre-defined rules. Or your custom rules.
258
258
reg .MustRegister (
0 commit comments