Uses of Class
org.springframework.boot.actuate.endpoint.EndpointId
Packages that use EndpointId
Package
Description
Endpoint exposure logic used for auto-configuration and conditions.
Endpoint support.
Annotation support for actuator endpoints.
Interfaces and classes relating to invoking operation methods.
Caching support for actuator endpoints.
Annotation support for actuator JMX endpoints.
Web support for actuator endpoints.
Annotation support for actuator web endpoints.
Actuator health indicator and endpoints.
-
Uses of EndpointId in org.springframework.boot.actuate.autoconfigure.endpoint.expose
Methods in org.springframework.boot.actuate.autoconfigure.endpoint.expose with parameters of type EndpointIdModifier and TypeMethodDescriptionfinal boolean
IncludeExcludeEndpointFilter.match
(EndpointId endpointId) Returntrue
if the filter matches. -
Uses of EndpointId in org.springframework.boot.actuate.endpoint
Methods in org.springframework.boot.actuate.endpoint that return EndpointIdModifier and TypeMethodDescriptionstatic EndpointId
EndpointId.fromPropertyValue
(String value) Factory method to create a newEndpointId
from a property value.AbstractExposableEndpoint.getEndpointId()
ExposableEndpoint.getEndpointId()
Return the endpoint ID.static EndpointId
Factory method to create a newEndpointId
of the specified value.static EndpointId
EndpointId.of
(Environment environment, String value) Factory method to create a newEndpointId
of the specified value.Constructors in org.springframework.boot.actuate.endpoint with parameters of type EndpointIdModifierConstructorDescriptionAbstractExposableEndpoint
(EndpointId id, boolean enabledByDefault, Collection<? extends O> operations) Create a newAbstractExposableEndpoint
instance. -
Uses of EndpointId in org.springframework.boot.actuate.endpoint.annotation
Methods in org.springframework.boot.actuate.endpoint.annotation with parameters of type EndpointIdModifier and TypeMethodDescriptionprotected abstract E
EndpointDiscoverer.createEndpoint
(Object endpointBean, EndpointId id, boolean enabledByDefault, Collection<O> operations) Factory method called to create theendpoint
.protected abstract O
EndpointDiscoverer.createOperation
(EndpointId endpointId, DiscoveredOperationMethod operationMethod, OperationInvoker invoker) Factory method to create anendpoint operation
.Constructors in org.springframework.boot.actuate.endpoint.annotation with parameters of type EndpointIdModifierConstructorDescriptionAbstractDiscoveredEndpoint
(EndpointDiscoverer<?, ?> discoverer, Object endpointBean, EndpointId id, boolean enabledByDefault, Collection<? extends O> operations) Create a newAbstractDiscoveredEndpoint
instance. -
Uses of EndpointId in org.springframework.boot.actuate.endpoint.invoke
Methods in org.springframework.boot.actuate.endpoint.invoke with parameters of type EndpointIdModifier and TypeMethodDescriptionOperationInvokerAdvisor.apply
(EndpointId endpointId, OperationType operationType, OperationParameters parameters, OperationInvoker invoker) Apply additional functionality to the given invoker. -
Uses of EndpointId in org.springframework.boot.actuate.endpoint.invoker.cache
Methods in org.springframework.boot.actuate.endpoint.invoker.cache with parameters of type EndpointIdModifier and TypeMethodDescriptionCachingOperationInvokerAdvisor.apply
(EndpointId endpointId, OperationType operationType, OperationParameters parameters, OperationInvoker invoker) Constructor parameters in org.springframework.boot.actuate.endpoint.invoker.cache with type arguments of type EndpointIdModifierConstructorDescriptionCachingOperationInvokerAdvisor
(Function<EndpointId, Long> endpointIdTimeToLive) -
Uses of EndpointId in org.springframework.boot.actuate.endpoint.jmx.annotation
Methods in org.springframework.boot.actuate.endpoint.jmx.annotation with parameters of type EndpointIdModifier and TypeMethodDescriptionprotected ExposableJmxEndpoint
JmxEndpointDiscoverer.createEndpoint
(Object endpointBean, EndpointId id, boolean enabledByDefault, Collection<JmxOperation> operations) protected JmxOperation
JmxEndpointDiscoverer.createOperation
(EndpointId endpointId, DiscoveredOperationMethod operationMethod, OperationInvoker invoker) -
Uses of EndpointId in org.springframework.boot.actuate.endpoint.web
Methods in org.springframework.boot.actuate.endpoint.web with parameters of type EndpointIdModifier and TypeMethodDescriptionPathMappedEndpoints.getEndpoint
(EndpointId endpointId) Return thePathMappedEndpoint
with the given ID ornull
if the endpoint cannot be found.PathMappedEndpoints.getPath
(EndpointId endpointId) Return the full path for the endpoint with the given ID ornull
if the endpoint cannot be found.PathMappedEndpoints.getRootPath
(EndpointId endpointId) Return the root path for the endpoint with the given ID ornull
if the endpoint cannot be found.static String
PathMapper.getRootPath
(List<PathMapper> pathMappers, EndpointId endpointId) Resolve the root path for the specifiedendpointId
from the given path mappers.PathMapper.getRootPath
(EndpointId endpointId) Resolve the root path for the specifiedendpointId
. -
Uses of EndpointId in org.springframework.boot.actuate.endpoint.web.annotation
Methods in org.springframework.boot.actuate.endpoint.web.annotation with parameters of type EndpointIdModifier and TypeMethodDescriptionprotected ExposableControllerEndpoint
ControllerEndpointDiscoverer.createEndpoint
(Object endpointBean, EndpointId id, boolean enabledByDefault, Collection<Operation> operations) protected ExposableServletEndpoint
ServletEndpointDiscoverer.createEndpoint
(Object endpointBean, EndpointId id, boolean enabledByDefault, Collection<Operation> operations) protected ExposableWebEndpoint
WebEndpointDiscoverer.createEndpoint
(Object endpointBean, EndpointId id, boolean enabledByDefault, Collection<WebOperation> operations) protected Operation
ControllerEndpointDiscoverer.createOperation
(EndpointId endpointId, DiscoveredOperationMethod operationMethod, OperationInvoker invoker) protected Operation
ServletEndpointDiscoverer.createOperation
(EndpointId endpointId, DiscoveredOperationMethod operationMethod, OperationInvoker invoker) protected WebOperation
WebEndpointDiscoverer.createOperation
(EndpointId endpointId, DiscoveredOperationMethod operationMethod, OperationInvoker invoker) -
Uses of EndpointId in org.springframework.boot.actuate.health
Fields in org.springframework.boot.actuate.health declared as EndpointId