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: extensions/micrometer/runtime/src/main/java/io/quarkus/micrometer/runtime/HttpServerMetricsTagsContributor.java
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,12 @@ interface Context {
30
30
* however this method is needed because {@link io.smallrye.common.vertx.ContextLocals#get(String)} won't
31
31
* work when {@link HttpServerMetricsTagsContributor#contribute(Context)} is called as the HTTP request has
32
32
* already gone away.
33
+
* <p>
34
+
* Beware of high cardinality causing memory usage increase.
35
+
* <p>
36
+
* Don't use keys that might hold many different values (more than a few dozens).
37
+
* The problem is not just about the current request but the combination of different values from all the
0 commit comments