2014-03-14 04:18:47 +08:00
|
|
|
[[production-ready]]
|
2014-06-04 21:25:39 +08:00
|
|
|
= Spring Boot Actuator: Production-ready features
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
[partintro]
|
|
|
|
--
|
|
|
|
Spring Boot includes a number of additional features to help you monitor and manage your
|
2017-10-31 00:15:32 +08:00
|
|
|
application when you push it to production. You can choose to manage and monitor your
|
|
|
|
application by using HTTP endpoints or with JMX. Auditing, health, and metrics gathering can
|
|
|
|
also be automatically applied to your application.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2015-07-16 16:05:20 +08:00
|
|
|
Actuator HTTP endpoints are only available with a Spring MVC-based application. In
|
2017-10-31 00:15:32 +08:00
|
|
|
particular, it does not work with Jersey <<howto.adoc#howto-use-actuator-with-jersey,
|
2015-11-23 00:38:38 +08:00
|
|
|
unless you enable Spring MVC as well.>>
|
2015-07-16 16:05:20 +08:00
|
|
|
--
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|
2015-07-17 03:56:49 +08:00
|
|
|
|
2014-03-14 04:18:47 +08:00
|
|
|
[[production-ready-enabling]]
|
2017-10-31 00:15:32 +08:00
|
|
|
== Enabling Production-ready Features
|
2017-10-12 00:51:04 +08:00
|
|
|
The {github-code}/spring-boot-project/spring-boot-actuator[`spring-boot-actuator`] module provides all of
|
2014-06-07 13:13:25 +08:00
|
|
|
Spring Boot's production-ready features. The simplest way to enable the features is to add
|
2016-05-18 14:55:42 +08:00
|
|
|
a dependency to the `spring-boot-starter-actuator` '`Starter`'.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
.Definition of Actuator
|
|
|
|
****
|
|
|
|
An actuator is a manufacturing term, referring to a mechanical device for moving or
|
|
|
|
controlling something. Actuators can generate a large amount of motion from a small
|
|
|
|
change.
|
|
|
|
****
|
|
|
|
|
2016-05-18 14:55:42 +08:00
|
|
|
To add the actuator to a Maven based project, add the following '`Starter`'
|
2014-03-14 04:18:47 +08:00
|
|
|
dependency:
|
|
|
|
|
|
|
|
[source,xml,indent=0]
|
|
|
|
----
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
----
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
For Gradle, use the following declaration:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
[source,groovy,indent=0]
|
|
|
|
----
|
|
|
|
dependencies {
|
|
|
|
compile("org.springframework.boot:spring-boot-starter-actuator")
|
|
|
|
}
|
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-endpoints]]
|
|
|
|
== Endpoints
|
2017-10-31 00:15:32 +08:00
|
|
|
Actuator endpoints let you monitor and interact with your application. Spring Boot
|
|
|
|
includes a number of built-in endpoints and lets you add your own. For example, the
|
2014-03-14 04:18:47 +08:00
|
|
|
`health` endpoint provides basic application health information.
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
The way that endpoints are exposed depends on the type of technology that you choose.
|
2017-04-20 05:47:25 +08:00
|
|
|
Most applications choose HTTP monitoring, where the ID of the endpoint along with a prefix of
|
2017-10-31 00:15:32 +08:00
|
|
|
`/application` is mapped to a URL. For example, by default, the `health` endpoint is mapped
|
2017-04-20 05:47:25 +08:00
|
|
|
to `/application/health`.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
The following technology-agnostic endpoints are available:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2017-08-04 20:15:18 +08:00
|
|
|
[cols="2,5"]
|
2014-03-14 04:18:47 +08:00
|
|
|
|===
|
2017-08-01 17:05:09 +08:00
|
|
|
| ID | Description
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2016-11-21 00:05:21 +08:00
|
|
|
|`auditevents`
|
|
|
|
|Exposes audit events information for the current application.
|
|
|
|
|
2014-03-14 04:18:47 +08:00
|
|
|
|`autoconfig`
|
|
|
|
|Displays an auto-configuration report showing all auto-configuration candidates and the
|
2014-10-09 17:24:30 +08:00
|
|
|
reason why they '`were`' or '`were not`' applied.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|`beans`
|
2015-04-16 17:38:48 +08:00
|
|
|
|Displays a complete list of all the Spring beans in your application.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|`configprops`
|
|
|
|
|Displays a collated list of all `@ConfigurationProperties`.
|
|
|
|
|
|
|
|
|`env`
|
|
|
|
|Exposes properties from Spring's `ConfigurableEnvironment`.
|
|
|
|
|
2015-07-08 09:44:36 +08:00
|
|
|
|`flyway`
|
|
|
|
|Shows any Flyway database migrations that have been applied.
|
|
|
|
|
2014-03-14 04:18:47 +08:00
|
|
|
|`health`
|
2017-08-01 17:05:09 +08:00
|
|
|
|Shows application health information.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|`info`
|
|
|
|
|Displays arbitrary application info.
|
|
|
|
|
2016-11-15 07:32:43 +08:00
|
|
|
|`loggers`
|
|
|
|
|Shows and modifies the configuration of loggers in the application.
|
|
|
|
|
2015-07-08 09:44:36 +08:00
|
|
|
|`liquibase`
|
|
|
|
|Shows any Liquibase database migrations that have been applied.
|
|
|
|
|
2014-03-14 04:18:47 +08:00
|
|
|
|`metrics`
|
2014-10-09 17:24:30 +08:00
|
|
|
|Shows '`metrics`' information for the current application.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|`mappings`
|
|
|
|
|Displays a collated list of all `@RequestMapping` paths.
|
|
|
|
|
2016-11-28 06:18:37 +08:00
|
|
|
|`sessions`
|
2017-10-31 00:15:32 +08:00
|
|
|
|Allows retrieval and deletion of user sessions from a Spring Session-backed session
|
2017-09-20 22:17:06 +08:00
|
|
|
store.
|
2016-11-28 06:18:37 +08:00
|
|
|
|
2014-03-14 04:18:47 +08:00
|
|
|
|`shutdown`
|
2017-10-31 00:15:32 +08:00
|
|
|
|Lets the application be gracefully shutdown (not enabled by default).
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2017-08-16 21:30:41 +08:00
|
|
|
|`status`
|
2017-10-31 00:15:32 +08:00
|
|
|
|Shows application status information (that is, `health` status with no additional details).
|
2017-08-16 21:30:41 +08:00
|
|
|
|
2017-07-12 16:08:43 +08:00
|
|
|
|`threaddump`
|
|
|
|
|Performs a thread dump.
|
|
|
|
|
2014-03-14 04:18:47 +08:00
|
|
|
|`trace`
|
2017-10-31 00:15:32 +08:00
|
|
|
|Displays trace information (by default, the last 100 HTTP requests).
|
2014-03-14 04:18:47 +08:00
|
|
|
|===
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
If your application is a web application (Spring MVC, Spring WebFlux, or Jersey), you can
|
|
|
|
use the following additional endpoints:
|
2016-07-03 02:07:09 +08:00
|
|
|
|
2017-08-04 20:15:18 +08:00
|
|
|
[cols="2,5"]
|
2016-07-03 02:07:09 +08:00
|
|
|
|===
|
2017-08-01 17:05:09 +08:00
|
|
|
| ID | Description
|
2016-07-03 02:07:09 +08:00
|
|
|
|
|
|
|
|`heapdump`
|
|
|
|
|Returns a GZip compressed `hprof` heap dump file.
|
|
|
|
|
|
|
|
|`logfile`
|
|
|
|
|Returns the contents of the logfile (if `logging.file` or `logging.path` properties have
|
|
|
|
been set). Supports the use of the HTTP `Range` header to retrieve part of the log file's
|
|
|
|
content.
|
2017-09-11 11:59:45 +08:00
|
|
|
|
|
|
|
|`prometheus`
|
|
|
|
|Exposes metrics in a format that can be scraped by a Prometheus server.
|
|
|
|
|
2016-07-03 02:07:09 +08:00
|
|
|
|===
|
|
|
|
|
2017-08-01 17:05:09 +08:00
|
|
|
[[production-ready-endpoints-security]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Securing Endpoints
|
|
|
|
By default, all HTTP endpoints are secured such that only users that have an `ACTUATOR`
|
|
|
|
role may access them. Security is enforced by using the standard
|
2017-08-01 17:05:09 +08:00
|
|
|
`HttpServletRequest.isUserInRole` method.
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
TIP: If you want to use something other than `ACTUATOR` as the role, set the
|
|
|
|
`management.security.roles` property to the value you want to use.
|
2017-08-01 17:05:09 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
If you deploy applications behind a firewall, you may prefer that all your actuator
|
|
|
|
endpoints can be accessed without requiring authentication. You can do so by changing
|
|
|
|
the `management.security.enabled` property, as follows:
|
2017-08-01 17:05:09 +08:00
|
|
|
|
|
|
|
.application.properties
|
|
|
|
[source,properties,indent=0]
|
|
|
|
----
|
|
|
|
management.security.enabled=false
|
|
|
|
----
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
CAUTION: By default, actuator endpoints are exposed on the same port that serves regular
|
2017-08-01 17:05:09 +08:00
|
|
|
HTTP traffic. Take care not to accidentally expose sensitive information if you change
|
|
|
|
the `management.security.enabled` property.
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
If you deploy applications publicly, you may want to add '`Spring Security`' to
|
|
|
|
handle user authentication. When '`Spring Security`' is added, by default, '`basic`'
|
|
|
|
authentication is used. The username is`user` and the password is a random generated
|
|
|
|
password (which is printed on the console when the application starts).
|
2017-08-01 17:05:09 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
TIP: Generated passwords are logged as the application starts. To find the password in
|
|
|
|
the console, search for '`Using default security password`'.
|
2017-08-01 17:05:09 +08:00
|
|
|
|
|
|
|
You can use Spring properties to change the username and password and to change the
|
|
|
|
security role(s) required to access the endpoints. For example, you might set the following
|
2017-10-31 00:15:32 +08:00
|
|
|
properties in your `application.properties`:
|
2017-08-01 17:05:09 +08:00
|
|
|
|
|
|
|
[source,properties,indent=0]
|
|
|
|
----
|
|
|
|
security.user.name=admin
|
|
|
|
security.user.password=secret
|
|
|
|
management.security.roles=SUPERUSER
|
|
|
|
----
|
|
|
|
|
|
|
|
If your application has custom security configuration and you want all your actuator
|
|
|
|
endpoints to be accessible without authentication, you need to explicitly configure that
|
2017-10-31 00:15:32 +08:00
|
|
|
in your security configuration. Also, you need to change the
|
2017-08-01 17:05:09 +08:00
|
|
|
`management.security.enabled` property to `false`.
|
|
|
|
|
|
|
|
If your custom security configuration secures your actuator endpoints, you also need to
|
|
|
|
ensure that the authenticated user has the roles specified under
|
|
|
|
`management.security.roles`.
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
TIP: If you do not have a use case for exposing basic health information to unauthenticated
|
|
|
|
users and you have secured the actuator endpoints with custom security, you can set
|
|
|
|
`management.security.enabled` to `false`. This tells Spring Boot to skip the
|
2017-08-01 17:05:09 +08:00
|
|
|
additional role check.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-customizing-endpoints]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Customizing Endpoints
|
|
|
|
Endpoints can be customized by using Spring properties. You can change whether an endpoint is
|
2017-08-01 17:05:09 +08:00
|
|
|
`enabled` and its `id`.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
For example, the following `application.properties` changes the id of the `beans`
|
|
|
|
endpoint and also enables `shutdown`:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2014-03-17 15:04:57 +08:00
|
|
|
[source,properties,indent=0]
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
|
|
|
endpoints.beans.id=springbeans
|
|
|
|
endpoints.shutdown.enabled=true
|
|
|
|
----
|
|
|
|
|
2014-10-28 18:53:47 +08:00
|
|
|
NOTE: The prefix ‟`endpoints` + `.` + `name`” is used to uniquely identify the endpoint
|
2014-03-14 04:18:47 +08:00
|
|
|
that is being configured.
|
|
|
|
|
2014-12-11 04:31:32 +08:00
|
|
|
By default, all endpoints except for `shutdown` are enabled. If you prefer to
|
2017-10-31 00:15:32 +08:00
|
|
|
specifically "`opt-in`" endpoint enablement, you can use the `endpoints.default.enabled`
|
|
|
|
property. For example, the following settings disables _all_ endpoints except for `info`:
|
2014-12-11 04:31:32 +08:00
|
|
|
|
|
|
|
[source,properties,indent=0]
|
|
|
|
----
|
2017-08-29 17:27:35 +08:00
|
|
|
endpoints.default.enabled=false
|
2014-12-11 04:31:32 +08:00
|
|
|
endpoints.info.enabled=true
|
|
|
|
----
|
|
|
|
|
2015-11-10 08:46:01 +08:00
|
|
|
|
|
|
|
|
2015-07-02 01:36:21 +08:00
|
|
|
[[production-ready-endpoint-hypermedia]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Hypermedia for Actuator Web Endpoints
|
2017-07-31 05:12:17 +08:00
|
|
|
A "`discovery page`" is added with links to all the endpoints. The "`discovery page`" is
|
|
|
|
available on `/application` by default.
|
2015-08-06 22:56:06 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
When a custom management context path is configured, the "`discovery page`"
|
|
|
|
automatically moves from `/application` to the root of the management context. For example,
|
|
|
|
if the management context path is `/management`, then the discovery page is available
|
|
|
|
from `/management`. When the management context path is set to `/`, the discovery page
|
2017-09-13 21:26:06 +08:00
|
|
|
is disabled to prevent the possibility of a clash with other mappings.
|
2015-07-02 01:36:21 +08:00
|
|
|
|
2015-11-04 12:36:20 +08:00
|
|
|
|
|
|
|
|
2015-10-27 18:41:30 +08:00
|
|
|
[[production-ready-endpoint-cors]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== CORS Support
|
2015-10-27 18:41:30 +08:00
|
|
|
http://en.wikipedia.org/wiki/Cross-origin_resource_sharing[Cross-origin resource sharing]
|
|
|
|
(CORS) is a http://www.w3.org/TR/cors/[W3C specification] that allows you to specify in a
|
2017-10-31 00:15:32 +08:00
|
|
|
flexible way what kind of cross domain requests are authorized. If you use Spring
|
2017-07-12 16:08:43 +08:00
|
|
|
MVC or Spring WebFlux, Actuator's web endpoints can be configured to support such
|
|
|
|
scenarios.
|
2015-10-27 18:41:30 +08:00
|
|
|
|
|
|
|
CORS support is disabled by default and is only enabled once the
|
2017-10-31 00:15:32 +08:00
|
|
|
`management.endpoints.cors.allowed-origins` property has been set. The following configuration
|
2017-08-22 17:40:39 +08:00
|
|
|
permits `GET` and `POST` calls from the `example.com` domain:
|
2015-10-27 18:41:30 +08:00
|
|
|
|
|
|
|
[source,properties,indent=0]
|
|
|
|
----
|
2017-08-22 17:40:39 +08:00
|
|
|
management.endpoints.cors.allowed-origins=http://example.com
|
|
|
|
management.endpoints.cors.allowed-methods=GET,POST
|
2015-10-27 18:41:30 +08:00
|
|
|
----
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
TIP: See {sc-spring-boot-actuator-autoconfigure}/endpoint/web/servlet/CorsEndpointProperties.{sc-ext}[CorsEndpointProperties]
|
2015-10-27 18:41:30 +08:00
|
|
|
for a complete list of options.
|
2015-07-01 09:46:37 +08:00
|
|
|
|
2015-07-06 11:06:44 +08:00
|
|
|
|
2015-11-04 12:36:20 +08:00
|
|
|
|
2015-06-30 16:01:35 +08:00
|
|
|
[[production-ready-customizing-endpoints-programmatically]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Adding Custom Endpoints
|
2017-07-12 16:08:43 +08:00
|
|
|
If you add a `@Bean` annotated with `@Endpoint`, any methods annotated with
|
2017-10-31 00:15:32 +08:00
|
|
|
`@ReadOperation` or `@WriteOperation` are automatically exposed over JMX and, in a web
|
2017-07-12 16:08:43 +08:00
|
|
|
application, over HTTP as well.
|
2015-07-01 09:46:37 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
TIP: If you do this as a library feature, consider adding a configuration class
|
2016-04-26 09:56:51 +08:00
|
|
|
annotated with `@ManagementContextConfiguration` to `/META-INF/spring.factories` under the
|
2017-10-31 00:15:32 +08:00
|
|
|
key, `org.springframework.boot.actuate.autoconfigure.ManagementContextConfiguration`. If
|
|
|
|
you do so and if your users ask for a separate management port or address, the endpoint
|
|
|
|
moves to a child context with all the other web endpoints.
|
2015-06-30 16:01:35 +08:00
|
|
|
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-health]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Health Information
|
|
|
|
You can use health information to check the status of your running application. It is
|
|
|
|
often used by monitoring software to alert someone when a production system goes down.
|
2014-12-10 13:59:12 +08:00
|
|
|
The default information exposed by the `health` endpoint depends on how it is accessed.
|
2017-10-31 00:15:32 +08:00
|
|
|
For an unauthenticated connection in a secure application, a simple '`status`' message is
|
|
|
|
returned. For an authenticated connection, additional details are also displayed. (See
|
|
|
|
<<production-ready-health-access-restrictions>> for HTTP details.)
|
2014-12-10 13:59:12 +08:00
|
|
|
|
2014-12-11 07:11:58 +08:00
|
|
|
Health information is collected from all
|
2014-12-10 13:59:12 +08:00
|
|
|
{sc-spring-boot-actuator}/health/HealthIndicator.{sc-ext}[`HealthIndicator`] beans defined
|
|
|
|
in your `ApplicationContext`. Spring Boot includes a number of auto-configured
|
2017-10-31 00:15:32 +08:00
|
|
|
`HealthIndicators`, and you can also write your own. By default, the final system state is
|
|
|
|
derived by the `HealthAggregator`, which sorts the statuses from each `HealthIndicator`
|
2017-07-07 07:52:53 +08:00
|
|
|
based on an ordered list of statuses. The first status in the sorted list is used as the
|
|
|
|
overall health status. If no `HealthIndicator` returns a status that is known to the
|
|
|
|
`HealthAggregator`, an `UNKNOWN` status is used.
|
|
|
|
|
2014-12-10 13:59:12 +08:00
|
|
|
|
|
|
|
|
|
|
|
==== Auto-configured HealthIndicators
|
|
|
|
The following `HealthIndicators` are auto-configured by Spring Boot when appropriate:
|
|
|
|
|
2014-12-10 11:52:56 +08:00
|
|
|
[cols="1,4"]
|
2014-12-10 13:59:12 +08:00
|
|
|
|===
|
|
|
|
|Name |Description
|
|
|
|
|
2017-10-12 21:33:54 +08:00
|
|
|
|{sc-spring-boot-actuator}/cassandra/CassandraHealthIndicator.{sc-ext}[`CassandraHealthIndicator`]
|
2015-11-08 22:26:50 +08:00
|
|
|
|Checks that a Cassandra database is up.
|
|
|
|
|
2017-10-12 21:33:54 +08:00
|
|
|
|{sc-spring-boot-actuator}/system/DiskSpaceHealthIndicator.{sc-ext}[`DiskSpaceHealthIndicator`]
|
2014-12-10 13:59:12 +08:00
|
|
|
|Checks for low disk space.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2017-10-12 21:33:54 +08:00
|
|
|
|{sc-spring-boot-actuator}/jdbc/DataSourceHealthIndicator.{sc-ext}[`DataSourceHealthIndicator`]
|
2014-12-10 13:59:12 +08:00
|
|
|
|Checks that a connection to `DataSource` can be obtained.
|
|
|
|
|
2017-10-12 21:33:54 +08:00
|
|
|
|{sc-spring-boot-actuator}/elasticsearch/ElasticsearchHealthIndicator.{sc-ext}[`ElasticsearchHealthIndicator`]
|
2016-06-29 12:51:52 +08:00
|
|
|
|Checks that an Elasticsearch cluster is up.
|
2015-08-03 20:45:04 +08:00
|
|
|
|
2017-10-12 21:33:54 +08:00
|
|
|
|{sc-spring-boot-actuator}/jms/JmsHealthIndicator.{sc-ext}[`JmsHealthIndicator`]
|
2015-08-03 20:45:04 +08:00
|
|
|
|Checks that a JMS broker is up.
|
|
|
|
|
2017-10-12 21:33:54 +08:00
|
|
|
|{sc-spring-boot-actuator}/mail/MailHealthIndicator.{sc-ext}[`MailHealthIndicator`]
|
2015-08-03 20:45:04 +08:00
|
|
|
|Checks that a mail server is up.
|
|
|
|
|
2017-10-12 21:33:54 +08:00
|
|
|
|{sc-spring-boot-actuator}/mongo/MongoHealthIndicator.{sc-ext}[`MongoHealthIndicator`]
|
2014-12-10 13:59:12 +08:00
|
|
|
|Checks that a Mongo database is up.
|
|
|
|
|
2017-10-12 21:33:54 +08:00
|
|
|
|{sc-spring-boot-actuator}/amqp/RabbitHealthIndicator.{sc-ext}[`RabbitHealthIndicator`]
|
2014-12-10 13:59:12 +08:00
|
|
|
|Checks that a Rabbit server is up.
|
|
|
|
|
2017-10-12 21:33:54 +08:00
|
|
|
|{sc-spring-boot-actuator}/redis/RedisHealthIndicator.{sc-ext}[`RedisHealthIndicator`]
|
2014-12-10 13:59:12 +08:00
|
|
|
|Checks that a Redis server is up.
|
|
|
|
|
2017-10-12 21:33:54 +08:00
|
|
|
|{sc-spring-boot-actuator}/solr/SolrHealthIndicator.{sc-ext}[`SolrHealthIndicator`]
|
2014-12-10 13:59:12 +08:00
|
|
|
|Checks that a Solr server is up.
|
|
|
|
|===
|
|
|
|
|
2015-07-28 22:27:56 +08:00
|
|
|
TIP: It is possible to disable them all using the `management.health.defaults.enabled`
|
|
|
|
property.
|
2014-12-10 13:59:12 +08:00
|
|
|
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
==== Writing Custom HealthIndicators
|
|
|
|
To provide custom health information, you can register Spring beans that implement the
|
2014-03-14 04:18:47 +08:00
|
|
|
{sc-spring-boot-actuator}/health/HealthIndicator.{sc-ext}[`HealthIndicator`] interface.
|
2014-12-10 13:59:12 +08:00
|
|
|
You need to provide an implementation of the `health()` method and return a `Health`
|
|
|
|
response. The `Health` response should include a status and can optionally include
|
2017-10-31 00:15:32 +08:00
|
|
|
additional details to be displayed. The following code shows a sample `HealthIndicator`
|
|
|
|
implementation:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
[source,java,indent=0]
|
|
|
|
----
|
2016-07-04 12:52:57 +08:00
|
|
|
import org.springframework.boot.actuate.health.Health;
|
2014-03-14 04:18:47 +08:00
|
|
|
import org.springframework.boot.actuate.health.HealthIndicator;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
@Component
|
2015-11-28 00:21:15 +08:00
|
|
|
public class MyHealthIndicator implements HealthIndicator {
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
@Override
|
2014-05-23 04:53:08 +08:00
|
|
|
public Health health() {
|
2014-12-10 13:59:12 +08:00
|
|
|
int errorCode = check(); // perform some specific health check
|
|
|
|
if (errorCode != 0) {
|
2015-01-01 09:46:59 +08:00
|
|
|
return Health.down().withDetail("Error Code", errorCode).build();
|
2014-12-10 13:59:12 +08:00
|
|
|
}
|
2015-01-01 09:46:59 +08:00
|
|
|
return Health.up().build();
|
2014-03-14 04:18:47 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
----
|
|
|
|
|
2015-11-28 00:21:15 +08:00
|
|
|
NOTE: The identifier for a given `HealthIndicator` is the name of the bean without the
|
2017-10-31 00:15:32 +08:00
|
|
|
`HealthIndicator` suffix, if it exists. In the preceding example, the health information
|
|
|
|
is available in an entry named `my`.
|
2015-11-28 00:21:15 +08:00
|
|
|
|
2014-12-10 11:52:56 +08:00
|
|
|
In addition to Spring Boot's predefined {sc-spring-boot-actuator}/health/Status.{sc-ext}[`Status`]
|
|
|
|
types, it is also possible for `Health` to return a custom `Status` that represents a
|
2017-10-31 00:15:32 +08:00
|
|
|
new system state. In such cases, a custom implementation of the
|
2014-12-10 13:59:12 +08:00
|
|
|
{sc-spring-boot-actuator}/health/HealthAggregator.{sc-ext}[`HealthAggregator`]
|
|
|
|
interface also needs to be provided, or the default implementation has to be configured
|
2017-10-31 00:15:32 +08:00
|
|
|
by using the `management.health.status.order` configuration property.
|
2014-12-10 13:59:12 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
For example, assume a new `Status` with code `FATAL` is being used in one of your
|
|
|
|
`HealthIndicator` implementations. To configure the severity order, add the following
|
2014-12-10 13:59:12 +08:00
|
|
|
to your application properties:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2014-12-10 13:59:12 +08:00
|
|
|
[source,properties,indent=0]
|
|
|
|
----
|
2017-05-18 19:26:39 +08:00
|
|
|
management.health.status.order=FATAL, DOWN, OUT_OF_SERVICE, UNKNOWN, UP
|
2014-12-10 13:59:12 +08:00
|
|
|
----
|
2014-05-23 04:53:08 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
The HTTP status code in the response reflects the overall health status (for example, `UP`
|
|
|
|
maps to 200, while `OUT_OF_SERVICE` and `DOWN` map to 503). You might also want to register custom
|
2017-08-22 17:11:22 +08:00
|
|
|
status mappings if you access the health endpoint over HTTP. For example, the following
|
2017-10-31 00:15:32 +08:00
|
|
|
property maps `FATAL` to 503 (service unavailable):
|
2017-04-10 20:01:50 +08:00
|
|
|
|
|
|
|
[source,properties,indent=0]
|
|
|
|
----
|
2017-08-22 17:11:22 +08:00
|
|
|
management.health.status.http-mapping.FATAL=503
|
2017-04-10 20:01:50 +08:00
|
|
|
----
|
2014-05-23 04:53:08 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
TIP: If you need more control, you can define your own `HealthStatusHttpMapper` bean.
|
2017-08-22 17:11:22 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
The following table shows the default status mappings for the built-in statuses:
|
2017-06-30 02:31:40 +08:00
|
|
|
|
|
|
|
[cols="1,3"]
|
|
|
|
|===
|
|
|
|
|Status |Mapping
|
|
|
|
|
|
|
|
|DOWN
|
|
|
|
|SERVICE_UNAVAILABLE (503)
|
|
|
|
|
|
|
|
|OUT_OF_SERVICE
|
|
|
|
|SERVICE_UNAVAILABLE (503)
|
|
|
|
|
|
|
|
|UP
|
|
|
|
|No mapping by default, so http status is 200
|
|
|
|
|
|
|
|
|UNKNOWN
|
|
|
|
|No mapping by default, so http status is 200
|
|
|
|
|===
|
|
|
|
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-application-info]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Application Information
|
2016-03-24 19:55:56 +08:00
|
|
|
Application information exposes various information collected from all
|
|
|
|
{sc-spring-boot-actuator}/info/InfoContributor.{sc-ext}[`InfoContributor`] beans defined
|
|
|
|
in your `ApplicationContext`. Spring Boot includes a number of auto-configured
|
2017-10-31 00:15:32 +08:00
|
|
|
`InfoContributors`, and you can write your own.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
[[production-ready-application-info-autoconfigure]]
|
|
|
|
==== Auto-configured InfoContributors
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
The following `InfoContributors` are auto-configured by Spring Boot, when appropriate:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
[cols="1,4"]
|
|
|
|
|===
|
|
|
|
|Name |Description
|
2014-09-15 23:25:00 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
|{sc-spring-boot-actuator}/info/EnvironmentInfoContributor.{sc-ext}[`EnvironmentInfoContributor`]
|
|
|
|
|Expose any key from the `Environment` under the `info` key.
|
2014-09-15 23:25:00 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
|{sc-spring-boot-actuator}/info/GitInfoContributor.{sc-ext}[`GitInfoContributor`]
|
|
|
|
|Expose git information if a `git.properties` file is available.
|
2014-09-15 23:25:00 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
|{sc-spring-boot-actuator}/info/BuildInfoContributor.{sc-ext}[`BuildInfoContributor`]
|
2016-05-06 16:52:26 +08:00
|
|
|
|Expose build information if a `META-INF/build-info.properties` file is available.
|
2016-03-24 19:55:56 +08:00
|
|
|
|===
|
2014-09-15 23:25:00 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
TIP: It is possible to disable them all using the `management.info.defaults.enabled`
|
|
|
|
property.
|
2014-09-15 23:25:00 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
[[production-ready-application-info-env]]
|
2017-10-31 00:15:32 +08:00
|
|
|
==== Custom Application Information
|
2016-03-24 19:55:56 +08:00
|
|
|
You can customize the data exposed by the `info` endpoint by setting `+info.*+` Spring
|
2017-10-31 00:15:32 +08:00
|
|
|
properties. All `Environment` properties under the info key are automatically
|
|
|
|
exposed. For example, you could add the following settings to your `application.properties` file:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2014-03-17 15:04:57 +08:00
|
|
|
[source,properties,indent=0]
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
2016-03-24 19:55:56 +08:00
|
|
|
info.app.encoding=UTF-8
|
|
|
|
info.app.java.source=1.8
|
|
|
|
info.app.java.target=1.8
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
[TIP]
|
|
|
|
====
|
2017-10-31 00:15:32 +08:00
|
|
|
Rather than hardcoding those values, you could also
|
2016-03-24 19:55:56 +08:00
|
|
|
<<howto.adoc#howto-automatic-expansion,expand info properties at build time>>.
|
2015-02-19 16:32:23 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
Assuming you use Maven, you could rewrite the preceding example as follows:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
[source,properties,indent=0]
|
2014-11-04 18:41:47 +08:00
|
|
|
----
|
2016-03-24 19:55:56 +08:00
|
|
|
info.app.encoding=@project.build.sourceEncoding@
|
|
|
|
info.app.java.source=@java.version@
|
|
|
|
info.app.java.target=@java.version@
|
2014-11-04 18:41:47 +08:00
|
|
|
----
|
2016-03-24 19:55:56 +08:00
|
|
|
====
|
2014-11-04 18:41:47 +08:00
|
|
|
|
|
|
|
|
2015-10-14 15:09:04 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
[[production-ready-application-info-git]]
|
2017-10-31 00:15:32 +08:00
|
|
|
==== Git Commit Information
|
2016-03-24 19:55:56 +08:00
|
|
|
Another useful feature of the `info` endpoint is its ability to publish information
|
|
|
|
about the state of your `git` source code repository when the project was built. If a
|
|
|
|
`GitProperties` bean is available, the `git.branch`, `git.commit.id` and
|
2017-10-31 00:15:32 +08:00
|
|
|
`git.commit.time` properties are exposed.
|
2015-02-24 11:21:37 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
TIP: A `GitProperties` bean is auto-configured if a `git.properties` file is available
|
|
|
|
at the root of the classpath. See
|
2017-10-31 00:15:32 +08:00
|
|
|
"<<howto.adoc#howto-git-info,Generate git information>>" for more details.
|
2015-02-24 11:21:37 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
If you want to display the full git information (that is, the full content of
|
|
|
|
`git.properties`), use the `management.info.git.mode` property, as follows:
|
2014-09-15 23:25:00 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
[source,properties,indent=0]
|
2014-09-15 23:25:00 +08:00
|
|
|
----
|
2016-03-24 19:55:56 +08:00
|
|
|
management.info.git.mode=full
|
2014-09-15 23:25:00 +08:00
|
|
|
----
|
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-application-info-build]]
|
2017-10-31 00:15:32 +08:00
|
|
|
==== Build Information
|
|
|
|
If a `BuildProperties` bean is available, the `info` endpoint can also publish
|
|
|
|
information about your build. This happens if a `META-INF/build-info.properties` file
|
|
|
|
is available in the classpath.
|
2016-03-24 19:55:56 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
TIP: The Maven and Gradle plugins can both generate that file. See
|
|
|
|
"<<howto.adoc#howto-build-info,Generate build information>>" for more details.
|
2016-03-24 19:55:56 +08:00
|
|
|
|
2015-03-22 06:11:14 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
[[production-ready-application-info-custom]]
|
2017-10-31 00:15:32 +08:00
|
|
|
==== Writing Custom InfoContributors
|
|
|
|
To provide custom application information, you can register Spring beans that implement
|
2016-03-24 19:55:56 +08:00
|
|
|
the {sc-spring-boot-actuator}/info/InfoContributor.{sc-ext}[`InfoContributor`] interface.
|
2014-09-15 23:25:00 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
The following example contributes an `example` entry with a single value:
|
2014-09-15 23:25:00 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
[source,java,indent=0]
|
|
|
|
----
|
|
|
|
import java.util.Collections;
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
import org.springframework.boot.actuate.info.Info;
|
|
|
|
import org.springframework.boot.actuate.info.InfoContributor;
|
|
|
|
import org.springframework.stereotype.Component;
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
@Component
|
|
|
|
public class ExampleInfoContributor implements InfoContributor {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void contribute(Info.Builder builder) {
|
|
|
|
builder.withDetail("example",
|
|
|
|
Collections.singletonMap("key", "value"));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
If you reach the `info` endpoint, you should see a response that contains the following
|
2016-03-24 19:55:56 +08:00
|
|
|
additional entry:
|
2015-09-30 20:41:31 +08:00
|
|
|
|
2016-03-24 19:55:56 +08:00
|
|
|
[source,json,indent=0]
|
2015-09-30 20:41:31 +08:00
|
|
|
----
|
2016-03-24 19:55:56 +08:00
|
|
|
{
|
|
|
|
"example": {
|
|
|
|
"key" : "value"
|
|
|
|
}
|
2015-09-30 20:41:31 +08:00
|
|
|
}
|
|
|
|
----
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-monitoring]]
|
2017-10-31 00:15:32 +08:00
|
|
|
== Monitoring and Management over HTTP
|
|
|
|
If you are developing a Spring MVC application, Spring Boot Actuator auto-configures
|
2014-12-10 11:52:56 +08:00
|
|
|
all enabled endpoints to be exposed over HTTP. The default convention is to use the
|
2017-04-20 05:47:25 +08:00
|
|
|
`id` of the endpoint with a prefix of `/application` as the URL path. For example, `health`
|
|
|
|
is exposed as `/application/health`.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-customizing-management-server-context-path]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Customizing the Management Endpoint Paths
|
|
|
|
Sometimes, it is useful to customize the prefix for the management endpoints.
|
2017-04-20 05:47:25 +08:00
|
|
|
For example, your application might already use `/application` for another purpose.
|
2017-10-17 06:05:32 +08:00
|
|
|
You can use the `management.endpoints.web.base-path` property to change the prefix for your
|
2017-10-31 00:15:32 +08:00
|
|
|
management endpoint, as shown in the following example:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2014-03-17 15:04:57 +08:00
|
|
|
[source,properties,indent=0]
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
2017-10-17 06:05:32 +08:00
|
|
|
management.endpoints.web.base-path=/manage
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
The preceding `application.properties` example changes the endpoint from `/application/{id}` to
|
2014-03-14 04:18:47 +08:00
|
|
|
`/manage/{id}` (e.g. `/manage/info`).
|
|
|
|
|
2017-09-11 19:10:42 +08:00
|
|
|
NOTE: Unless the management port has been configured to
|
|
|
|
<<production-ready-customizing-management-server-port,expose endpoints using a different
|
2017-10-17 06:05:32 +08:00
|
|
|
HTTP port>>, `management.endpoints.web.base-path` is relative to `server.context-path`. If `management.server.port`
|
2017-10-31 00:15:32 +08:00
|
|
|
is configured, `management.endpoints.web.base-path` is relative to `management.server.servlet.context-path`.
|
2017-03-24 07:11:22 +08:00
|
|
|
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-customizing-management-server-port]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Customizing the Management Server Port
|
|
|
|
Exposing management endpoints by using the default HTTP port is a sensible choice for cloud
|
|
|
|
based deployments. If, however, your application runs inside your own data center, you
|
|
|
|
may prefer to expose endpoints by using a different HTTP port.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
You can set the `management.server.port` property to change the HTTP port, as shown in
|
|
|
|
the following example:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2014-03-17 15:04:57 +08:00
|
|
|
[source,properties,indent=0]
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
2017-10-17 06:05:32 +08:00
|
|
|
management.server.port=8081
|
2014-04-03 22:58:10 +08:00
|
|
|
----
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
Since your management port is often protected by a firewall and not exposed to the public,
|
2014-04-07 12:44:20 +08:00
|
|
|
you might not need security on the management endpoints, even if your main application is
|
2017-10-31 00:15:32 +08:00
|
|
|
secure. In that case, you should have Spring Security on the classpath, and you can disable
|
|
|
|
management security as follows:
|
2014-04-03 22:58:10 +08:00
|
|
|
|
|
|
|
[source,properties,indent=0]
|
|
|
|
----
|
2014-03-14 04:18:47 +08:00
|
|
|
management.security.enabled=false
|
|
|
|
----
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
(If you do not have Spring Security on the classpath, there is no need to explicitly
|
|
|
|
disable the management security in this way. Doing so might even break the application.)
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2014-04-07 12:44:20 +08:00
|
|
|
|
|
|
|
|
2016-06-27 19:33:21 +08:00
|
|
|
[[production-ready-management-specific-ssl]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Configuring Management-specific SSL
|
2016-06-27 19:33:21 +08:00
|
|
|
When configured to use a custom port, the management server can also be configured with
|
2017-10-31 00:15:32 +08:00
|
|
|
its own SSL by using the various `management.server.ssl.*` properties. For example, doing so lets a
|
|
|
|
management server be available via HTTP while the main application uses HTTPS, as shown
|
|
|
|
in the following property settings:
|
2016-06-27 19:33:21 +08:00
|
|
|
|
|
|
|
[source,properties,indent=0]
|
|
|
|
----
|
|
|
|
server.port=8443
|
|
|
|
server.ssl.enabled=true
|
|
|
|
server.ssl.key-store=classpath:store.jks
|
|
|
|
server.ssl.key-password=secret
|
2017-10-17 06:05:32 +08:00
|
|
|
management.server.port=8080
|
|
|
|
management.server.ssl.enabled=false
|
2016-06-27 19:33:21 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
Alternatively, both the main server and the management server can use SSL but with
|
2017-10-31 00:15:32 +08:00
|
|
|
different key stores, as follows:
|
2016-06-27 19:33:21 +08:00
|
|
|
|
|
|
|
[source,properties,indent=0]
|
|
|
|
----
|
|
|
|
server.port=8443
|
|
|
|
server.ssl.enabled=true
|
|
|
|
server.ssl.key-store=classpath:main.jks
|
|
|
|
server.ssl.key-password=secret
|
2017-10-17 06:05:32 +08:00
|
|
|
management.server.port=8080
|
|
|
|
management.server.ssl.enabled=true
|
|
|
|
management.server.ssl.key-store=classpath:management.jks
|
|
|
|
management.server.ssl.key-password=secret
|
2016-06-27 19:33:21 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-14 04:18:47 +08:00
|
|
|
[[production-ready-customizing-management-server-address]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Customizing the Management Server Address
|
2014-03-14 04:18:47 +08:00
|
|
|
You can customize the address that the management endpoints are available on by
|
2017-10-31 00:15:32 +08:00
|
|
|
setting the `management.server.address` property. Doing so can be useful if you want to
|
|
|
|
listen only on an internal or ops-facing network or to listen only for connections from
|
2014-03-14 04:18:47 +08:00
|
|
|
`localhost`.
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
NOTE: You can only listen on a different address if the port is different from the
|
2014-03-14 04:18:47 +08:00
|
|
|
main server port.
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
The following example `application.properties` does not allow remote management
|
2014-03-14 04:18:47 +08:00
|
|
|
connections:
|
|
|
|
|
2014-03-17 15:04:57 +08:00
|
|
|
[source,properties,indent=0]
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
2017-10-17 06:05:32 +08:00
|
|
|
management.server.port=8081
|
|
|
|
management.server.address=127.0.0.1
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-disabling-http-endpoints]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Disabling HTTP Endpoints
|
|
|
|
If you do not want to expose endpoints over HTTP, you can set the management port to
|
|
|
|
`-1`, as shown in the following example:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2014-03-17 15:04:57 +08:00
|
|
|
[source,properties,indent=0]
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
2017-10-17 06:05:32 +08:00
|
|
|
management.server.port=-1
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
|
2014-11-25 20:22:23 +08:00
|
|
|
[[production-ready-health-access-restrictions]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== HTTP Health Endpoint Format and Access Restrictions
|
|
|
|
The information exposed by the health endpoint varies, depending on whether it is
|
|
|
|
accessed anonymously and whether the enclosing application is secure.
|
2015-06-29 05:12:28 +08:00
|
|
|
By default, when accessed anonymously in a secure application, any details about the
|
2017-10-31 00:15:32 +08:00
|
|
|
server's health are hidden and the endpoint indicates whether the server
|
2017-07-12 16:08:43 +08:00
|
|
|
is up or down.
|
2014-11-25 20:22:23 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
The following example shows a summarized HTTP response (default for anonymous request):
|
2017-03-23 23:00:03 +08:00
|
|
|
|
|
|
|
[source,indent=0]
|
|
|
|
----
|
2017-04-12 11:17:09 +08:00
|
|
|
$ curl -i localhost:8080/health
|
|
|
|
HTTP/1.1 200
|
|
|
|
X-Application-Context: application
|
2017-04-12 12:07:51 +08:00
|
|
|
Content-Type: application/vnd.spring-boot.actuator.v2+json;charset=UTF-8
|
2017-04-12 11:17:09 +08:00
|
|
|
Content-Length: 15
|
2017-03-23 23:00:03 +08:00
|
|
|
|
2017-04-12 11:17:09 +08:00
|
|
|
{"status":"UP"}
|
2017-03-23 23:00:03 +08:00
|
|
|
----
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
The following example shows a summarized HTTP response for status "DOWN" (notice the 503 status code):
|
2017-03-23 23:00:03 +08:00
|
|
|
|
|
|
|
[source,indent=0]
|
|
|
|
----
|
2017-04-12 11:17:09 +08:00
|
|
|
$ curl -i localhost:8080/health
|
|
|
|
HTTP/1.1 503
|
|
|
|
X-Application-Context: application
|
2017-04-12 12:07:51 +08:00
|
|
|
Content-Type: application/vnd.spring-boot.actuator.v2+json;charset=UTF-8
|
2017-04-12 11:17:09 +08:00
|
|
|
Content-Length: 17
|
2017-03-23 23:00:03 +08:00
|
|
|
|
2017-04-12 11:17:09 +08:00
|
|
|
{"status":"DOWN"}
|
2017-03-23 23:00:03 +08:00
|
|
|
----
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
The following example shows a detailed HTTP response:
|
2017-03-23 23:00:03 +08:00
|
|
|
|
|
|
|
[source,indent=0]
|
|
|
|
----
|
2017-04-12 11:17:09 +08:00
|
|
|
$ curl -i localhost:8080/health
|
|
|
|
HTTP/1.1 200 OK
|
|
|
|
X-Application-Context: application
|
2017-04-12 12:07:51 +08:00
|
|
|
Content-Type: application/vnd.spring-boot.actuator.v2+json;charset=UTF-8
|
2017-04-12 11:17:09 +08:00
|
|
|
Content-Length: 221
|
|
|
|
|
|
|
|
{
|
|
|
|
"status" : "UP",
|
|
|
|
"diskSpace" : {
|
|
|
|
"status" : "UP",
|
|
|
|
"total" : 63251804160,
|
|
|
|
"free" : 31316164608,
|
|
|
|
"threshold" : 10485760
|
|
|
|
},
|
|
|
|
"db" : {
|
|
|
|
"status" : "UP",
|
|
|
|
"database" : "H2",
|
|
|
|
"hello" : 1
|
|
|
|
}
|
|
|
|
}
|
2017-03-23 23:00:03 +08:00
|
|
|
----
|
|
|
|
|
2014-11-25 20:22:23 +08:00
|
|
|
|
2015-06-30 07:48:59 +08:00
|
|
|
|
2014-03-14 04:18:47 +08:00
|
|
|
[[production-ready-jmx]]
|
2017-10-31 00:15:32 +08:00
|
|
|
== Monitoring and Management over JMX
|
2014-03-14 04:18:47 +08:00
|
|
|
Java Management Extensions (JMX) provide a standard mechanism to monitor and manage
|
2017-10-31 00:15:32 +08:00
|
|
|
applications. By default, Spring Boot exposes management endpoints as JMX MBeans
|
2014-03-14 04:18:47 +08:00
|
|
|
under the `org.springframework.boot` domain.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-custom-mbean-names]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Customizing MBean Names
|
2014-03-14 04:18:47 +08:00
|
|
|
The name of the MBean is usually generated from the `id` of the endpoint. For example
|
2017-08-16 19:37:24 +08:00
|
|
|
the `health` endpoint is exposed as `org.springframework.boot:type=Endpoint,name=Health`.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
If your application contains more than one Spring `ApplicationContext`, you may find that
|
|
|
|
names clash. To solve this problem, you can set the `management.endpoints.jmx.unique-names`
|
2017-08-22 17:46:38 +08:00
|
|
|
property to `true` so that MBean names are always unique.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
You can also customize the JMX domain under which endpoints are exposed. The following
|
|
|
|
settings show an example of doing so in `application.properties`:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2014-03-17 15:04:57 +08:00
|
|
|
[source,properties,indent=0]
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
2017-08-22 17:46:38 +08:00
|
|
|
management.endpoints.jmx.domain=com.example.myapp
|
|
|
|
management.endpoints.jmx.unique-names=true
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-disable-jmx-endpoints]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Disabling JMX Endpoints
|
|
|
|
If you do not want to expose endpoints over JMX, you can set the `endpoints.default.jmx.enabled`
|
|
|
|
property to `false`, as shown in the following example:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2014-03-17 15:04:57 +08:00
|
|
|
[source,properties,indent=0]
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
2017-08-29 17:27:35 +08:00
|
|
|
endpoints.default.jmx.enabled=false
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-jolokia]]
|
|
|
|
=== Using Jolokia for JMX over HTTP
|
2017-10-31 00:15:32 +08:00
|
|
|
Jolokia is a JMX-HTTP bridge that provides an alternative method of accessing JMX beans. To
|
|
|
|
use Jolokia, include a dependency to `org.jolokia:jolokia-core`. For example,
|
|
|
|
with Maven, you would add the following dependency:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
[source,xml,indent=0]
|
|
|
|
----
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jolokia</groupId>
|
|
|
|
<artifactId>jolokia-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
----
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
Jolokia can then be accessed by using `/application/jolokia` on your management HTTP server.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-customizing-jolokia]]
|
|
|
|
==== Customizing Jolokia
|
|
|
|
Jolokia has a number of settings that you would traditionally configure using servlet
|
2017-10-31 00:15:32 +08:00
|
|
|
parameters. With Spring Boot, you can use your `application.properties`. Prefix the
|
|
|
|
parameter with `management.jolokia.config.`, as shown in the following example:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2014-03-17 15:04:57 +08:00
|
|
|
[source,properties,indent=0]
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
2017-08-11 20:05:03 +08:00
|
|
|
management.jolokia.config.debug=true
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-disabling-jolokia]]
|
|
|
|
==== Disabling Jolokia
|
2017-10-31 00:15:32 +08:00
|
|
|
If you use Jolokia but do not want Spring Boot to configure it, set the
|
|
|
|
`management.jolokia.enabled` property to `false`, as follows:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2014-03-17 15:04:57 +08:00
|
|
|
[source,properties,indent=0]
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
2017-08-11 20:05:03 +08:00
|
|
|
management.jolokia.enabled=false
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-11-15 07:32:43 +08:00
|
|
|
[[production-ready-loggers]]
|
|
|
|
== Loggers
|
|
|
|
Spring Boot Actuator includes the ability to view and configure the log levels of your
|
2017-10-20 02:02:06 +08:00
|
|
|
application at runtime. You can view either the entire list or an individual logger's
|
2017-10-31 00:15:32 +08:00
|
|
|
configuration, which is made up of both the explicitly configured logging level as well as
|
|
|
|
the effective logging level given to it by the logging framework. These levels can be one of:
|
2016-11-15 07:32:43 +08:00
|
|
|
|
|
|
|
* `TRACE`
|
|
|
|
* `DEBUG`
|
|
|
|
* `INFO`
|
|
|
|
* `WARN`
|
|
|
|
* `ERROR`
|
|
|
|
* `FATAL`
|
|
|
|
* `OFF`
|
|
|
|
* `null`
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
`null` indicates that there is no explicit configuration.
|
2016-11-15 07:32:43 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-logger-configuration]]
|
|
|
|
=== Configure a Logger
|
2017-10-31 00:15:32 +08:00
|
|
|
In order to configure a given logger, you `POST` a partial entity to the resource's URI,
|
|
|
|
as shown in the following example:
|
2016-11-15 07:32:43 +08:00
|
|
|
|
|
|
|
[source,json,indent=0]
|
|
|
|
----
|
|
|
|
{
|
|
|
|
"configuredLevel": "DEBUG"
|
|
|
|
}
|
|
|
|
----
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
TIP: To "reset" the specific level of the logger (and use the default configuration
|
|
|
|
instead), you can pass a value of `null` as the `configuredLevel`.
|
2017-06-01 20:31:07 +08:00
|
|
|
|
2016-11-15 07:32:43 +08:00
|
|
|
|
|
|
|
|
2014-03-14 04:18:47 +08:00
|
|
|
[[production-ready-metrics]]
|
|
|
|
== Metrics
|
2017-09-11 11:59:45 +08:00
|
|
|
Spring Boot Actuator provides dependency management and auto-configuration for
|
|
|
|
https://micrometer.io[Micrometer], an application metrics facade that supports numerous
|
|
|
|
monitoring systems:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
- https://github.com/Netflix/atlas[Atlas]
|
|
|
|
- https://www.datadoghq.com[Datadog]
|
|
|
|
- http://ganglia.sourceforge.net[Ganglia]
|
|
|
|
- https://graphiteapp.org[Graphite]
|
|
|
|
- https://www.influxdata.com[Influx]
|
|
|
|
- https://prometheus.io[Prometheus]
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
Micrometer provides a separate module for each supported monitoring system. Depending on
|
|
|
|
one (or more) of these modules is sufficient to get started with Micrometer in your
|
|
|
|
Spring Boot application. To learn more about Micrometer's capabilities, please refer to
|
|
|
|
its https://micrometer.io/docs[reference documentation].
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2014-07-30 03:31:40 +08:00
|
|
|
|
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
[[production-ready-metrics-spring-mvc]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Spring MVC Metrics
|
|
|
|
Auto-configuration enables the instrumentation of requests handled by Spring MVC.
|
|
|
|
When `spring.metrics.web.server.auto-time-requests` is `true`, this instrumentation
|
|
|
|
occurs for all requests. Alternatively, when set to `false`, you can enable instrumentation
|
2017-09-11 11:59:45 +08:00
|
|
|
by adding `@Timed` to a request-handling method.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
By default, metrics are generated with the name, `http.server.requests`. The name
|
|
|
|
can be customized by setting the `spring.metrics.web.server.requests-metrics-name`
|
|
|
|
property.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2015-06-04 02:57:28 +08:00
|
|
|
|
2015-05-31 19:51:07 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
[[production-ready-metrics-spring-mvc-tags]]
|
2017-10-31 00:15:32 +08:00
|
|
|
==== Spring MVC Metric Tags
|
|
|
|
By default, Spring MVC-related metrics are tagged with the following information:
|
2017-01-20 17:52:55 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
- The request's method.
|
|
|
|
- The request's URI (templated if possible).
|
|
|
|
- The simple class name of any exception that was thrown while handling the request.
|
|
|
|
- The response's status.
|
2015-05-31 19:17:11 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
To customize the tags, provide a `@Bean` that implements `WebMvcTagsProvider`.
|
2015-03-30 17:39:41 +08:00
|
|
|
|
2015-10-03 01:13:15 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
[[production-ready-metrics-web-flux]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== WebFlux Metrics
|
|
|
|
Auto-configuration enables the instrumentation of all requests handled by WebFlux
|
|
|
|
controllers. You can also use a helper class, `RouterFunctionMetrics`,
|
|
|
|
to instrument applications that use WebFlux's functional programming model.
|
2015-03-30 17:39:41 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
By default, metrics are generated with the name `http.server.requests`. You can customize
|
|
|
|
the name by setting the `spring.metrics.web.server.requests-metrics-name` property.
|
2015-03-30 17:39:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
[[production-ready-metrics-web-flux-tags]]
|
2017-10-31 00:15:32 +08:00
|
|
|
==== WebFlux Metric Tags
|
|
|
|
By default, WebFlux-related metrics for the annotation-based programming model are
|
|
|
|
tagged with the following information:
|
2015-03-30 17:39:41 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
- The request's method.
|
|
|
|
- The request's URI (templated if possible).
|
|
|
|
- The simple class name of any exception that was thrown while handling the request.
|
|
|
|
- The response's status.
|
2015-05-31 19:17:11 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
To customize the tags, provide a `@Bean` that implements `WebFluxTagsProvider`.
|
2015-05-05 18:50:37 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
By default, metrics for the functional programming model are tagged with the
|
|
|
|
following information:
|
2015-05-05 18:50:37 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
- The request's method
|
|
|
|
- The request's URI (templated if possible).
|
|
|
|
- The esponse's status.
|
2015-06-04 02:57:28 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
To customize the tags, use the `defaultTags` method on your `RouterFunctionMetrics`
|
|
|
|
instance.
|
2015-03-30 17:39:41 +08:00
|
|
|
|
|
|
|
|
2015-05-05 18:50:37 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
[[production-ready-metrics-rest-template]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== RestTemplate Metrics
|
|
|
|
Auto-configuration customizes the auto-configured `RestTemplate` to enable the
|
2017-09-11 11:59:45 +08:00
|
|
|
instrumentation of its requests. `MetricsRestTemplateCustomizer` can be used to
|
|
|
|
customize your own `RestTemplate` instances.
|
2015-05-02 05:04:50 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
By default, metrics are generated with the name, `http.client.requests`. The name
|
|
|
|
can be customized by setting the `spring.metrics.web.client.requests-metrics-name`
|
|
|
|
property.
|
2015-05-02 05:04:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
[[production-ready-metrics-rest-template-tags]]
|
2017-10-31 00:15:32 +08:00
|
|
|
==== RestTemplate Metric Tags
|
|
|
|
By default, metrics generated by an instrumented `RestTemplate` are tagged with
|
|
|
|
the following information:
|
2015-08-10 18:59:21 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
- The request's method.
|
|
|
|
- The request's URI (templated if possible).
|
|
|
|
- The response's status.
|
|
|
|
- The request URI's host.
|
2015-04-23 20:25:57 +08:00
|
|
|
|
|
|
|
|
2015-08-10 18:59:21 +08:00
|
|
|
|
2017-10-30 19:39:42 +08:00
|
|
|
[[production-ready-metrics-jdbc]]
|
|
|
|
=== DataSource metrics
|
|
|
|
Auto-configuration will enable the instrumentation of all available `DataSources` with a
|
2017-11-01 15:36:58 +08:00
|
|
|
metric named `data.source`. Data source instrumentation results in gauges representing the
|
|
|
|
currently active, maximum allowed, and minimum allowed connections in the pool. Each of
|
|
|
|
these gauges has a name which is prefixed by `data.source` by default. The prefix can be
|
|
|
|
be customized using the `spring.metrics.jdbc.datasource-metric-name` property.
|
2017-10-30 19:39:42 +08:00
|
|
|
|
2017-11-01 15:36:58 +08:00
|
|
|
Metrics will also be tagged by the name of the `DataSource` computed based on the bean
|
|
|
|
name.
|
2017-10-30 19:39:42 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
[[production-ready-metrics-integration]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Spring Integration Metrics
|
|
|
|
Auto-configuration enables binding of a number of Spring Integration-related metrics:
|
2015-06-06 06:42:41 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
.General metrics
|
|
|
|
|===
|
|
|
|
| Metric | Description
|
2015-06-06 06:42:41 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
| `spring.integration.channelNames`
|
|
|
|
| Number of Spring Integration channels
|
2015-04-23 17:36:21 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
| `spring.integration.handlerNames`
|
|
|
|
| Number of Spring Integration handlers
|
2015-04-23 17:36:21 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
| `spring.integration.sourceNames`
|
|
|
|
| Number of Spring Integration sources
|
|
|
|
|===
|
2015-04-23 17:36:21 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
.Channel metrics
|
|
|
|
|===
|
|
|
|
| Metric | Description
|
2015-05-31 19:17:11 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
| `spring.integration.channel.receives`
|
|
|
|
| Number of receives
|
2015-04-23 17:36:21 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
| `spring.integration.channel.sendErrors`
|
|
|
|
| Number of failed sends
|
2015-04-23 17:36:21 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
| `spring.integration.channel.sends`
|
|
|
|
| Number of successful sends
|
|
|
|
|===
|
2015-05-31 19:51:07 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
.Handler metrics
|
|
|
|
|===
|
|
|
|
| Metric | Description
|
2015-04-23 17:36:21 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
| `spring.integration.handler.duration.max`
|
|
|
|
| Maximum handler duration in milliseconds
|
2015-06-04 02:57:28 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
| `spring.integration.handler.duration.min`
|
|
|
|
| Minimum handler duration in milliseconds
|
2014-12-10 11:52:56 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
| `spring.integration.handler.duration.mean`
|
|
|
|
| Mean handler duration in milliseconds
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
| `spring.integration.handler.activeCount`
|
|
|
|
| Number of active handlers
|
|
|
|
|===
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
.Source metrics
|
|
|
|
|===
|
|
|
|
| Metric | Description
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2017-09-11 11:59:45 +08:00
|
|
|
| `spring.integration.source.messages`
|
|
|
|
| Number of successful source calls
|
|
|
|
|===
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-auditing]]
|
|
|
|
== Auditing
|
2017-10-31 00:15:32 +08:00
|
|
|
Once Spring Security is in play Spring Boot Actuator has a flexible audit framework that
|
|
|
|
publishes events (by default, '`authentication success`', '`failure`' and '`access denied`'
|
|
|
|
exceptions). This feature can be very useful for reporting and for implementing a
|
|
|
|
lock-out policy based on authentication failures. To customize published security events,
|
2015-11-06 04:17:55 +08:00
|
|
|
you can provide your own implementations of `AbstractAuthenticationAuditListener` and
|
|
|
|
`AbstractAuthorizationAuditListener`.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
You can also use the audit services for your own business events. To do so,
|
|
|
|
either inject the existing `AuditEventRepository` into your own components and
|
|
|
|
use that directly or publish an `AuditApplicationEvent` with the Spring
|
|
|
|
`ApplicationEventPublisher` (by implementing `ApplicationEventPublisherAware`).
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-tracing]]
|
|
|
|
== Tracing
|
2014-03-18 02:36:56 +08:00
|
|
|
Tracing is automatically enabled for all HTTP requests. You can view the `trace` endpoint
|
2017-10-31 00:15:32 +08:00
|
|
|
and obtain basic information about the last 100 requests. The following listing shows
|
|
|
|
sample output:
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
[source,json,indent=0]
|
|
|
|
----
|
2017-01-04 08:59:53 +08:00
|
|
|
[{
|
|
|
|
"timestamp": 1394343677415,
|
|
|
|
"info": {
|
|
|
|
"method": "GET",
|
|
|
|
"path": "/trace",
|
|
|
|
"headers": {
|
|
|
|
"request": {
|
|
|
|
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
|
|
|
|
"Connection": "keep-alive",
|
|
|
|
"Accept-Encoding": "gzip, deflate",
|
|
|
|
"User-Agent": "Mozilla/5.0 Gecko/Firefox",
|
|
|
|
"Accept-Language": "en-US,en;q=0.5",
|
|
|
|
"Cookie": "_ga=GA1.1.827067509.1390890128; ..."
|
|
|
|
"Authorization": "Basic ...",
|
|
|
|
"Host": "localhost:8080"
|
|
|
|
},
|
|
|
|
"response": {
|
|
|
|
"Strict-Transport-Security": "max-age=31536000 ; includeSubDomains",
|
|
|
|
"X-Application-Context": "application:8080",
|
|
|
|
"Content-Type": "application/json;charset=UTF-8",
|
|
|
|
"status": "200"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},{
|
|
|
|
"timestamp": 1394343684465,
|
|
|
|
...
|
|
|
|
}]
|
2014-03-14 04:18:47 +08:00
|
|
|
----
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
By default, the trace includes the following information:
|
2017-03-24 06:36:27 +08:00
|
|
|
|
|
|
|
[cols="1,2"]
|
|
|
|
|===
|
|
|
|
|Name |Description
|
|
|
|
|
|
|
|
|Request Headers
|
|
|
|
|Headers from the request.
|
|
|
|
|
|
|
|
|Response Headers
|
|
|
|
|Headers from the response.
|
|
|
|
|
|
|
|
|Cookies
|
|
|
|
|`Cookie` from request headers and `Set-Cookie` from response headers.
|
|
|
|
|
|
|
|
|Errors
|
|
|
|
|The error attributes (if any).
|
|
|
|
|
|
|
|
|Time Taken
|
|
|
|
|The time taken to service the request in milliseconds.
|
|
|
|
|===
|
|
|
|
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-custom-tracing]]
|
|
|
|
=== Custom tracing
|
2017-10-31 00:15:32 +08:00
|
|
|
If you need to trace additional events, you can inject a
|
2014-03-14 04:18:47 +08:00
|
|
|
{sc-spring-boot-actuator}/trace/TraceRepository.{sc-ext}[`TraceRepository`] into your
|
2017-10-31 00:15:32 +08:00
|
|
|
Spring beans. The `add` method accepts a single `Map` structure that is converted to
|
2014-03-14 04:18:47 +08:00
|
|
|
JSON and logged.
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
By default, an `InMemoryTraceRepository` that stores the last 100 events is used. If you
|
|
|
|
need to expand the capacity, you can define your own instance of the
|
|
|
|
`InMemoryTraceRepository` bean. You can also create your own alternative
|
|
|
|
`TraceRepository` implementation.
|
2014-03-14 04:18:47 +08:00
|
|
|
|
|
|
|
|
2015-06-04 02:57:28 +08:00
|
|
|
|
2014-04-12 03:19:18 +08:00
|
|
|
[[production-ready-process-monitoring]]
|
2017-10-31 00:15:32 +08:00
|
|
|
== Process Monitoring
|
|
|
|
In the `spring-boot` module, you can find two classes to create files that are often useful
|
|
|
|
for process monitoring:
|
2014-10-09 14:03:35 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
* `ApplicationPidFileWriter` creates a file containing the application PID (by default, in
|
|
|
|
the application directory with the file name, `application.pid`).
|
2014-10-09 14:03:35 +08:00
|
|
|
* `EmbeddedServerPortFileWriter` creates a file (or files) containing the ports of the
|
2017-10-31 00:15:32 +08:00
|
|
|
embedded server (by default, in the application directory with the file name
|
2014-10-09 14:03:35 +08:00
|
|
|
`application.port`).
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
By default, these writers are not activated, but you can enable them in one of the ways
|
|
|
|
described in the next section.
|
2014-04-12 03:19:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-process-monitoring-configuration]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Extend Configuration
|
|
|
|
In the `META-INF/spring.factories` file, you can activate the listener(s) that
|
|
|
|
writes a PID file, as shown in the following example:
|
2014-04-23 16:42:10 +08:00
|
|
|
|
2014-04-12 03:19:18 +08:00
|
|
|
[indent=0]
|
|
|
|
----
|
2015-06-06 06:42:41 +08:00
|
|
|
org.springframework.context.ApplicationListener=\
|
2017-02-05 16:23:56 +08:00
|
|
|
org.springframework.boot.system.ApplicationPidFileWriter,\
|
2017-10-30 23:32:49 +08:00
|
|
|
org.springframework.boot.system.EmbeddedServerPortFileWriter
|
2014-04-12 03:19:18 +08:00
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-process-monitoring-programmatically]]
|
|
|
|
=== Programmatically
|
2014-10-09 14:03:35 +08:00
|
|
|
You can also activate a listener by invoking the `SpringApplication.addListeners(...)`
|
2017-10-31 00:15:32 +08:00
|
|
|
method and passing the appropriate `Writer` object. This method also lets you
|
|
|
|
customize the file name and path in the `Writer` constructor.
|
2014-04-12 03:19:18 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-01-04 09:27:14 +08:00
|
|
|
[[production-ready-cloudfoundry]]
|
2017-10-31 00:15:32 +08:00
|
|
|
== Cloud Foundry Support
|
2017-01-04 09:27:14 +08:00
|
|
|
Spring Boot's actuator module includes additional support that is activated when you
|
|
|
|
deploy to a compatible Cloud Foundry instance. The `/cloudfoundryapplication` path
|
2017-07-12 16:08:43 +08:00
|
|
|
provides an alternative secured route to all `@Endpoint` beans.
|
2017-01-04 09:27:14 +08:00
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
The extended support lets Cloud Foundry management UIs (such as the web
|
|
|
|
application that you can use to view deployed applications) be augmented with Spring
|
2017-01-04 09:27:14 +08:00
|
|
|
Boot actuator information. For example, an application status page may include full health
|
|
|
|
information instead of the typical "`running`" or "`stopped`" status.
|
|
|
|
|
|
|
|
NOTE: The `/cloudfoundryapplication` path is not directly accessible to regular users.
|
2017-10-31 00:15:32 +08:00
|
|
|
In order to use the endpoint, a valid UAA token must be passed with the request.
|
2017-01-04 09:27:14 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-cloudfoundry-disable]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Disabling Extended Cloud Foundry Actuator Support
|
|
|
|
If you want to fully disable the `/cloudfoundryapplication` endpoints, you can add the
|
|
|
|
following setting to your `application.properties` file:
|
2017-01-04 09:27:14 +08:00
|
|
|
|
|
|
|
|
|
|
|
.application.properties
|
|
|
|
[source,properties,indent=0]
|
|
|
|
----
|
|
|
|
management.cloudfoundry.enabled=false
|
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-cloudfoundry-ssl]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Cloud Foundry Self-signed Certificates
|
2017-01-04 09:27:14 +08:00
|
|
|
By default, the security verification for `/cloudfoundryapplication` endpoints makes SSL
|
|
|
|
calls to various Cloud Foundry services. If your Cloud Foundry UAA or Cloud Controller
|
2017-10-31 00:15:32 +08:00
|
|
|
services use self-signed certificates, you need to set the following property:
|
2017-01-04 09:27:14 +08:00
|
|
|
|
|
|
|
.application.properties
|
|
|
|
[source,properties,indent=0]
|
|
|
|
----
|
|
|
|
management.cloudfoundry.skip-ssl-validation=true
|
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[[production-ready-cloudfoundry-custom-security]]
|
2017-10-31 00:15:32 +08:00
|
|
|
=== Custom Security Configuration
|
|
|
|
If you define custom security configuration and you want extended Cloud Foundry actuator
|
|
|
|
support, you should ensure that `/cloudfoundryapplication/**` paths are open. Without
|
|
|
|
a direct open route, your Cloud Foundry application manager is not able to obtain
|
2017-01-04 09:27:14 +08:00
|
|
|
endpoint data.
|
|
|
|
|
2017-10-31 00:15:32 +08:00
|
|
|
For Spring Security, you typically include something like
|
|
|
|
`mvcMatchers("/cloudfoundryapplication/**").permitAll()` in your configuration, as shown
|
|
|
|
in the following example:
|
2017-01-04 09:27:14 +08:00
|
|
|
|
|
|
|
[source,java,indent=0]
|
|
|
|
----
|
|
|
|
include::{code-examples}/cloudfoundry/CloudFoundryIgnorePathsExample.java[tag=security]
|
|
|
|
----
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-03-14 04:18:47 +08:00
|
|
|
[[production-ready-whats-next]]
|
2017-10-31 00:15:32 +08:00
|
|
|
== What to Read Next
|
2014-03-14 04:18:47 +08:00
|
|
|
If you want to explore some of the concepts discussed in this chapter, you can take a
|
|
|
|
look at the actuator {github-code}/spring-boot-samples[sample applications]. You also
|
|
|
|
might want to read about graphing tools such as http://graphite.wikidot.com/[Graphite].
|
|
|
|
|
2015-04-10 01:57:40 +08:00
|
|
|
Otherwise, you can continue on, to read about <<deployment.adoc#deployment,
|
|
|
|
'`deployment options`'>> or jump ahead
|
2014-10-13 03:47:19 +08:00
|
|
|
for some in-depth information about Spring Boot's
|
2014-10-28 18:53:47 +08:00
|
|
|
_<<build-tool-plugins.adoc#build-tool-plugins, build tool plugins>>_.
|