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

Spring boot micrometer statistics - detailed description

I followed along this article to configure export of my spring boot application statistics to the influx. However, it creates quite a lot of measurements and I can't find any description of what exactly those measurements contain. I would like to…
MAREK
  • 173
  • 1
  • 11
0
votes
1 answer

Spring Boot metrics export to InfluxDB - how to reduce number of exports?

I have: plugins { id 'org.springframework.boot' version '2.0.3.RELEASE' } And: compile 'org.springframework.boot:spring-boot-devtools' compile 'org.springframework.boot:spring-boot-starter-actuator' compile…
Justinas Jakavonis
  • 8,220
  • 10
  • 69
  • 114
0
votes
1 answer

Is there a way to get kafka streams and camel metrics in telegraf using micrometer

I have Kafka streams and camel in my application and I want to fetch some metrics from it and send it to influx via telegraf. For all the other metrics in my application we are using micrometer. Is there a way to fetch camel routes metrics and kafka…
0
votes
1 answer

Spring Boot auto-configured metrics not arriving to Librato

I am using Spring Boot with auto-configure enabled (@EnableAutoConfiguration) and trying to send my Spring MVC metrics to Librato. Right now only my own created metrics are arriving to Librato but auto-configured metrics (CPU, file descriptors, …
diegoubi
  • 1,101
  • 13
  • 17
0
votes
1 answer

Does Micrometer library support OpenTsdb as a Monitoring system?

Does Micrometer library support OpenTsdb as a Monitoring system? If no, is there any third-party library that can work on the top of Micrometer and report metrics to OpenTsdb?
evgeniy44
  • 2,862
  • 7
  • 28
  • 51
0
votes
1 answer

How to stop publishing metrics but still keep accessible under /metrics in spring boot micrometer?

I want to keep collecting jvm and other metrics, but just don't want to push all of them to cloudwatch or prometheus (or anything else). If I do like this @Bean MeterRegistryCustomizer customizer() { return (registry) ->…
gaganbm
  • 2,663
  • 3
  • 24
  • 36
0
votes
1 answer

micrometer add custom parameter

is it possible to register a custom parmeter with micrometer as it is done in new relic? e.g.: NewRelic.addCustomParameter("customparam", customparam ); I would like to associate a tag to a the current request. Thanks, Jorge
jorgebo10
  • 450
  • 4
  • 13
0
votes
1 answer

How to measure invocations over time with micrometer

I have a Spring Boot Application which I'm migrating to Micrometer right now. What I'd like to achieve is, to count the invocation over time for specific objects. Let's assume I have a function which creates cars of certain Brands. Then I'd like to…
questionaire
  • 2,475
  • 2
  • 14
  • 28
0
votes
2 answers

Merge Spring Boot actuator and Micrometer data on one endpoint

I have a number of applications that are using the SpringBoot actuator to publish metrics to the /metrics endpoint. I have some other applications that are also using Micrometer to publish metrics to a /prometheus endpoint. And finally, I have a…
0
votes
1 answer

Spring Boot MeterRegistryCustomizer with NewRelicRegistry not working as I expect.

I have a bean, set up in a configuration class. My goal is to transform, deny, apply common tags and modify the metrics that are sent to New Relic. Here is my configuration class @Configuration @Log4j2 public class MetricsConfig { private…
abarraford
  • 655
  • 2
  • 7
  • 23
0
votes
1 answer

Why won't Micrometer stop sending data to datadog and just close already?

I have a Spring Boot app which due to weird restrictions needs to run once every three hours, and won't work with Quartz, so I've been running it once every three hours from OS cron and it quits when it's done. After adding…
tofagerl
  • 95
  • 10
0
votes
1 answer

Statsd "Bad Line" error when sending UDP data using Micrometer

When sending Statsd packages from my app to Statsd server, we can see the following Bad line error in the statsd server: DEBUG: Bad line: value,name in msg jdbc.connections.min:10|g|#statistic:value,name:dataSource" Since I'm using the Micrometer…
riorio
  • 6,500
  • 7
  • 47
  • 100
0
votes
1 answer

Unable to send Micrometer data via statsd to graphite from my Akka actor within Spring Boot 2.0 app

I have a Spring Boot 2.0 application and I like to send Micrometer info to a graphite via statsd. In the application.properties file I added: management.metrics.export.statsd.host=192.168.1.1 // not the real…
riorio
  • 6,500
  • 7
  • 47
  • 100
0
votes
1 answer

Register bean with Grails for MeterRegistryCustomizer

Having followed Spring Boot Metrics documentation, I was able to set metrics logging for datadog easily. The only remaining stuff is to set custom tags for my instances. With Spring Boot, you can do it by registering a new…
kuceram
  • 3,795
  • 9
  • 34
  • 54
0
votes
1 answer

How to integrate Spring Boot 1.x actuator metrics with io.micrometer? Getting io.micrometer.influx.InfluxRegistry - failed to send metrics error

I have a Rest service implemented with Spring Boot 1.x. I'm trying to send metrics data to an existing influx db by leveraging actuator /metrics. I've found out that Micrometer project (http://micrometer.io/docs/influx#_install) supports Spring…
horizonbugs
  • 11
  • 1
  • 7
1 2 3
37
38