1. What is Spring Boot Admin?
Spring Boot Admin is a application to manage and monitor your Spring Boot Applications. The applications register with our Spring Boot Admin Client (via HTTP) or are discovered using Spring Cloud (e.g. Eureka). The UI is just an AngularJs application on top of the Spring Boot Actuator endpoints.
2. Getting started
2.1. Setting up Spring Boot Admin Server
First you need to setup your server. To do this just setup a simple boot project (using start.spring.io for example).
-
Add Spring Boot Admin Server and the UI to your dependencies:
pom.xml<dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-server</artifactId> <version>1.5.2</version> </dependency> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-server-ui</artifactId> <version>1.5.2</version> </dependency>
-
Pull in the Spring Boot Admin Server configuration via adding
@EnableAdminServer
to your configuration:@Configuration @EnableAutoConfiguration @EnableAdminServer public class SpringBootAdminApplication { public static void main(String[] args) { SpringApplication.run(SpringBootAdminApplication.class, args); } }
If you want to setup the Spring Boot Admin Server via war-deployment in a servlet-container, please have a look at the spring-boot-admin-sample-war. |
See also the spring-boot-admin-sample project, which also adds security.
2.2. Registering client applications
To register your application at the SBA Server you can either include the SBA Client or use Spring Cloud Discovery (e.g. Eureka)
2.2.1. spring-boot-admin-starter-client
Each application that wants to register has to include the Spring Boot Admin Client.
-
Add spring-boot-admin-starter-client to your dependencies:
pom.xml<dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-client</artifactId> <version>1.5.2</version> </dependency>
-
Enable the SBA Client by configuring the URL of the Spring Boot Admin Server:
application.ymlspring.boot.admin.url: http://localhost:8080 (1) management.security.enabled: false (2)
1 The URL of the Spring Boot Admin Server to register at. 2 Since Spring Boot 1.5.x all endpoints are secured by default. For the sake of brevity we’re disabling the security for now. Have a look at the security section on how to deal with secured endpoints.
2.2.2. Spring Cloud Discovery
If you already use Spring Cloud Discovery for your applications you don’t need the SBA Client. Just make the Spring Boot Admin Server a DiscoveryClient, the rest is done by our AutoConfiguration.
The following steps are for using Eureka, but other Spring Cloud Discovery implementations are supported as well. There are examples using Consul and Zookeeper.
Also have a look at the Spring Cloud documentation.
-
Add spring-cloud-starter-eureka to you dependencies:
pom.xml<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka</artifactId> </dependency>
-
Enable discovery by adding
@EnableDiscoveryClient
to your configuration:@Configuration @EnableAutoConfiguration @EnableDiscoveryClient @EnableAdminServer public class SpringBootAdminApplication { public static void main(String[] args) { SpringApplication.run(SpringBootAdminApplication.class, args); } }
-
Tell the Eureka client where to find the service registry:
application.ymleureka: (1) instance: leaseRenewalIntervalInSeconds: 10 client: registryFetchIntervalSeconds: 5 serviceUrl: defaultZone: ${EUREKA_SERVICE_URL:http://localhost:8761}/eureka/ management.security.enabled: false (2)
1 Configuration section for the Eureka client 2 Since Spring Boot 1.5.x all endpoints are secured by default. For the sake of brevity we’re disabling the security for now. Have a look at the security section on how to deal with secured endpoints.
See also spring-boot-admin-sample-eureka.
You can include the Spring Boot Admin Server to your Eureka server. Setup everything as described above and set spring.boot.admin.context-path to something different than "/" so that the Spring Boot Admin Server UI won’t clash with Eureka’s one.
|
3. Client applications
3.1. Show version in application list
To have the version show up in the application list you can use the build-info
goal from the spring-boot-maven-plugin
, which generates the META-INF/build-info.properties
. See also the Spring Boot Reference Guide.
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>build-info</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
3.2. JMX-bean management
To interact with JMX-beans in the admin UI you have to include Jolokia in your application. In case you are using the spring-boot-admin-starter-client
it will be pulled in for you, if not add Jolokia to your dependencies:
<dependency>
<groupId>org.jolokia</groupId>
<artifactId>jolokia-core</artifactId>
</dependency>
3.3. Loglevel management
For applications using Spring Boot 1.5.x (or later) you can manage loglevels out-of-the-box.
For applications using older versions of Spring Boot the loglevel management is only available for Logback. It is accessed via JMX so include Jolokia in your application. In addition you have configure Logback’s JMXConfigurator
:
Unresolved directive in client.adoc - include::/home/travis/build/codecentric/spring-boot-admin/spring-boot-admin-samples//spring-boot-admin-sample/src/main/resources/logback-spring.xml[]
In case you are deploying multiple applications to the same JVM and multiple Logback-JMX-beans are present, the UI will select the JMXConfigurator with the context-name equals to your applications name. In this case you need to set the contextName in your logback-configuration.
|
3.4. Spring Boot Admin Client
The Spring Boot Admin Client registers the application at the admin server. This is done by periodically doing a HTTP post request to the SBA Server providing information about the application. It also adds Jolokia to your application, so that JMX-beans are accessible via HTTP.
There are plenty of properties to influence the way how the SBA Client registers your application. In case that doesn’t fit your needs, you can provide your own AppliationFactory implementation.
|
Property name | Description | Default value |
---|---|---|
spring.boot.admin.client.enabled |
Enables the Spring Boot Admin Client. |
|
spring.boot.admin.url |
Comma separated ordered list of URLs of the Spring Boot Admin server to register at. This triggers the AutoConfiguration. Mandatory. |
|
spring.boot.admin.api-path |
Http-path of registration endpoint at your admin server. |
|
spring.boot.admin.username |
Username and password in case the SBA Server api is protected with HTTP Basic authentication. |
|
spring.boot.admin.period |
Interval for repeating the registration (in ms). |
|
spring.boot.admin.auto-registration |
If set to true the periodic task to register the application is automatically scheduled after the application is ready. |
|
spring.boot.admin.auto-deregistration |
Switch to enable auto-deregistration at Spring Boot Admin server when context is closed. |
|
spring.boot.admin.register-once |
If set to true the client will only register against one admin server (in order defined by |
|
spring.boot.admin.client.health-url |
Client-health-url to register with. Can be overridden in case the reachable URL is different (e.g. Docker). Must be unique in registry. |
Guessed based on management-url and |
spring.boot.admin.client.management-url |
Client-management-url to register with. Can be overridden in case the reachable url is different (e.g. Docker). |
Guessed based on service-url, |
spring.boot.admin.client.service-url |
Client-service-url to register with. Can be overridden in case the reachable url is different (e.g. Docker). |
Guessed based on hostname, |
spring.boot.admin.client.name |
Name to register with. |
|
spring.boot.admin.client.prefer-ip |
Use the ip-address rather then the hostname in the guessed urls. If |
|
spring.boot.admin.client.metadata.* |
Metadata key-value-pairs to be associated with this instance. |
Key | Value | Default value |
---|---|---|
user.name |
Credentials being used to access the endpoints. |
4. Spring Boot Admin Server
Property name | Description | Default value |
---|---|---|
spring.boot.admin.context-path |
The context-path prefixes the path where the Admin Server’s statics assets and API should be served. Relative to the Dispatcher-Servlet. |
|
spring.boot.admin.monitor.period |
Time interval in ms to update the status of applications with expired status-information. |
10.000 |
spring.boot.admin.monitor.status-lifetime |
Lifetime of application statuses in ms. The applications /health-endpoint will not be queried until the lifetime has expired. |
10.000 |
spring.boot.admin.monitor.connect-timeout |
Lifetime of application statuses in ms. The applications /health-endpoint will not be queried until the lifetime has expired. |
2.000 |
spring.boot.admin.monitor.read-timeout |
Lifetime of application statuses in ms. The applications /health-endpoint will not be queried until the lifetime has expired. |
5.000 |
spring.boot.admin.routes.endpoints |
The enpoints which will be available via spring boot admin zuul proxy. If you write ui modules using other endpoints you need to add them. |
|
4.1. Spring Cloud Discovery
The Spring Boot Admin Server can use Spring Clouds DiscoveryClient
to discover applications. The advantage is that the clients don’t have to include the spring-boot-admin-starter-client
. You just have to add a DiscoveryClient to your admin server - everything else is done by AutoConfiguration.
The setup is explained above.
4.1.1. ServiceInstanceConverter
The information from the service registry are converted by the ServiceInstanceConverter
. Spring Boot Admin ships with a default and Eureka converter implementation. The correct one is selected by AutoConfiguration.
You can modify how the information from the registry is used to register the application by using SBA Server configuration options and instance metadata. The values from the metadata takes precedence over the server config. If the plenty of options don’t fit your needs you can provide your own ServiceInstanceConverter .
|
When using Eureka, the healthCheckUrl known to Eureka is used for health-checking, which can be set on your client using eureka.instance.healthCheckUrl .
|
Property name | Description | Default value |
---|---|---|
spring.boot.admin.discovery.enabled |
Enables the DiscoveryClient-support for the admin server. |
|
spring.boot.admin.discovery.converter.management-context-path |
Will be appended to the service-url of the discovered service when the management-url is converted by the |
|
spring.boot.admin.discovery.converter.health-endpoint-path |
Will be appended to the management-url of the discovered service when the health-url is converted by the |
|
spring.boot.admin.discovery.ignored-services |
This services will be ignored when using discovery and not registered as application. Supports simple patterns (e.g. "foo*", "bar", "foo*bar"). |
|
spring.boot.admin.discovery.services |
This services will be included when using discovery and registered as application. Supports simple patterns (e.g. "foo*", "bar", "foo*bar"). |
|
Key | Value | Default value |
---|---|---|
user.name |
Credentials being used to access the endpoints. |
|
management.port |
The port is substituted in the service URL and will be used for accessing the actuator endpoints. |
|
management.context-path |
The path is appended to the service URL and will be used for accessing the actuator endpoints. |
|
health.path |
The path is appended to the service URL and will be used for the health-checking. Ignored by the |
|
4.2. Clustering
Spring Boot Admin Server supports cluster replication via Hazelcast. It is automatically enabled when a HazelcastConfig
- or HazelcastInstance
-Bean is present. You can also configure the Hazelcast instance to be persistent, to keep the status over restarts.
Also have a look at the Spring Boot support for Hazelcast.
-
Add Hazelcast to your dependencies:
pom.xml<dependency> <groupId>com.hazelcast</groupId> <artifactId>hazelcast</artifactId> </dependency>
-
Instantiate a HazelcastConfig:
@Configuration @EnableAutoConfiguration @EnableAdminServer public class SpringBootAdminApplication { @Bean public Config hazelcastConfig() { return new Config().setProperty("hazelcast.jmx", "true") .addMapConfig(new MapConfig("spring-boot-admin-application-store").setBackupCount(1) .setEvictionPolicy(EvictionPolicy.NONE)) .addListConfig(new ListConfig("spring-boot-admin-event-store").setBackupCount(1) .setMaxSize(1000)); } public static void main(String[] args) { SpringApplication.run(SpringBootAdminApplication.class, args); } }
Property name | Description | Default value |
---|---|---|
spring.boot.admin.hazelcast.enabled |
Enables the Hazelcast support |
|
spring.boot.admin.hazelcast.application-store |
Name of the Hazelcast-map to store the applications |
|
spring.boot.admin.hazelcast.event-store |
Name of the Hazelcast-list to store the events |
|
4.3. Notifications
4.3.1. Reminder notifications
The RemindingNotifier
sends reminders for down/offline applications, it delegates the sending of notifications to another notifier.
By default a reminder is triggered when a registered application changes to DOWN
or OFFLINE
. You can alter this behaviour via setReminderStatuses()
. The reminder ends when either the status changes to a non-triggering status or the regarding application gets deregistered.
By default the reminders are sent every 10 minutes, to change this use setReminderPeriod()
. The RemindingNotifier
itself doesn’t start the background thread to send the reminders, you need to take care of this as shown in the given example below;
@Configuration
@EnableScheduling
public class NotifierConfiguration {
@Autowired
private Notifier notifier;
@Bean
@Primary
public RemindingNotifier remindingNotifier() {
RemindingNotifier remindingNotifier = new RemindingNotifier(notifier);
remindingNotifier.setReminderPeriod(TimeUnit.MINUTES.toMillis(5)); (1)
return remindingNotifier;
}
@Scheduled(fixedRate = 60_000L) (2)
public void remind() {
remindingNotifier().sendReminders();
}
}
1 | The reminders will be sent every 5 minutes. |
2 | Schedules sending of due reminders every 60 seconds. |
4.3.2. Filtering notifications
The FilteringNotifier
allows you to filter certain notification based on rules you can add/remove at runtime. It delegates the sending of notifications to another notifier.
If you add a FilteringNotifier
to your ApplicationContext
a RESTful interface on api/notifications/filter
gets available. When this happens the ui shows options to manage the filters.
This notifier is useful if you don’t want recieve notifications when deploying your applications. Before stopping the application you can add an (expiring) filter either via a POST
request or the ui.
@Configuration
@EnableScheduling
public class NotifierConfiguration {
@Autowired
private Notifier delegate;
@Bean
public FilteringNotifier filteringNotifier() { (1)
return new FilteringNotifier(delegate);
}
@Bean
@Primary
public RemindingNotifier remindingNotifier() { (2)
RemindingNotifier notifier = new RemindingNotifier(filteringNotifier());
notifier.setReminderPeriod(TimeUnit.SECONDS.toMillis(10));
return notifier;
}
@Scheduled(fixedRate = 1_000L)
public void remind() {
remindingNotifier().sendReminders();
}
}
1 | Add the FilteringNotifier bean using a delegate (e.g. MailNotifier when configured) |
2 | Add the RemindingNotifier as primary bean using the FilteringNotifier as delegate. |
This examples combines the reminding and filtering notifiers. This allows you to get notifications after the deployed applications hasn’t restarted in a certain amount of time (until the filter expires). |
4.3.3. Mail notifications
Configure a JavaMailSender
using spring-boot-starter-mail
and set a recipient.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-mail</artifactId>
</dependency>
spring.mail.host=smtp.example.com spring.boot.admin.notify.mail.to=admin@example.com
Property name | Description | Default value |
---|---|---|
spring.boot.admin.notify.mail.enabled |
Enable mail notifications |
|
spring.boot.admin.notify.mail.ignore-changes |
Comma-delimited list of status changes to be ignored. Format: "<from-status>:<to-status>". Wildcards allowed. |
|
spring.boot.admin.notify.mail.to |
Comma-delimited list of mail recipients |
|
spring.boot.admin.notify.mail.cc |
Comma-delimited list of carbon-copy recipients |
|
spring.boot.admin.notify.mail.from |
Mail sender |
|
spring.boot.admin.notify.mail.subject |
Mail subject. SpEL-expressions are supported |
|
spring.boot.admin.notify.mail.text |
Mail body. SpEL-expressions are supported |
|
4.3.4. Pagerduty notifications
To enable pagerduty notifications you just have to add a generic service to your pagerduty-account and set spring.boot.admin.notify.pagerduty.service-key
to the service-key you received.
Property name | Description | Default value |
---|---|---|
spring.boot.admin.notify.pagerduty.enabled |
Enable mail notifications |
|
spring.boot.admin.notify.pagerduty.ignore-changes |
Comma-delimited list of status changes to be ignored. Format: "<from-status>:<to-status>". Wildcards allowed. |
|
spring.boot.admin.notify.pagerduty.service-key |
Service-key to use for Pagerduty |
|
spring.boot.admin.notify.pagerduty.url |
The Pagerduty-rest-api url |
|
spring.boot.admin.notify.pagerduty.description |
Description to use in the event. SpEL-expressions are supported |
|
spring.boot.admin.notify.pagerduty.client |
Client-name to use in the event |
|
spring.boot.admin.notify.pagerduty.client-url |
Client-url to use in the event |
4.3.5. Hipchat notifications
To enable Hipchat notifications you need to create an API token from you Hipchat account and set the appropriate configuration properties.
Property name | Description | Default value |
---|---|---|
spring.boot.admin.notify.hipchat.enabled |
Enable Hipchat notifications |
|
spring.boot.admin.notify.hipchat.ignore-changes |
Comma-delimited list of status changes to be ignored. Format: "<from-status>:<to-status>". Wildcards allowed. |
|
spring.boot.admin.notify.hipchat.url |
The HipChat REST API (V2) URL |
|
spring.boot.admin.notify.hipchat.auth-token |
The API token with access to the notification room |
|
spring.boot.admin.notify.hipchat.room-id |
The ID or url-encoded name of the room to send notifications to |
|
spring.boot.admin.notify.hipchat.notify |
Whether the message should trigger a user notification |
|
spring.boot.admin.notify.hipchat.description |
Description to use in the event. SpEL-expressions are supported |
|
4.3.6. Slack notifications
To enable Slack notifications you need to add a incoming Webhook under custom integrations on your Slack account and configure it appropriately.
Property name | Description | Default value |
---|---|---|
spring.boot.admin.notify.slack.enabled |
Enable Slack notifications |
|
spring.boot.admin.notify.slack.ignore-changes |
Comma-delimited list of status changes to be ignored. Format: "<from-status>:<to-status>". Wildcards allowed. |
|
spring.boot.admin.notify.slack.webhook-url |
The Slack Webhook URL to send notifications |
|
spring.boot.admin.notify.slack.channel |
Optional channel name (without # at the beginning). If different than channel in Slack Webhooks settings |
|
spring.boot.admin.notify.slack.icon |
Optional icon name (without surrounding colons). If different than icon in Slack Webhooks settings |
|
spring.boot.admin.notify.slack.username |
Optional username to send notification if different than in Slack Webhooks settings |
|
spring.boot.admin.notify.slack.message |
Message to use in the event. SpEL-expressions and Slack markups are supported |
|
4.3.7. Let’s Chat notifications
To enable Let’s Chat notifications you need to add the host url and add the API token and username from Let’s Chat
Property name | Description | Default value |
---|---|---|
spring.boot.admin.notify.letschat.enabled |
Enable let´s Chat notifications |
|
spring.boot.admin.notify.letschat.ignore-changes |
Comma-delimited list of status changes to be ignored. Format: "<from-status>:<to-status>". Wildcards allowed. |
|
spring.boot.admin.notify.letschat.url |
The let´s Chat Host URL to send notifications |
|
spring.boot.admin.notify.letschat.room |
the room where to send the messages |
|
spring.boot.admin.notify.letschat.token |
the token to access the let´s Chat API |
|
spring.boot.admin.notify.letschat.username |
The username for which the token was created |
|
spring.boot.admin.notify.letschat.message |
Message to use in the event. SpEL-expressions are supported |
|
4.4. UI Modules
Additional to the core UI there are following modules which can be included by adding the jar-file to the classpath:
-
spring-boot-admin-server-ui-activiti
-
spring-boot-admin-server-ui-hystrix
-
spring-boot-admin-server-ui-turbine
4.4.1. Hystrix UI Module
The Hystrix module uses the hystrix-dashboard to display the metrics from Hystrix streams.
-
Add the ui module to your classpath:
pom.xml<dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-server-ui-hystrix</artifactId> <version>1.5.2</version> </dependency>
-
Add the
/hystrix.stream
to the proxified endpoints:application.ymlspring.boot.admin.routes.endpoints: env,metrics,dump,jolokia,info,configprops,trace,logfile,refresh,flyway,liquibase,heapdump,loggers,auditevents,hystrix.stream
4.4.2. Turbine UI Module
The Turbine module uses the hystrix-dashboard to display the metrics from a Turbine stream. The UI module does not configure Turbine for you. Either you run Turbine as a separate application or integrate it into your Spring Boot Admin application. Please see Spring Cloud Reference on setting up Turbine.
-
Add the ui module to your classpath:
pom.xml<dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-server-ui-turbine</artifactId> <version>1.5.2</version> </dependency>
-
Configure the Turbine server and clusters
application.ymlspring.boot.admin.turbine: clusters: default location: turbine (1)
1 Configures the service with id turbine
as Turbine server. URLs are also allowed.
Property name | Description | Default value |
---|---|---|
spring.boot.admin.turbine.enabled |
Enable the Spring Boot Admin backend configuration for Turbine. |
|
spring.boot.admin.turbine.location |
ServiceId or URL (without the |
|
spring.boot.admin.turbine.clusters |
List of available Turbine clusters. |
|
4.4.3. Activiti UI Module
The Activiti module shows information from the /activti
endpoint.
-
Add the ui module to your classpath:
pom.xml<dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-server-ui-activiti</artifactId> <version>1.5.2</version> </dependency>
-
Add the
/activiti
to the proxified endpoints:application.ymlspring.boot.admin.routes.endpoints: env,metrics,dump,jolokia,info,configprops,trace,logfile,refresh,flyway,liquibase,heapdump,activiti
5. Security
5.1. Securing Spring Boot Admin Server
Since there are several approaches on solving authentication and authorization in distributed web applications Spring Boot Admin doesn’t ship a default one.
If you include the spring-boot-admin-server-ui-login
in your dependencies it will provide a login page and a logout button.
A Spring Security configuration could look like this:
@Configuration
public static class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
// Page with login form is served as /login.html and does a POST on /login
http.formLogin().loginPage("/login.html").loginProcessingUrl("/login").permitAll();
// The UI does a POST on /logout on logout
http.logout().logoutUrl("/logout");
// The ui currently doesn't support csrf
http.csrf().disable();
// Requests for the login page and the static assets are allowed
http.authorizeRequests()
.antMatchers("/login.html", "/**/*.css", "/img/**", "/third-party/**")
.permitAll();
// ... and any other request needs to be authorized
http.authorizeRequests().antMatchers("/**").authenticated();
// Enable so that the clients can authenticate via HTTP basic for registering
http.httpBasic();
}
}
For a complete sample look at spring-boot-admin-sample.
If you protect the /api/applications endpoint don’t forget to configure the username and password on your SBA-Client using spring.boot.admin.username and spring.boot.admin.password .
|
There are more samples (e.g. using OAuth2) in joshiste/spring-boot-admin-samples. |
5.2. Securing Client Actuator Endpoints
When the actuator endpoints are secured using HTTP Basic authentication the SBA Server needs credentials to access them. You can submit the credentials in the metadata when registering the application. The BasicAuthHttpHeaderProvider
then uses this metadata to add the Authorization
header to access your application’s actuator endpoints. You can provide your own HttpHeadersProvider
to alter the behaviour (e.g. add some decryption) or add extra headers.
Submitting the credentials using SBA Client:
spring.boot.admin:
url: http://localhost:8080
client:
metadata:
user.name: ${security.user.name}
user.password: ${security.user.password}
Submitting the credentials using Eureka:
eureka:
instance:
metadata-map:
user.name: ${security.user.name}
user.password: ${security.user.password}
The SBA Server masks certain metadata in the HTTP interface to prevent leaking of sensitive information. |
You should configure HTTPS for your SBA Server or (service registry) when submitting credentials via the metadata. |
When using Spring Cloud Discovery, you must be aware that anybody who can query your service registry can obtain the credentials. |
When using this approach the SBA Server decides whether or not the user can access the registered applications. There are more complex solutions possible (using OAuth2) to let the clients decide if the user can access the endpoints. For that please have a look at the samples in joshiste/spring-boot-admin-samples. |
6. FAQs
- Can I include spring-boot-admin into my business application?
-
tl;dr You can, but you shouldn’t.
You can setspring.boot.admin.context-path
to alter the path where the UI and REST-API is served, but depending on the complexity of your application you might get in trouble. On the other hand in my opinion it makes no sense for an application to monitor itself. In case your application goes down your monitoring tool also does. - How do I customize the UI?
-
You can only customize the UI by copying and modifying the source of
spring-boot-admin-ui
and adding your own module to your classpath.