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
1
vote
1 answer

How to change spring application name while registering with eureka

By default eureka uses spring.application.name for application name. don't want to use the default one. Any property to change application name in eureka ?
1
vote
1 answer
1
vote
0 answers

Spring Boot Admin unable to access pods

I'm trying to run a Spring Boot Admin application on Kubernetes using Spring Cloud Discovery (without Eureka or Zuul. It directly scrapes from Kubernetes API) I've setup necessary RBAC and Ingress/Egress for the application to access Kubernetes API…
1
vote
1 answer

SpringBoot Admin - How to prevent SpringBoot Admin Server to register itself?

Small question regarding Spring Boot Admin (SBA) please. I can register clients to SBA Server fine, very happy. Unfortunately, the server itself registers to itself. The usage of SBA is to monitor and have information on the SBA clients. I am having…
PatPanda
  • 3,644
  • 9
  • 58
  • 154
1
vote
1 answer

Springboot Admin server unable to fetch updates from client it says [Did not observe any item or terminal signal]

I am trying to monitor my spring-boot application using spring-boot-admin server, but it is saying that all the instances are down. Admin Server pom.xml
S.Goswami
  • 25
  • 1
  • 8
1
vote
2 answers

Access secured actuators from Spring Boot Admin with Kubernetes Service Discovery

I've got a Spring Boot Admin application which uses a Kubernetes Service Discovery to get the Spring Boot client applications. spring: cloud: kubernetes: discovery: all-namespaces: true service-labels: …
Matthias M
  • 12,906
  • 17
  • 87
  • 116
1
vote
0 answers

Spring Boot Admin not working after deployment in Tomcat

We are trying to deploy our newly created Spring Admin UI for monitoring purposes. We followed this tutorial to do so A Guide to Spring Boot Admin| Baeldung There is no additional bean configuration there. Is this the problem? $sudo java -jar…
mnhmilu
  • 2,327
  • 1
  • 30
  • 50
1
vote
1 answer

Specify spring expression language filter for KubernetesDiscoveryClient in Spring Boot Admin

I've specified a spring expression language filter in my spring boot admin application: filter: "'.*string.*'" And I get this error: org.springframework.expression.spel.SpelEvaluationException: EL1001E: Type conversion problem, cannot convert from…
Matthias M
  • 12,906
  • 17
  • 87
  • 116
1
vote
1 answer

SpringBoot Admin - Kubernetes - server to override client URL

Question regarding SpringBot admin deployed on Kubernetes. The SpringBoot Admin server starts fine. Then, the SpringBoot app (client) starts fine. The SpringBoot client application correctly registered himself. (Can see [gistrationTask1]…
PatPanda
  • 3,644
  • 9
  • 58
  • 154
1
vote
0 answers

Spring Boot Admin - Polling duration changes not working

Based on latest version of spring boot admin (https://codecentric.github.io/spring-boot-admin/current/), we can configure the polling duration (in ms) to fetch the data. The default for this is 2500 ms and I have updated it to 250000 ms. However,…
MBl
  • 11
  • 1
1
vote
0 answers

spring-boot-admin-sample-reactive coming as part of spring-cloud-starter-gateway jar and not able to exclude it

I have created a project and included spring-cloud-starter-gateway jar, currently which is failing for vulnerability in nexus for spring-boot-admin-sample-reactive jar although in Eclipse in dependency hierarachy i don't see this jar and cannot…
1
vote
1 answer

Does spring-boot-admin support sso?

I'm trying to integrate spring-boot-admin with my corporate SSO, does spring-boot-admin support sso login? I cannot find documentation about it.
1
vote
2 answers

Sending client security username and password to Spring Boot Admin via Spring Cloud Kubernetes Service Discovery

I am able to discover all services in my namespace and display them on spring boot admin but some of the clients have username/pass protection on some of the actuator endpoints. How can I get this information to spring boot admin via the kubernetes…
1
vote
1 answer

How do I get instanceID when I use spring boot admin?

I want to integrate the springbootadmin monitoring detail page into our own management system, how can I get the instanceId of the detail page? for example localhost:8020/instances/5f3d1f8ee6a0/details,I want to know how can I get 5f3d1f8ee6a0
chongli_j
  • 13
  • 2
1
vote
2 answers

How do I override per-instance settings in Spring Boot Admin when using Kubernetes discovery

I'm running a Spring Boot Admin server (2.2.2) and using Spring Cloud Kubernetes discovery (with specific service labels to filter) to detect my client apps. None of my client apps are using the explicit Spring Boot Admin Client dependency…
wabrit
  • 217
  • 2
  • 14