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
3
votes
1 answer

Spring Boot Admin with Eureka and Docker Swarm

EDIT/SOLUTION: I've got it, partly thanks to @anemyte's comment. Although the eureka.hostname Property was not the issue at play (though it did warrant correction), looking more closely got me to the true cause of the problem: the network interface…
filpa
  • 3,651
  • 8
  • 52
  • 91
3
votes
1 answer

How shutdown feature can be enabled in SpringBoot Admin UI?

I am trying to monitor my spring boot application, which has actuator support. And to be able to set a SpringBootAdmin server and client. I enabled the shutdown endpoint in the client application by adding the following to the application.properties…
StruggleLion
  • 99
  • 1
  • 2
  • 7
3
votes
0 answers

Error resolving template "instances" when running on weblogic

I'm probably missing some configuration, but I cannot find out which one. I have working client app and running monitoring app, everyting works when both executed as a "standalone" apps, meaning, that they do not run in any application server. But…
Martin Mucha
  • 2,385
  • 1
  • 29
  • 49
3
votes
0 answers

How to fix "⚠️Configuring INFO failed." when trying to set ROOT logger level in Spring Boot Admin?

When clicking the INFO button for the ROOT logger, I'm seeing the error ⚠️Configuring INFO failed.. I'm also seeing that the Reset button is grayed out. Setting and resetting the log level for other classes and packages works fine. I'm seeing that…
Noel Yap
  • 18,822
  • 21
  • 92
  • 144
3
votes
0 answers

Spring Boot Admin 2 getting Actuator endpoints 401

I have created Spring Boot Admin 2 Server and integrated Spring Boot Admin 2 Client in my API service application. Currently my API service project is protected with OAuth2 Framework. In order to bypass the actuator endpoints I have added the…
3
votes
2 answers

spring boot admin showing only details tab

I am not getting any other tabs like Environment,Loggers.Threads,Traces etc.. Except Details tab in Spring Boot Admin page.I have created the following micro services. 1)EurekaServer 2)ZuulGateway 3)Eurekaclient --2 instances For all microservies…
nithin
  • 371
  • 9
  • 24
3
votes
0 answers

Spring Boot Admin 2.0.0: Client cannot Connect to Secured Server

Spring Boot Admin works fine without the spring-boot-starter-security dependency. As soon as I include it, no matter how I configure the security (by application.yml or WebSecurityConfigurerAdapter) everything seems beeing weird. The result I´m…
ndueck
  • 713
  • 1
  • 8
  • 27
3
votes
2 answers

Spring-Boot-Admin server fails to register clients from Eureka registry

I just created a new Spring-Boot-Admin project from the Initializr, and followed the instructions from here: http://codecentric.github.io/spring-boot-admin/2.0.0/ Here is my…
JCN
  • 509
  • 1
  • 11
  • 25
3
votes
2 answers

how to use spring boot admin in docker swarm

Spring boot admin works fine if I run the spring boot app as an individual container under the same network. How do I make it work for stack deployment or in swarm mode? I tried creating a compose file with spring boot app and spring boot admin and…
ari
  • 61
  • 6
3
votes
2 answers

Add a custom tab on SpringBoot Admin Server

I'm fairly new to Spring. I am trying to integrate custom information from a service into Spring Boot Admin server dashboard. Out of the box, the Spring boot admin server dashboard for a microservice contains tabs for Details, Metrics..etc. I need…
2
votes
2 answers

Spring Admin Server on Kubernetes doesn't register new pods

I deployed Spring Boot Admin on an Azure Kubernetes Cluster. At first I get the pods of my app displayed as "UP". After restarting the deployment of the pods all pods are down and the new pods aren't recognized by Spring Boot Admin server. Is there…
ed40721
  • 31
  • 2
2
votes
0 answers

Add the same pattern to fields of the same type in Spring Swagger

I have a lot of Apis in my Spring application. And I need to create a swagger for it. One of the field types, that I use a lot in different classes is: MyDate. Which in the swagger I want to be defined as string with a pattern. I can use the next…
Sarah Sh
  • 451
  • 5
  • 15
2
votes
0 answers

Spring boot admin giving error as Unknownhost exception while registering client

I am getting below error when I am trying to register Spring boot admin client Failed to register application as Application (name=JSONXML Micro Service, managementUrl=http://jsonxml-wrapper/jsonxml/actuator,…
2
votes
0 answers

Spring Boot Admin Compatibility Spring Boot Version and Logging Instances

I would like to know if there is a table of compatibility from Spring Boot Version and Spring Boot Admin. At the link: https://start.spring.io/actuator/info it describes that the compatibility from this 2 components…
2
votes
1 answer

spring boot admin page keeps on loading applications

My spring boot admin keeps on loading applications forever I only can only see the following error in console. We are running the container behind proxy and I have configured the required properties as below. server: forward-headers-strategy:…
Mohit Singh
  • 496
  • 2
  • 11
1 2
3
22 23