in geronimo-metrics-common/src/main/java/org/apache/geronimo/microprofile/metrics/common/jaxrs/MetricsEndpoints.java [264:269]
private String getKey(final Map.Entry<MetricID, Metric> e) {
if (Counter.class.isInstance(e.getValue()) || Gauge.class.isInstance(e.getValue())) {
return e.getKey().getName() + formatTags(e.getKey());
}
return e.getKey().getName();
}