Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
75 views

We're trying to verify that Micrometer runs on JDK 25, but when I try to build it (Mac OS, OpenJDK Runtime Environment Temurin-25.0.1+8), I get BUG! exception in phase 'semantic analysis' in source ...
jasondlee's user avatar
  • 296
0 votes
1 answer
114 views

I wonder if it's possible to enable metrics for GC using GraalVM native-image in Spring Boot. When starting the container, I get: GC notifications will not be available because no ...
pixel's user avatar
  • 26.8k
3 votes
1 answer
113 views

Context Java service in Kubernetes, multiple pods. Metrics exposed via Micrometer + Prometheus. Grafana dashboards use increase(...) and sum by (...) to count events in a time range. Counters are ...
user2989745's user avatar
0 votes
0 answers
103 views

I'm using Micrometer 1.12.13 in a Spring Boot 3 project, with spring boot auto configured DatadogMeterRegistry to export metrics. My code looks like this: MeterRegistry.counter("metric-name",...
Tarik's user avatar
  • 1
0 votes
1 answer
46 views

I use micrometer + spring boot + prometheus to create, register and monitor the counters from the application, apart from counters we have timer and gauge. counter created inside application which has ...
user3917953's user avatar
0 votes
1 answer
115 views

The OTLP agent has a feature where you can add the values of request headers to a span as an attribute automatically through some configuration. How would you achieve this when using the tracing ...
Michael McFadyen's user avatar
1 vote
0 answers
54 views

I am using @Timed from micrometer-core on a few methods to capture the response time of methods in a very simple way like this - @Timed(percentiles = {0.50, 0.95, 0.99, 0.999}) It is a spring-boot ...
Abhinash Jha's user avatar
1 vote
1 answer
66 views

I have full control over an observation in my code: Observation observation = Observation.createNotStarted("something", observationRegistry) observation.observe(() -> doSomething(...
vab2048's user avatar
  • 1,297
0 votes
1 answer
188 views

Processing the message from SQS - which has initial traceId in the message and wanted to use the same traceId while processing the message, but unable to reset the traceId in the tracing context. we ...
nmanandhan's user avatar
-1 votes
1 answer
141 views

Small question regarding a Spotbugs finding I am having a hard time fixing. In this super simple class: import io.micrometer.observation.ObservationRegistry; @Service public final class MyService { ...
PatPanda's user avatar
  • 5,418
1 vote
1 answer
82 views

I followed the Spring's documentation to see traces in Mongodb by adding the bean @Bean MongoClientSettingsBuilderCustomizer mongoMetricsSynchronousContextProvider(ObservationRegistry registry) { ...
2shar's user avatar
  • 121
2 votes
2 answers
254 views

I have spring boot 3.4+ reactive webflux app we have been using below config to get prometheus metrics (Spring Boot 2.x) private ExchangeFilterFunction metricsWebClientFilterFunction(String name) {...
donm's user avatar
  • 1,270
0 votes
1 answer
58 views

Based on official spring boot documentation Propagating Traces To automatically propagate traces over the network, use the auto-configured RestTemplateBuilder, RestClient.Builder or WebClient.Builder ...
gstackoverflow's user avatar
0 votes
1 answer
111 views

I have a method annotated with @Observed annotation: @Observed( name = "foo", contextualName = "foo", ) fun foo(arg1: String, arg2: Integer){...} When I go to Zipkin I see ...
gstackoverflow's user avatar
0 votes
0 answers
28 views

I use latest quarkus-micrometer-registry-prometheus library 1.14.4 expose the default metrics. But our company service collect metrics by text/plain context. Collector send request without any header, ...
Weever's user avatar
  • 25
0 votes
0 answers
203 views

I have many interfaces with @FeignClient annotations, and I provide name, url and config class parameters inside annotation. I got this libraries in my project: implementation("io.github....
Arseniy's user avatar
  • 11
1 vote
1 answer
318 views

I am integrating my Spring Boot application to Kibana and followed these steps: JDK: 17 step-1: Adding elastic-apm-agent added elastic-apm-agent.jar(1.51.1) into dockerfile. And I see the APM on ...
S.Balaban's user avatar
  • 196
0 votes
0 answers
114 views

While upgrading to Spring boot 3.4 I'm struggling to figure out how to "only" skip tracing for certain uris/paths while continuing to report metrics. For some endpoints like actuators and ...
Micke's user avatar
  • 268
0 votes
1 answer
327 views

I'm triing to add monitoring to my Spring application. A added dependencies <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-...
Михаил Воробьев's user avatar
0 votes
0 answers
61 views

I have many java applications and they have been instrumented with Micrometer(SpringBoot natively support it). They send metric to OTLP Mimir. I have a NodeJS application which I want to instrument ...
Arpit Agarwal's user avatar
1 vote
1 answer
129 views

I have the following Java snippet that I am using to publish histogram metrics public class MessageConsumer { private MeterRegistry meterRegistry; private NormalRandomGenerator ...
curiousengineer's user avatar
0 votes
0 answers
110 views

I am using spring boot 3.3.6, looks like it is using micrometer-elastic-registry:1.13.6. I didn't see this errors until I upgrade Elastic from 8.11.4 to 8.16. There were no changes to anything else so ...
Xli's user avatar
  • 31
0 votes
0 answers
187 views

I have a Springboot 3.4 web service with micrometer The endpoint is straightforward, the controller accepts a list of messages to be sent to an external rest API I have no control over. The processing ...
PatPanda's user avatar
  • 5,418
2 votes
0 answers
167 views

We have a Springboot 3.4 web service with micrometer, serving traffic for two clients. Client one, we are lucky, is also using Springboot 3+. Like magic, Springboot is able to "propagate", &...
PatPanda's user avatar
  • 5,418
0 votes
1 answer
95 views

We are using Wildfly 33 (jboss 7.1.0) and we have configured it to use micrometer. It now sends the metrics via an Open Telemetry collector to a prometheus instance. This works great but the problem ...
giZm0's user avatar
  • 1,511

1
2 3 4 5
15