Questions tagged [micrometer]

micrometer is a facade to log different kind of metrics to data sinks of multiple vendors.

https://micrometer.io/

Think SLF4J, but for metrics.

Contains built-in support for Prometheus, Netflix Atlas, CloudWatch, Datadog, Graphite, Ganglia, JMX, Influx/Telegraf, New Relic, StatsD, SignalFx, and Wavefront.

563 questions
0
votes
1 answer

Change prometheus endpoint using micrometer.io

I use micrometer metrics for prometheus and according to docs: http://micrometer.io/docs/prometheus#_configuring A Spring Boot Actuator endpoint will be wired to /prometheus that presents a Prometheus scrape with the appropriate format. How to…
Nikita
  • 4,435
  • 3
  • 24
  • 44
-1
votes
0 answers

MeterRegistry using in the Map

I have this code: static method(){ // also other class called this method for (Map.Entry dataSource :dbhealth.entrySet()) { Connection connection = dataSource.getValue().getConnection() if…
-1
votes
0 answers

How to expose the prometheus matrix for each incoming request in akka-http

like to know how to make count metrics available for incoming http requests in akka-http. Basically, I'm looking for wrappers for each http endpoint so that I can build metrics for the amount of time it took for each request to complete as well as…
munish
  • 1
-1
votes
0 answers

Not able to publish custom ScheduledExecutorService metrics to Prometheus using Prometheus Java Agent

I am trying to publish custom metrics from my MyCustomExecutor class to the /metrics endpoint using the Prometheus Java Agent. I have implemented a custom executor class as follows: @Slf4j public class MyCustomExecutor extends…
-1
votes
1 answer

How can prometheus start reporting on path params as well?

Background: We have an application which acts as a gateway. Every URL served by the platform goes through this. URI is /v2/{endPoint}. With endpoint, there are mappings to hit the services URL accordingly. All our applications are spring-boot…
-1
votes
1 answer

How to trigger gauge only manually?

I want to monitor a value from my database. This value could increase and decrease, so I use a gauge. I have no instance variable for this value, so I use a method reference instead of a object reference. The gauge calls this method…
dur
  • 15,689
  • 25
  • 79
  • 125
-1
votes
1 answer

gradle dependency fails but it's there

I have the following error (PLEASE NOTE the jar it says it could not find is different from the location jar name in this error...weird)... * What went wrong: A problem occurred evaluating project…
Dean Hiller
  • 19,235
  • 25
  • 129
  • 212
1 2 3
37
38