You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: implementations/micrometer-registry-prometheus/src/main/java/io/micrometer/prometheusmetrics/PrometheusMeterRegistry.java
Copy file name to clipboardExpand all lines: implementations/micrometer-registry-prometheus/src/main/java/io/micrometer/prometheusmetrics/PrometheusNamingConvention.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -45,7 +45,7 @@ public PrometheusNamingConvention(String timerSuffix) {
Copy file name to clipboardExpand all lines: implementations/micrometer-registry-prometheus/src/test/java/io/micrometer/prometheusmetrics/PrometheusMeterRegistryTest.java
"Prometheus requires that all meters with the same name have the same set of tag keys. There is already an existing meter named 'my_counter' containing tag keys []. The meter you are attempting to register has keys [test_k2].");
"Prometheus requires that all meters with the same name have the same set of tag keys.");
88
+
.hasMessage(
89
+
"Prometheus requires that all meters with the same name have the same set of tag keys. There is already an existing meter named 'my_counter' containing tag keys []. The meter you are attempting to register has keys [test_k3].");
"Prometheus requires that all meters with the same name have the same set of tag keys.");
103
+
.hasMessage(
104
+
"Prometheus requires that all meters with the same name have the same set of tag keys. There is already an existing meter named 'my_counter' containing tag keys [test_k1]. The meter you are attempting to register has keys [test_k2].");
"Prometheus requires that all meters with the same name have the same set of tag keys. There is already an existing meter named 'my_counter' containing tag keys [test_k1]. The meter you are attempting to register has keys [].");
Copy file name to clipboardExpand all lines: implementations/micrometer-registry-prometheus/src/test/java/io/micrometer/prometheusmetrics/PrometheusNamingConventionTest.java
+2-2
Original file line number
Diff line number
Diff line change
@@ -30,12 +30,12 @@ class PrometheusNamingConventionTest {
0 commit comments