python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Micrometer collection metric with pagination
I would like to create a metric that represents a list of groups. The group contains a name and the count of elements.
public class GroupMetric{
String name;
int count;
}
This metri...
MelleD
Votes: 0
Answers: 0
Publish micrometer metrics programatically
I'm using micrometer (https://micrometer.io/) to measure latency in calls to several remote endpoints. I want to publish a histogram over latency to a logfile after my test run finish. Is that possibl...
perseger
Votes: 0
Answers: 1
How to specify single endpoint to be metered in micrometer in Spring Boot?
I would like to limit metrics
http.server.requests.seconds to a single method and uri.
Currently, I can see that all URIs are being metered (eg. /actuator/health)
Is this possible?
pixel
Votes: 0
Answers: 1
PortUnreachableExceptions spamming log after updating Spring Boot Parent
After upgrading from spring-boot-parent version 2.5.5 to 2.6.0, I started seeing these error messages spamming the logs:
[INFO] [stdout] 2022-01-11 13:40:01.157 WARN 76859 --- [ udp-epoll-2] i.m.s...
jqno
Votes: 0
Answers: 2