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
22
votes
4 answers

Recurring AsyncRequestTimeoutException in Spring Boot Admin log

I'm currently running Spring Boot Admin on my local machine for testing purposes and I'm getting the following error nonstop. The application itself seems to be working fine, but my logs are getting filled with these errors. I'm not sure why... …
Martin
  • 365
  • 1
  • 3
  • 9
17
votes
4 answers

Calling [asyncError()] is not valid for a request with Async state [MUST_DISPATCH]

env: case 1: client : springboot(1.5.12.RELEASE) + spring-boot-admin-starter-client 1.5.7 admin: springboot(2.1.1.RELEASE) + spring-boot-admin-starter-server 2.1.1 when i run client,and refresh admin app. the error is "Calling [asyncError()] is not…
xi wang
  • 171
  • 1
  • 1
  • 3
12
votes
2 answers

How to access actuator endpoints behind oAuth2 security from spring boot admin

I've spring boot applications secured by oAuth2, I am able to access applications from spring boot admin only when actuator endpoints are not secured. I've checked the security samples on github even there /health endpoint was not secured. Is there…
user3363551
  • 161
  • 1
  • 5
12
votes
4 answers

Unauthorized in spring boot admin

I wanted to control the microservices that are running in the Eureka server. I used spring-boot-admin for this, but I am getting the error on accessing the information about the Trace,Log etc... The error I am getting is Error:…
11
votes
3 answers

Error creating bean named `conversionServicePostProcessor` when using spring-boot-admin-server

I was trying to enable Spring boot admin server for my application. The default settings work perfectly fine but when I attempt to enable security, I am getting following error: APPLICATION FAILED TO START Description: The bean…
Prashant
  • 4,775
  • 3
  • 28
  • 47
10
votes
3 answers

Spring Boot Admin uses HTTP instead of HTTPS Actuator Endpoints

After the registration at the Spring Boot Admin (SBA) Server, some actuators of the clients get adressed with http://springapplication.com/actuator instead of https://springapplication.com/actuator. Why does it change the endpoints to HTTP and…
viertel97
  • 123
  • 1
  • 8
9
votes
3 answers

Metrics Collection for Spring Boot REST APIs

I am trying to collect metrics for my Spring Boot(2.1.0.RELEASE) Application. Specifically, I want to know No of times individual REST endpoints were called. Time taken by each of those endpoints to process the request. Average rate at which my…
8
votes
2 answers

Spring Boot Admin - Too Many open Files In System Error

I'm trying to run spring-boot-admin on ECS Fargate - and after a few minutes the server dies and the logs are filled with 'too many open files in system' errors. I'm using spring-boot 2.3.1, and have tried 2.2.3 and the 2.3.0-SNAPSHOT of…
Andrew B
  • 1,618
  • 2
  • 21
  • 30
8
votes
3 answers

Spring Boot Actuator - MAX property

I am using Spring Boot Actuator dependency to get insights of application. For that, I have used Spring Boot Admin. Configuration for client-server is working fine. I have to measure the count, total-time, max for endpoints which are going to…
Romil Patel
  • 12,879
  • 7
  • 47
  • 76
8
votes
1 answer

Eureka Server and Spring Boot Admin in one Application

I try to run Eureka Server and Spring Boot Admin Server in one Application (SBA Docu says this is possible). Eureka is working as intended but the Admin App still shows zero Applications. Spring Boot Version 2.0.3, Spring Boot Admin Version…
Domo
  • 560
  • 5
  • 18
8
votes
2 answers

Spring Boot Admin Client not registering an application

I have setup a SpringBootAdmin server, and trying to register an application with SpringBootAdmin client. It does not seem to be registering. Do I neccesarily have to register with Eureka? How do I debug? Configuration on…
user3478180
  • 101
  • 1
  • 1
  • 5
8
votes
0 answers

Register Dropwizard(Spring MVC) application in springboot admin UI

I have a REST API developed using spring MVC and Dropwizard. I have created healthchecks using the Dropwizard framework. Now I looking how to register this API to Springboot admin so that I can see all the metrics on the admin UI. I have other API's…
7
votes
0 answers

Spring Boot admin not showing any client applications in dashboard

I have been following this tutorial for Spring boot Admin, but when I run the admin application I can't see any spring boot client application for monitoring. I have checked that both the admin and client apps are running. Admin is running on port…
Abhishek Galoda
  • 2,753
  • 24
  • 38
6
votes
1 answer

Spring Boot - How to check specific application URLs for status 200

I have several applications monitored under Spring Boot Admin. Spring Boot Admin is great at telling me if an application is up or down and other various metrics. I would also like to know that certain URLs exposed by these applications are…
user8297969
  • 415
  • 1
  • 6
  • 18
5
votes
1 answer

Spring boot authentication - admin console 403 response to client

I'm using jdk 1.8 and Spring boot 2.1.2. I would like to enable authentication in administration console of Spring Boot and in its clients. I setted in Administration…
Stefania
  • 641
  • 1
  • 12
  • 34
1
2 3
22 23