Skip to main content
Filter by
Sorted by
Tagged with
Advice
0 votes
0 replies
11 views

In Spring Boot Actuator, when setting a separate management server port to expose actuator endpoints only within an AKS cluster, the health endpoint can also be exposed externally using an additional-...
MelleD's user avatar
  • 799
0 votes
1 answer
47 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
0 votes
0 answers
65 views

I have a set of micro services with Spring Boot running on containers, I'm using Eureka discovery and Spring Cloud API Gateway, I'm trying to set Prometheus to monitor them, so my prometheus.yml looks ...
Alfredo Morales's user avatar
1 vote
0 answers
56 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
160 views

I have a spring-cloud-gateway-webflux service and I have enabled all the actuators but the /actuator/gateway doesn't show up so I can't view all the routes. I am using the following dependencies: ...
devo's user avatar
  • 1,331
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
0 votes
1 answer
183 views

Is there any autoconfiguration for OtlpGrpcSpanExporter? I see OpenTelemetryAutoConfiguration class in spring boot actuator but there's no autoconfiguration for exporter. Is it necessary to define a ...
slt4o's user avatar
  • 3
1 vote
1 answer
156 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,269
0 votes
1 answer
61 views

I have a Spring Boot service dockerized and it registers well with Spring Boot admin. Property logging.file.name is specified in a Git repository that after service startup is retrieved from the ...
Habchi's user avatar
  • 1,971
1 vote
1 answer
255 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
0 answers
70 views

my Spring Boot Admin dashboard is not showing details about apps: no health, no JVM resources usage, no Actuators introspections... any. Following are my configurations: server conf: spring.boot....
Massimiliano's user avatar
0 votes
1 answer
199 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
1 vote
1 answer
231 views

I was updating current spring boot application version to spring boot 3, 3.4.4 to be precise, after updating the dependencies and checking out rest endpoints everything seems to be working fine, but ...
MOHAMMAD WASEEM's user avatar
0 votes
0 answers
123 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
0 votes
1 answer
32 views

I have a Spring Boot Service (service-a), which is dependent on Spring Boot services service-b, service-c. I would want to make sure that my actuator health endpoint captures the health information of ...
user352290's user avatar
  • 1,360
1 vote
0 answers
322 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
1 vote
1 answer
99 views

Following documents and examples I try to implement @Counted and @Timed annotation based observability, basing on spring boot actuator, micrometer. There are no build or run errors. a method in the ...
Gil Shapir's user avatar
0 votes
0 answers
54 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
1 answer
277 views

Having about 6 Spring Boot applications with REST APIs running with Actuator and Prometheus support. These are running on Docker, but the actuator port is not exposed. Although we can connect each ...
DJViking's user avatar
  • 911
0 votes
0 answers
19 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
85 views

We are currently migration several @RestControllerEndpoint to the framework-agnostic @WebEndpoint. The problem: These endpoints trigger an asynchronous task, which the status code should reflect (...
helpermethod's user avatar
  • 62.8k
0 votes
0 answers
37 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
0 votes
1 answer
82 views

I have this test: @Test public void healthCorollaUp() throws Exception { ResponseEntity<CorollaResponse> responseEntity = new ResponseEntity<>(null, HttpStatus.OK); when(...
runnerpaul's user avatar
  • 7,564
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
198 views

I wonder what the drawbacks of the Spring Boot application are that it has a /health actuator endpoint defined as liveness and readiness probes. Are there any issues related to graceful shutdown or ...
pixel's user avatar
  • 26.8k
0 votes
1 answer
317 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
1 vote
1 answer
40 views

I have a custom extension of the info endpoint where I would like to test the returned values: @Component @EndpointWebExtension(endpoint = InfoEndpoint.class) public class InfoWebEndpointExtension { ...
Thomas's user avatar
  • 7,290
2 votes
1 answer
377 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
1 answer
311 views

I’m using a Spring Boot project with version 2.5.6 and springfox-boot-starter version 3.0.0. My project also includes a WebSecurityConfig class that extends WebSecurityConfigurerAdapter and implements ...
Tanu's user avatar
  • 1
0 votes
0 answers
752 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
2 votes
1 answer
263 views

Is there a way in Springboot to isolate the readiness probe computation from the liveness probe computation? Typically the readiness probe has more risk to take long, e.g. when database connectivity ...
FredWoozley's user avatar
0 votes
0 answers
144 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
32 views

I've been struggling for a while to find a solution to the following problem: I have a SpringBoot web application running in a Docker container. The context is not at the root, it is of type: server....
user28362297's user avatar
0 votes
0 answers
43 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
0 votes
1 answer
37 views

I am currently developing an application that is running on Spring Boot 2.7.5 and am looking into the Actuator endpoints. When I call /actuator/health I get the following response: { "...
purzel's user avatar
  • 187
2 votes
1 answer
414 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
0 votes
1 answer
242 views

I have a project in which I want to update property from application.properties in runtime, and to recreate the beans that depend on configuration and configuration bean itself with the new/updated ...
S H's user avatar
  • 129
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
-1 votes
1 answer
384 views

i have a spring boot admin server in my kubernetes cluster and i want to register a micro server into spring boot admin they are in the same namespace and i already use svc name to set the client url ...
Jack Zhang's user avatar
0 votes
1 answer
907 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
0 votes
1 answer
121 views

I have created a spring boot app having various endpoints secured and throttling is enabled on them like if more then certain calls will come in a minute it will give 429. My /health endpoint doesn't ...
Akash tiwari's user avatar
1 vote
1 answer
809 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
0 votes
0 answers
189 views

I have been working on a project for quite long time. I had written quite a lot of integration tests(39). All of the tests used to pass. Recently I decided to add spring actuator starter project. But ...
Sadatul islam Sadi's user avatar
1 vote
1 answer
151 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
0 votes
0 answers
57 views

I am building a springboot application with a connection to an IBM MQ server which I don't have control over. I also monitor my app using the actuator health. The actuator uses the default ...
ikhvjs's user avatar
  • 6,087
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
1 vote
1 answer
585 views

I am trying to integrate the live reloading of k8s secrets in my spring boot 3 application. My setup is as follows: I have a Java 21 application that is being build as a Docker image containing an ...
Bart's user avatar
  • 353
2 votes
0 answers
277 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
0 votes
1 answer
176 views

We using custom gateway filter for spring cloud gateway. The configuration looks like below: Filter class: @Component public class CustomFilter extends AbstractGatewayFilterFactory<CustomFilter....
Hardik's user avatar
  • 41
2 votes
1 answer
499 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,815

1
2 3 4 5
37