server.adoc 1.57 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
[[spring-boot-admin-server]]
== Spring Boot Admin Server ==

.Spring Boot Admin Server configuration options
|===
| 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
13
| Time interval in ms to update the status of applications with expired status-information.
Johnny Lim committed
14
| 10,000
15 16 17

| 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.
Johnny Lim committed
18
| 10,000
19

20
| spring.boot.admin.monitor.connect-timeout
Johnny Lim committed
21 22
| Connect timeout in ms when querying the applications' status and info.
| 2,000
23 24

| spring.boot.admin.monitor.read-timeout
Johnny Lim committed
25 26
| Read timeout in ms when querying the applications' status and info.
| 5,000
27

28 29
| 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.
30 31 32 33 34 35
| `"env", "metrics", "trace", "dump", "jolokia", "info", "configprops", "activiti", "logfile", "refresh", "flyway", "liquibase", "loggers"`

| spring.boot.admin.metadata-keys-to-sanitize
| Metadata values for the keys matching these regex patterns will be sanitized in all json output.
| `".*password$", ".*secret$", ".*key$", ".*$token$", ".*credentials.*", ".*vcap_services$"`

36 37 38 39 40 41 42
|===

include::server-discovery.adoc[]

include::server-clustering.adoc[]

include::server-notifications.adoc[]
43

44
include::server-ui-modules.adoc[]