| Package | Description |
|---|---|
| org.springframework.boot.actuate.autoconfigure.endpoint.expose |
Endpoint exposure logic used for auto-configuration and conditions.
|
| org.springframework.boot.actuate.endpoint |
Endpoint support.
|
| org.springframework.boot.actuate.endpoint.annotation |
Annotation support for actuator endpoints.
|
| org.springframework.boot.actuate.endpoint.jmx |
JMX support for actuator endpoints.
|
| org.springframework.boot.actuate.endpoint.web |
Web support for actuator endpoints.
|
| org.springframework.boot.actuate.endpoint.web.annotation |
Annotation support for actuator web endpoints.
|
| Modifier and Type | Class and Description |
|---|---|
class |
IncludeExcludeEndpointFilter<E extends ExposableEndpoint<?>>
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
EndpointFilter<E extends ExposableEndpoint<?>>
Strategy class that can be used to filter
endpoints. |
interface |
EndpointsSupplier<E extends ExposableEndpoint<?>>
Provides access to a collection of
endpoints. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractExposableEndpoint<O extends Operation>
Abstract base class for
ExposableEndpoint implementations. |
| Modifier and Type | Class and Description |
|---|---|
class |
EndpointDiscoverer<E extends ExposableEndpoint<O>,O extends Operation>
A Base for
EndpointsSupplier implementations that discover
@Endpoint beans and @EndpointExtension beans
in an application context. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
DiscoveredEndpoint<O extends Operation>
An
endpoint discovered by an EndpointDiscoverer. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractDiscoveredEndpoint<O extends Operation>
Abstract base class for
endpoints discovered by a
EndpointDiscoverer. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ExposableJmxEndpoint
Information describing an endpoint that can be exposed over JMX.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ExposableServletEndpoint
Information describing an endpoint that can be exposed by registering a servlet.
|
interface |
ExposableWebEndpoint
Information describing an endpoint that can be exposed over the web.
|
| Constructor and Description |
|---|
EndpointLinksResolver(Collection<? extends ExposableEndpoint<?>> endpoints)
Creates a new
EndpointLinksResolver that will resolve links to the given
endpoints. |
EndpointLinksResolver(Collection<? extends ExposableEndpoint<?>> endpoints,
String basePath)
Creates a new
EndpointLinksResolver that will resolve links to the given
endpoints that are exposed beneath the given basePath. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ExposableControllerEndpoint
Information describing an endpoint that can be exposed over Spring MVC or Spring
WebFlux.
|