All Questions
7 questions
3
votes
0
answers
2k
views
How to enable StatsD in Spring Boot?
I have Spring Boot 2.5.2 and I am trying to send StatsD metrics to Datadog. However, that didn't work for me. So I wrote a single python script to check if my application is sending any data or not.
...
5
votes
1
answer
5k
views
Micro meter high memory usage
We are seeing some of our services (Java <> SpringBoot) getting OOM. On checking heap dump, we found the micrometer library is taking 113MB (around 54% of total heap memory).
io.micrometer....
0
votes
3
answers
3k
views
Datadog wrong displaying of http.server.requests.count metric
In my project we use spring-boot2 with actuator and datadog metrics - package io.micrometer:micrometer-registry-datadog.
Metrics are sent to datadog by http API.
I've created time series chart in ...
2
votes
2
answers
4k
views
Micrometer-springboot: Hikaricp , Tomcat and jdbc metrics are not exported to DataDog
Hikaricp , Tomcat and jdbc metrics are not being exported to DataDog
we have setup springboot app to push the metrics to datadoghq, it does export 60 metrics, however the metrics like hikaricp, tomcat ...
3
votes
0
answers
278
views
Tracking sparse metrics with micrometer results in zeroes being published
I'm using micrometer to publish several different metrics to Datadog; among these there is the number of items processed by several different batch jobs which can be pretty sparse.
Some batch jobs ...
1
vote
1
answer
2k
views
Micrometer's Gauge - update ratio
I'm wondering what's the update ratio of gauge meter in micrometer:
List<String> list = registry.gauge("listGauge", Collections.emptyList(), new ArrayList<>(), List::size);
now let's say ...
2
votes
2
answers
1k
views
Datadog event using micrometer
I am utilizing DogStatsD approach to send metrics to datadog using micrometer. I get the normal metrics like counter and gauge but I am not able to generate events. Is there a way to generate datadog ...