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

Can i use Spring Boot Admin Server as rest api?

I have succesfully configured sba and and admin clients. Is it possible to use sba as a rest provider? Is there any documentation for using it as api?
0
votes
1 answer

spring admin server ui : metrics and info end points are not mapping (returns 404)

I have a spring cloud services with the following spring package versions org.springframework.boot
0
votes
2 answers

Spring Boot Admin: 401 on Jolokia endpoint causes authentication to fail

I am using Spring-Boot-Admin in order to monitor a SpringBoot app whose actuator endpoints are secured using basic auth. The required credentials are transferred to Spring-Boot-Admin (SBA) like described in the documentation. SBA itself is also…
0
votes
2 answers

Log action in Spring Boot Admin

How to configure Spring Boot Admin to log action. For example, I want Spring Boot Admin log action when someone change log level form INFO to DEBUG or when someone change configuration value in JMX tab and write wrong configure override the…
Little J
  • 21
  • 8
0
votes
1 answer

Spring Boot Admin illegal character while health check

I have deployed few Spring boot applications using spring cloud Netflix OSS and configured Spring boot Admin to monitor those application connecting to Eureka server. But for two of the applications, I am getting below error. Could you please let me…
Debopam
  • 3,198
  • 6
  • 41
  • 72
0
votes
1 answer

Using spring-boot-admin for a non spring-boot project

tl;dr Requesting suggestions, guidelines or examples for possibilities to extend spring-boot-adminto use methods other than HTTP requests for health moitoring of non-spring projects like MariaDB. Full version There is a requirement to setup a…
Tejas Kumar
  • 53
  • 2
  • 7
0
votes
0 answers

Spring boot admin oauth2 keycloak

I have a spring boot application secured with keycloak. I have a client in keycloak specific for this application. Now I want to deploy spring boot admin and also implement keycloak on it. My question is how can I let the spring-boot-admin talk to…
Kevin
  • 101
  • 5
0
votes
1 answer

springboot admin: How to display custom metrics in springboot admin GUI ("Metrics" tab)

We are using serveral microservices with springboot (Vers. 1.4.3) and for monitoring them springboot-admin (Vers. 1.5.0). Inside our microservices we generate several custom metrics (using the '@com.codahale.metrics.annotation.Timed'…
creator_11
  • 701
  • 1
  • 7
  • 12
0
votes
1 answer

Spring Boot Admin - info.version

We have a service which uses a custom context path. In order to correctly register our Service on Eureka Server, we've set the…
hublo
  • 1,010
  • 2
  • 12
  • 33
0
votes
1 answer

How can I redirect http to https when I'm using AWS ELB + Spring Boot?

I'm setting up Spring Boot Admin which is behind AWS ELB. Configuration is... ELB(http, 80) --> Application (8080) ELB(https, 443) --> Application (8080) And, there is /ping endpoint for ELB health check. I want every ELB http request to be…
chaeyk
  • 491
  • 1
  • 8
  • 20
0
votes
1 answer

How to enable environment manager in spring-boot-admin

I have a couple spring-boot applications (clients) and one spring-boot-admin. I would like to manage environment variables in my clients applications but by default spring-boot-admin-starter-client and spring-boot-admin-starter-server does not…
jswieca
  • 115
  • 1
  • 2
  • 12
0
votes
1 answer

Spring Boot Admin Threads Blocked Count explanation

We are using Spring Boot for our restful services. Today for other reasons I visited the Spring Boot Admin Threads page and discovered the following statistics: Blocked count 307 Blocked time -1 Waited count 398265 Waited time -1 Lock name …
theINtoy
  • 3,388
  • 2
  • 37
  • 60
0
votes
1 answer

Spring boot admin 1.5.1 does not display logging managment with spring boot 1.5.2.RELEASE

i'm using spring boot admin 1.5.1 along with spring-boot 1.5.2.RELEASE. everything works fine, expect that the logging managment tab is hidden. i tried to access my client app(spring-boot 1.5.2) logging api and it works fine. according to the …
Elia Rohana
  • 326
  • 3
  • 16
0
votes
2 answers

How we can use loglevel-management by using Spring Boot Admin?

Currently i am using logback for logging purpose , i just heard about spring boot admin but does not get an exact idea about how to implement loglevel-management by using Spring Boot Admin , please any one tell me how we can implement this .Thanks…
Harshad_Kenjale
  • 192
  • 3
  • 18
0
votes
0 answers

spring boot 1.4 unable to find the location

I put the path for jks file in application.yml ssl: trustStorePath: keystore/pas_ist.jks and reading this like @Value("${ssl.trustStorePath}") String trustStorePath Its working fine in spring boot 1.3 , but not working in 1.4 , getting the…