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