Questions tagged [spring-boot-admin]

spring boot admin is a project by codecentric to manage and monitor spring boot application

This community project provides an admin interface for Spring Boot ® applications.

It provides the following features for registered application.

  • Show health status
  • Show details, like
    • JVM & memory metrics
    • micrometer.io metrics
    • Datasource metrics
    • Cache metrics
  • Show build-info number
  • Follow and download logfile
  • View jvm system- & environment-properties
  • Support for Spring Cloud's postable /env- &/refresh-endpoint
  • Easy loglevel management
  • Interact with JMX-beans
  • View thread dump
  • View http-traces
  • View auditevents
  • View Http-Endpoints
  • View Scheduled Tasks
  • View and delete active sessions (using spring-session)
  • View Flyway / Liquibase database migrations
  • Download heapdump
  • Notification on status change (via e-mail, Slack, Hipchat, ...)
  • Event journal of status changes (non persistent)

Getting Started

A quick guide to get started can be found in our docs.

344 questions
2
votes
2 answers

Spring Boot Admin error from Client side in port

everyone! I have a problem with Spring Boot Admin in Client side: 01-04-2021 23:02:37 [registrationTask1] ERROR o.s.s.s.TaskUtils$LoggingErrorHandler - Unexpected error occurred in scheduled task java.lang.NoSuchMethodError:…
JIeT4uK
  • 21
  • 1
  • 2
2
votes
2 answers

Spring Security oauth2Login OAuth2UserService not executed after authentication

I have a Spring Boot Admin app secured by Keycloak, I defined a user having a realm role ACTUATOR. The problem is that after authentication Spring Security does not have access to realm roles. I can see the granted authorities: Granted Authorities:…
2
votes
1 answer

Hazelcast in SpringBoot Admin to run 2 instances via Docker Swarm

I'm very new to SpringBoot Admin, HazelCast and Docker Swarm... What I'm trying to do is to run 2 instances of SpringBoot Admin Server, in Docker Swarm. It works fine with one instance. I have every feature of SBA working well. If I set the number…
John Student
  • 298
  • 1
  • 6
  • 18
2
votes
0 answers

SpringBootAdmin configuration behind SpringCloudGateway

My Spring-Boot-Admin-service is running in a docker-container behind a Spring-Gateway. For this I configured the public-url this way: spring: boot: admin: ui: public-url: "https://myAppname.intranet.cnb/monitoring/" My problem…
2
votes
3 answers

Spring Cloud Kubernetes get url with custom spring.servlet.context-path

We are currently using Spring Boot Admin for monitoring our microservices inside the OpenShift cluster. Spring Boot Admin aplication get information about services from the Openshift's Service Discovery using spring-cloud-starter-kubernetes…
2
votes
0 answers

Spring boot admin – high CPU usage on client

I have one application which uses Spring Boot Admin Server library (v2.2.1) to monitor the other applications with integrated Spring Boot Client library (v2.2.1). It works very well; server tracks status of client applications with low performance…
John Smith
  • 333
  • 2
  • 11
2
votes
1 answer

Spring boot admin listing kubernetes internal urls. Not able to navigate to the application page

Problem Trying to use Spring boot admin to do a deep monitoring of spring boot micro services running in Kubernetes. Spring boot admin listing the micro services but pointing to the internal IPs. Spring boot admin application listing page…
2
votes
2 answers

Spring-Boot-Admin application not starting because of error creating bean with name adminHandlerMapping

I am following this blog to try out a Spring-Boot-Admin application. And when I run the app it fails with the below error: Application run failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name…
raikumardipak
  • 1,461
  • 2
  • 29
  • 49
2
votes
1 answer

Spring Boot Admin client POST to admin/instances with configured user and password raise 403 forbidden for all clients

I've integrated SBA to the project. Without any authentication all clients register for SBA server and I can see all actuator endpoints, which I've opened. I wish to have login page at SBA admin page and wish open registration only for SBA clients…
2
votes
2 answers

Spring Boot Admin Server can't get access to endpoints (Unauthorized 401)

I have configured my own in-memory authentication config and my application can register itself at Spring Boot Admin Server and the server gets the right credentials, but it still gets an unauthorized response from my application. If I enter the…
qwer1993
  • 39
  • 6
2
votes
1 answer

Spring boot admin with Eureka client and custom context path fails on health status

I have configured my spring boot application monitor-client to register to Eureka. I have a separate spring boot admin (SBA) application monitor that monitors all applications registered to Eureka. If the context-path is not set in my application,…
phury
  • 2,123
  • 2
  • 21
  • 33
2
votes
2 answers

Monitoring replicas with Spring Boot Admin on Kubernetes

I setted up a Spring Boot Admin Client on Kubernetes and scaled up to 3 replicas, but when I try to check the instances the Admin Server show just one
2
votes
2 answers

Spring Boot Admin does not detect service after restarting

I have an environment with different services. They all are deployed and managed by Docker images and Kubernetes. I also use spring-boot-admin in order to monitor them all and spring-cloud-kubernetes to discover all the services automatically. This…
2
votes
1 answer

Spring Boot Admin : java.io.IOException: Broken pipe

This is the error, i am getting collected from the spring boot log. Servlet.service() for servlet [dispatcherServlet] threw exception java.io.IOException: Broken pipe Also, Now not able to see any application in spring boot admin page, only the…
Indrajeet Gour
  • 4,020
  • 5
  • 43
  • 70
2
votes
0 answers

Spring Boot Admin does not send email when services goes offline

I have an environment with different services. I use Spring Boot Admin in order to monitor them therefor I wanted to implement an email notification when any services goes offline. I have followed the official documentation:…