We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
https://kie.zulipchat.com/#narrow/stream/232677-drools/topic/Spring.20Batch.20Metrics
MetricLogUtils looks for io.micrometer.core.instrument.Tag. If it exists, micrometerAvailable is set to true.
io.micrometer.core.instrument.Tag
micrometerAvailable
true
https://github.com/apache/incubator-kie-drools/blob/main/drools-metric/src/main/java/org/drools/metric/util/MetricLogUtils.java#L42-L50
Then, MetricLogUtils automatically uses Micrometer and doesn't print trace logging.
https://github.com/apache/incubator-kie-drools/blob/main/drools-metric/src/main/java/org/drools/metric/util/MetricLogUtils.java#L95-L99
It's not good for users who have Micrometer, but want to review trace logging.
Let's introduce a flag to choose.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
https://kie.zulipchat.com/#narrow/stream/232677-drools/topic/Spring.20Batch.20Metrics
MetricLogUtils looks for
io.micrometer.core.instrument.Tag
. If it exists,micrometerAvailable
is set totrue
.https://github.com/apache/incubator-kie-drools/blob/main/drools-metric/src/main/java/org/drools/metric/util/MetricLogUtils.java#L42-L50
Then, MetricLogUtils automatically uses Micrometer and doesn't print trace logging.
https://github.com/apache/incubator-kie-drools/blob/main/drools-metric/src/main/java/org/drools/metric/util/MetricLogUtils.java#L95-L99
It's not good for users who have Micrometer, but want to review trace logging.
Let's introduce a flag to choose.
The text was updated successfully, but these errors were encountered: