Properties
| Property |
|---|
spring.boot.admin.context-pathThe context-path prefixes the path where the Admin Servers static assets and api should be served, relative to the Dispatcher-Servlet.
|
spring.boot.admin.monitor.period
|
spring.boot.admin.server.enabledEnable Spring Boot Admin Server Default: true
|
spring.boot.admin.monitor.retriesNumber of retries per endpointId. Defaults to default-retry.
|
spring.boot.admin.monitor.timeouttimeout per endpointId. Defaults to default-timeout.
|
spring.boot.admin.probed-endpointsFor Spring Boot 2.x applications the endpoints should be discovered automatically using the actuator links. For Spring Boot 1.x applications SBA probes for the specified endpoints using an OPTIONS request. If the path differs from the id you can specify this as id:path (e.g. health:ping). All the available default endpoints are listed in the documentation.
|
spring.boot.admin.hazelcast.enabledEnable Hazelcast support.
|
spring.boot.admin.monitor.read-timeout
|
spring.boot.admin.hazelcast.event-storeName of backing Hazelcast-Map for storing the instance events.
|
spring.boot.admin.instance-auth.enabledWhether or not to use configuration properties as a source for instance credentials
|
spring.boot.admin.monitor.info-intervalTime interval to check the info of instances,
|
spring.boot.admin.monitor.info-lifetimeLifetime of info. The info won't be updated as long the last info isn't expired.
|
spring.boot.admin.monitor.connect-timeout
|
spring.boot.admin.monitor.default-retriesDefault number of retries for failed requests. Individual values for specific endpoints can be overridden using `spring.boot.admin.monitor.retries.*`.
|
spring.boot.admin.monitor.default-timeoutDefault timeout when making requests. Individual values for specific endpoints can be overridden using `spring.boot.admin.monitor.timeout.*`.
|
spring.boot.admin.monitor.status-intervalTime interval to check the status of instances, must be greater than 1 second.
|
spring.boot.admin.monitor.status-lifetimeLifetime of status. The status won't be updated as long the last status isn't expired.
|
spring.boot.admin.ssrf-protection.enabledWhether SSRF protection is enabled. When enabled, registration URLs are validated against blocked schemes and non-external IP addresses. Default: false (opt-in).
|
spring.boot.admin.monitor.info-max-backoffThe maximal backoff for info check retries (retry after error has exponential backoff, minimum backoff is 1 second).
|
spring.boot.admin.instance-auth.service-mapMap of instance credentials per registered service name
|
spring.boot.admin.metadata-keys-to-sanitizeThe metadata keys which should be sanitized when serializing to JSON
|
spring.boot.admin.monitor.status-max-backoffThe maximal backoff for status check retries (retry after error has exponential backoff, minimum backoff is 1 second).
|
spring.boot.admin.hazelcast.sent-notificationsName of backing Hazelcast-Map for storing the sent notifications.
|
spring.boot.admin.ssrf-protection.allowed-cidrsAdditional IP addresses or CIDR ranges (IPv4 and IPv6) that are permitted even if they would otherwise be blocked by the default {@code InetAddressFilter.externalAddresses()} filter. Useful for intranet deployments where the Admin Server must reach services on private IP ranges. Examples: {@code 192.168.1.100}, {@code 192.168.1.0/24}, {@code 10.0.0.0/8}, {@code fd00::/8}
|
spring.boot.admin.instance-auth.default-passwordDefault userpassword used for authentication to each instance. Individual values for specific instances can be overriden using `spring.boot.admin.instance-auth.service-map.*.user-password`.
|
spring.boot.admin.instance-proxy.ignored-headersHeaders not to be forwarded when making requests to clients.
|
spring.boot.admin.instance-auth.default-user-nameDefault username used for authentication to each instance. Individual values for specific instances can be overriden using `spring.boot.admin.instance-auth.service-map.*.user-name`.
|
spring.boot.admin.ssrf-protection.allowed-schemesURL schemes that are permitted. Any scheme not in this list is blocked. Default: http, https.
|
spring.boot.admin.monitor.status-change-detection-strategyStrategy to use to determine if, given two {@link StatusInfo} instances, they're different or not in order to decide if a {@code STATUS_UPDATED} event should be published or not. Defaults to {@link AdminServerProperties.MonitorProperties#DEFAULT_STATUS_CHANGE_DETECTION_STRATEGY} unless a different value is specified.
|