File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ func ExampleNewCounterVecT_multiple_labels_manual() {
37
37
}
38
38
39
39
c := promsafe .NewCounterVecT (prometheus.CounterOpts {
40
- Name : "items_counted " ,
40
+ Name : "items_counted_detailed " ,
41
41
}, & MyCounterLabels {})
42
42
43
43
// Manually register the counter
@@ -62,7 +62,7 @@ func ExampleNewCounterVecT_promauto_migrated() {
62
62
var myReg = prometheus .NewRegistry ()
63
63
64
64
counterOpts := prometheus.CounterOpts {
65
- Name : "items_counted " ,
65
+ Name : "items_counted_detailed_auto " ,
66
66
}
67
67
68
68
// Old unsafe code
@@ -93,7 +93,7 @@ func ExampleNewCounterVecT_promauto_global_migrated() {
93
93
promsafe .SetupGlobalPromauto ()
94
94
95
95
counterOpts := prometheus.CounterOpts {
96
- Name : "items_counted " ,
96
+ Name : "items_counted_detailed_auto_global " ,
97
97
}
98
98
99
99
// Old code:
You can’t perform that action at this time.
0 commit comments