Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
45 views

When I include the spring-boot-starter-actuator dependency, my application fails to start due to a circular dependency (shown below). Removing the actuator dependency resolves the issue. Why does this ...
noob's user avatar
  • 95
1 vote
0 answers
53 views

We've got NewRelic integrated into Spring Boot. I don't know why but since yesterday NR identifies all requests to actuator endpoints (including the health check and prometheus endpoints that get ...
Matthias's user avatar
  • 2,875
0 votes
1 answer
56 views

The actuator endpoint /actuator/metrics/http.server.requests can exhibit this informations: { "name": "http.server.requests", "baseUnit": "seconds", "...
Figurinha's user avatar
  • 111
1 vote
1 answer
145 views

I created my own advices in springboot 1 to monitor our apps, and only now try to learn what new versions of springboot offer(currently working with 3.3.1, but will move on to later version later), ...
Martin Mucha's user avatar
  • 3,267
1 vote
1 answer
251 views

I try to disable opentelemetry exporter in my local spring profile. In application-local.yaml I have: opentelemetry: sdk: disable: true instrumentation: enabled: false exporter: otlp:...
gstackoverflow's user avatar
0 votes
1 answer
192 views

I would like to send metrics with exemplars using Spring Boot and Micrometer. Part of the pom.xml: <parent> <groupId>org.springframework.boot</groupId> <artifactId&...
PatPanda's user avatar
  • 5,418
0 votes
0 answers
122 views

I'm using Spring Boot 2.3.5.RELEASE and I noticed that @Async methods in my application are working without adding @EnableAsync in any configuration class. After some digging, I saw a comment from ...
Madusanka Wattaladeniya's user avatar
1 vote
0 answers
317 views

I've updated the version of Spring Boot in my project to 3.4.4. And now one of the JUnit tests starts failing with the exception org.springframework.beans.BeanInstantiationException: Failed to ...
zilberman's user avatar
0 votes
0 answers
51 views

I see a couple of similar questions here but nothing works in my case. So, although it looks like a "duplicate", I hope it is not. Problem: I have an app with multiple (actually 3) ...
BUKTOP's user avatar
  • 989
0 votes
0 answers
15 views

My info endpoint is fetching details of another API. I have a dependency of another api in one of the module. I only have one build.properties file and one application.properties file But somehow when ...
Watermelon's user avatar
0 votes
0 answers
33 views

My project requires an api end point to GET the initial log levels (configured/effective) of the packages, we create a scheduler to report that package log level is modified by the specific user from ...
user3387870's user avatar
3 votes
2 answers
1k views

Using Spring Boot 3.4.2, I want to configure logs export in opentelemetry format with Spring Actuator configuration. Example properties: management.otlp.logging.export.enabled=true management.otlp....
Anna's user avatar
  • 41
0 votes
1 answer
313 views

My goal is to provide a starter (spring boot 3.4) that brings an out-of-the-box experience. In essence it is a collection of authentication providers and converters, configuration of the ...
Magnus Persson's user avatar
2 votes
1 answer
367 views

Spring boot version 2.7.3 I need to mask all the fields containing 'uri' string in actuator/env response. According to documentation: To take control over the sanitization, define a SanitizingFunction ...
Ivan Karotki's user avatar
0 votes
0 answers
740 views

I am configuring my Spring Boot 3.0.2 application with this setting: management.endpoint.health.probes.enabled=true Calling /actuator/health I am getting the following result: "livenessState"...
StSch's user avatar
  • 407
0 votes
0 answers
134 views

In my application.properties I have configured the logging as follows: logging.level.org.springframework.web=TRACE This is by intention and should stay as it is. When an Actuator endpoint (such as /...
StSch's user avatar
  • 407
0 votes
0 answers
42 views

I've setup my app with actuator, and I see that it's running the following: select count(?) from systables What is the ? in this? I would assume it's not *. Is there a way I can customize this query ...
iCodeLikeImDrunk's user avatar
2 votes
1 answer
407 views

Our team maintains a large number of architecturally similar SpringBoot services. They are mostly using SpringBoot 3.2.5. We configure the "health" actuator for use within our Kubernetes ...
David M. Karr's user avatar
1 vote
1 answer
1k views

I migrated an app from Springboot version 3.3.3 to version 3.3.4. All unit test run correctly except the unit test Healthcheck (/actuator/health). This test was running with no problem on Spring boot ...
Wilfried's user avatar
0 votes
1 answer
890 views

I have Spring Cloud gateway setup to route traffic to various backend services. I also have a fallback route that forwards any unmatched routes to some static content. It works great. Now I need to ...
Ken Krueger's user avatar
  • 1,311
1 vote
1 answer
804 views

In my spring boot application. I added following dependencies: spring-boot-starter-actuator micrometer-registry-prometheus In application.properties file I added following code: management.endpoint....
SharpCoder's user avatar
  • 19.3k
1 vote
1 answer
140 views

I want to implement a new type of meter (HeartbeatMeter) to track the liveness of a heartbeat from an upstream source. Interface would be very simple, something like: private interface ...
Dima Patserkovskyi's user avatar
1 vote
1 answer
1k views

I'm trying to use @RefreshScope at @Service layer to dynamically change the value of a property.My application successful started, however after make a request then getting this error j.l....
Tay Nguyen's user avatar
2 votes
0 answers
275 views

I'm working on a Spring Boot application where I want to achieve the following: All Actuator endpoints (like /actuator/health, /actuator/info, etc.) should be exposed on the default application port (...
Clarence's user avatar
  • 117
2 votes
1 answer
496 views

I am trying to analyse whether or not to use "/actuator/health/liveness" and "/actuator/health/readiness" instead of "/actuator/health". I mainly used https://spring.io/...
GJohannes's user avatar
  • 1,805

1
2 3 4 5
37