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
0 answers

How to configure spring-boot application to use custom HostnameVerifier?

I have a system of several spring-boot 2.1.x applications, communicating over https. The hostnames are generated at runtime, according to a naming schema, with variable suffixes - and the IP addresses are also generated at runtime, in an OpenShift…
razvanone
  • 1,351
  • 18
  • 27
2
votes
0 answers

Spring Boot Admin server on Cloud Foundry with SimpleDiscoveryClient

I am trying to setup a Spring Boot Admin server on a Cloud foundry. I am using the client Spring Cloud Discovery with SimpleDiscoveryClient configuration. We are not having any Thrid Party service discovery client like eureka. I can see the service…
sagar27
  • 3,121
  • 3
  • 27
  • 37
2
votes
0 answers

Spring Boot Admin: Either health or status endpoint must be enabled

I got an error when a running client service. 018-09-29 16:10:49.072 ERROR 14815 --- [gistrationTask1] o.s.s.s.TaskUtils$LoggingErrorHandler : Unexpected error occurred in scheduled task. java.lang.IllegalStateException: Either health or…
cccandy
  • 54
  • 9
2
votes
0 answers

Implement MailNotifier

I would like not to use Spring Boot Admin built-in MailNotifier but use an own implemented version. I suppose I would have to implement AbstractEventNotifier but how to avoid the use of the built-in MailNotifier?
y.luis.rojo
  • 1,794
  • 4
  • 22
  • 41
2
votes
1 answer

How to customize Spring Boot admin 2.o UI?

How to customize Spring Admin 2.0 UI? I want to add some new tabs and delete some of the Info on the Admin screen.
2
votes
1 answer

Spring boot client fails to register Spring boot admin (version 2.x)

I am running spring boot application with basic authentication enabled and spring boot admin with UI security enabled . My spring boot client fails to register to the spring boot admin server . Below are the logs : 2018-08-23 15:17:09.676 DEBUG 4992…
2
votes
2 answers

Where can I place the icon to get picked up by spring-boot-admin?

I am trying to replace default favicon and main page svg. I placed them in resources: assets/img/my-logo.svg favicon.ico and in application.yml spring.boot.admin.ui.brand: "MyBoot Monitor" Still its…
Anand Varkey Philips
  • 1,811
  • 26
  • 41
2
votes
0 answers

Spring Boot Admin- OAuth2 Security

currently I'm working on spring boot admin and trying to monitor my REST APIs which I've written in Spring Boot and secured them with OAuth2. Now I want to monitor my APIs with spring boot admin, how do I do that?
shreya
  • 159
  • 2
  • 4
  • 14
2
votes
1 answer

Client application not registering on SBA server

I have an application running as a Spring boot admin server and a couple of client microservices which register successfully on the server - even on Docker. However, I have one client application which does not register on the SBA server. I have…
Khushbu
  • 51
  • 5
2
votes
0 answers

Need to update the Spring-boot-admin UI url

How do I update the default URL for the Spring-Boot admin UI. By default it comes up at http://localhost:8080 . I want the admin UI to come up at something like http://localhost:8080/mypath
Praveen Singh
  • 219
  • 1
  • 2
  • 7
2
votes
1 answer

Spring Boot Admin 2.0.0 Eureka 1.9.2 Not Displaying Any Apps

I have 3 apps running and registered in the Eureka server, when I go to http://localhost:8761/eureka/apps I can see them all: 1 UP_3_
bajistaman
  • 62
  • 8
2
votes
1 answer

How to change properties values via Spring Boot Admin Console?

I have a Spring boot application with Spring Boot Admin Console: It shows Details, Metrics etc. Also there a Environment tab. Is it possible to change application.properties values via Environment tab? If I add new value to property key and push…
May12
  • 2,420
  • 12
  • 63
  • 99
2
votes
3 answers

Spring Boot Admin registering error

I get this on server log when trying to register an app: Failed to read HTTP message: org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Can not construct instance of de.codecentric.boot.admin.model.Application:…
y.luis.rojo
  • 1,794
  • 4
  • 22
  • 41
2
votes
1 answer

Displaying custom actuator endpoints in springboot admin

I would like to display my custom actuator endpoint for an application registered with springboot admin. By default it only displays health, management and service url's. Is there a way to make this happen? Thanks
user3536652
  • 153
  • 2
  • 12
2
votes
1 answer

springfox doesn't work with spring-boot-admin-server

My spring boot application has integrated swagger-ui with springfox and spring admin server. However, I found the swagger ui could not display when I add the annotation @EnableAdminServer. I searched for issues in both repo on github and I found…
Jayce
  • 93
  • 1
  • 2
  • 7