I use MicroMeter gauges in a Spring Boot 2 application to track statuses of objects. On status change, the statusArrived() method is called. This function shoul
The OpenApi documentation says that it supports micrometer. How does the integration works? I could not find anything except this little documentation. I have a
I have a service bean MonitoringRegistryServiceImpl implementation in the Quarkus which I used to register timers and update them (code bellow). They were regis
I have an Apache Camel application with an Idempotent Consumer. I need a metric with the total number of duplicated messages. How could I implement such a metri
I have the following Quarkus Rest client code (based on this doc https://quarkus.io/guides/rest-client) @RegisterRestClient(baseUri = "https://pesho3.free.beece
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 am trying to generate Prometheus metrics with using Micrometer.io with Spring Boot 2.0.0.RELEASE. When I am trying to expose the size of a List as Gauge, it
So I am new to metrics and micrometer. I am have followed this tutorial in which we set up some basics Meters like a counter and a Gauge and expose the metrics.