358 questions
0
votes
1
answer
85
views
Logs of Spring Boot Docker service not accessible from Spring Boot Admin
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 ...
1
vote
0
answers
144
views
Spring Boot Admin: Tons of timeouts
In my Spring Boot Admin 3.5.0 environment I can see lots of errors (even if they're logged as INFO or WARN) like the following:
2025-06-06T02:35:32.116Z INFO 1 --- [Zookeepers Monitoring] [ ...
0
votes
0
answers
120
views
Spring Boot Admin not showing apps details
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....
1
vote
0
answers
51
views
Springboot admin is not displaying the correct status of the client app
We're using Springboot admin 3.2.1 which is hoted in AWS on ECS container/fargate.
We have registered the client applications using the properties.
Below properties are added to the application....
0
votes
1
answer
64
views
Spring Boot Admin: Redirect to journal on refresh
I'm using SBA 3.4.6 and, every time I manually hit the refresh button to refresh the status of the instance/s, the UI redirects me to the journal page/view.
Is this behaviour to be expected and, if it'...
0
votes
0
answers
55
views
Is there any page to show audit log for the spring boot admin web itself?
We are using Spring boot admin to monitor and manage our spring boot applications. Since its features are so powerful, we are adding some user authentication and roles to fine-grained access control.
...
1
vote
1
answer
1k
views
How to log request body from a Spring WebClient request using an InstanceExchangeFilterFunction in Spring Boot Admin?
Issue: Unable to Read Request or Payload in Exchange SBA
I'm facing an issue where I cannot read the request or payload within an exchange, apparently due to its basis in the Reactor stack. ...
-1
votes
1
answer
459
views
Spring Boot Admin Server Unauthorized error when trying to connect to Kubernetes API while startup
application.yml
spring:
application:
name: springbootmonitoring-app
cloud:
kubernetes:
discovery:
enabled: true
all-namespaces: false # Optional: Set to true if you ...
0
votes
2
answers
138
views
Spring Boot Admin - filtering JMX Beans list
I'm disocvering SBA features and playing with JMX part
I'm trying to list only my business JMX Beans and want to hide others (jdk,management, org,spring..., ...)
How to achieve that in configuration ?
...
1
vote
2
answers
335
views
spring-boot-admin, how to configure objectMapper which is used by its reactor library?
I'm trying to setup into my kubernetes cluster a spring-boot-admin service (playing with https://github.com/codecentric/spring-boot-admin-runtime-playground). It went quite good: it sees my service, i'...
-1
votes
1
answer
440
views
Spring Boot Admin : how to register a micro server into admin server without discovery in kubernetes
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
...
0
votes
1
answer
148
views
Spring Boot Admin Server custom notifications
How can I set up the Spring Boot Admin Server so that I can notify different users for different applications ? So far I can only notify the same users for status changes of all registered apps. But I ...
1
vote
1
answer
85
views
How to avoid SBA server calling monitored pods that are just restarted by k8s and presumably not yet healthy
Spring Boot Admin Server information
Version: 3.3.3
Spring Boot version: 3.3.2
Configured Security: OAuth
Webflux or Servlet application: servlet
Client information
Spring Boot versions: 3.3.2
...
-1
votes
1
answer
652
views
Can we add custom functionality to spring boot admin 3.3
so I just used spring boot admin for monitoring purposes but I want to also add some custom functionalities like viewing the application.properties file in the admin dashboard. Is it possible to do so?...
1
vote
1
answer
324
views
Spring Boot Admin: How to ignore sporadic DOWN responses from clients and keep status in UP?
Goal: The health actuators of our microservices include ping tests to external services. Naturally, these ping requests sometimes time out or fail for other reasons, which leads to a DOWN response by ...