-
Notifications
You must be signed in to change notification settings - Fork 990
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Global MeterFilters with dynamic content are bypassed by cache #5406
Comments
Having a look at the code it seems that it's assumed that global MeterFilters only provide static data, however, that is not mentioned in the documentation: https://docs.micrometer.io/micrometer/reference/concepts/meter-filters.html Also, Wouldn't it be great to have static and dynamic meeter filters in order to better cache things? |
@jonatan-ivanov it would be great if the non-volatility and cacheability requirements on MeterFilter methods could become a part of your official documentation. Otherwise it is very hard for us to explain to our users why this kind of use case stopped working after the upgrade to Micrometer 1.13 |
We are running into the same issue, having HTTP headers (tenantIDs and other low cardinality IDs) that should be applied to all metrics as tags, but doing so in a decoupled way from where the metric is created. |
Describe the bug
We have a test that executes requests to the same endpoint but with different parameters and headers.
The parametric test runs 4 times and in the last execution it fails because the right meter, with the right tag is not present.
When executed alone, that test passes because there is no Micrometer caching involved.
The previous test will add a very similar meter that will be resolved in the cache here:
The preFilterIdToMeterMap in
micrometer/micrometer-core/src/main/java/io/micrometer/core/instrument/MeterRegistry.java
Line 627 in 9ffef08
This gets returned and the global meter filters that would otherwise be applied in
micrometer/micrometer-core/src/main/java/io/micrometer/core/instrument/MeterRegistry.java
Line 632 in 9ffef08
... are never executed.
If one of those filters is a bean returning dynamic content, in this case, based on specifics of the request: https://github.com/quarkiverse/quarkus-cxf/blob/6cea9f2acb0127f3b4d17273578a3a4fc353ee27/integration-tests/hc5/src/main/java/io/quarkiverse/cxf/hc5/it/MeterFilterProducer.java#L12
Those tags are never applied and the wrong meeter is effectively returned.
See example:
Environment
Micromenter 1.13.3 on Quarkus main branch (unreleased).
Using the Prometheus simple client.
To Reproduce
The bug can be reproduced following the steps of this bug report: quarkusio/quarkus#42800
Expected behavior
If dynamic content can be added by global MeterFilters caching must not bypass them.
The text was updated successfully, but these errors were encountered: