Package | Description |
---|---|
org.springframework.boot.actuate.endpoint |
Endpoints used to expose actuator information.
|
org.springframework.boot.actuate.endpoint.jmx |
Actuator JMX endpoint support.
|
org.springframework.boot.actuate.endpoint.mvc |
Actuator Spring MVC endpoint support.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractEndpoint<T>
Abstract base for
Endpoint implementations. |
class |
AutoConfigurationReportEndpoint
Endpoint to expose the ConditionEvaluationReport . |
class |
BeansEndpoint
Exposes JSON view of Spring beans.
|
class |
ConfigurationPropertiesReportEndpoint
Endpoint to expose application properties from ConfigurationProperties
annotated beans. |
class |
DumpEndpoint
Endpoint to expose thread info. |
class |
EnvironmentEndpoint
Endpoint to expose environment information. |
class |
FlywayEndpoint
Endpoint to expose flyway info. |
class |
HealthEndpoint
Endpoint to expose application health. |
class |
InfoEndpoint
Endpoint to expose arbitrary application information. |
class |
LiquibaseEndpoint
Endpoint to expose liquibase info. |
class |
LoggersEndpoint
Endpoint to expose a collection of LoggerConfiguration s. |
class |
MetricsEndpoint
Endpoint to expose a collection of PublicMetrics . |
class |
RequestMappingEndpoint
Endpoint to expose Spring MVC mappings. |
class |
ShutdownEndpoint
Endpoint to shutdown the ApplicationContext . |
class |
TraceEndpoint
|
Modifier and Type | Method and Description |
---|---|
Endpoint<?> |
EndpointMBean.getEndpoint() |
Modifier and Type | Method and Description |
---|---|
Class<? extends Endpoint> |
JmxEndpoint.getEndpointType()
Return the type of
Endpoint exposed, or null if this
JmxEndpoint exposes information that cannot be represented as a traditional
Endpoint . |
Class<? extends Endpoint> |
EndpointMBean.getEndpointType() |
Class<? extends Endpoint> |
AbstractJmxEndpoint.getEndpointType() |
Modifier and Type | Method and Description |
---|---|
protected JmxEndpoint |
EndpointMBeanExporter.adaptEndpoint(String beanName,
Endpoint<?> endpoint)
Adapt the given
Endpoint to a JmxEndpoint . |
protected EndpointMBean |
EndpointMBeanExporter.getEndpointMBean(String beanName,
Endpoint<?> endpoint)
Deprecated.
as of 1.5 in favor of
EndpointMBeanExporter.adaptEndpoint(String, Endpoint) |
protected void |
EndpointMBeanExporter.registerEndpoint(String beanName,
Endpoint<?> endpoint)
Deprecated.
as of 1.5 in favor of direct
JmxEndpoint registration or
EndpointMBeanExporter.adaptEndpoint(String, Endpoint) |
Constructor and Description |
---|
DataEndpointMBean(String beanName,
Endpoint<?> endpoint,
com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Create a new
DataEndpointMBean instance. |
EndpointMBean(String beanName,
Endpoint<?> endpoint,
com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Create a new
EndpointMBean instance. |
LoggersEndpointMBean(String beanName,
Endpoint<?> endpoint,
com.fasterxml.jackson.databind.ObjectMapper objectMapper) |
ShutdownEndpointMBean(String beanName,
Endpoint<?> endpoint,
com.fasterxml.jackson.databind.ObjectMapper objectMapper)
Create a new
ShutdownEndpointMBean instance. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractEndpointMvcAdapter<E extends Endpoint<?>>
Abstract base class for
MvcEndpoint implementations. |
Modifier and Type | Method and Description |
---|---|
Class<? extends Endpoint> |
MvcEndpoint.getEndpointType()
Return the type of
Endpoint exposed, or null if this
MvcEndpoint exposes information that cannot be represented as a traditional
Endpoint . |
Class<? extends Endpoint> |
AbstractMvcEndpoint.getEndpointType() |
Class<? extends Endpoint> |
AbstractEndpointMvcAdapter.getEndpointType() |
Constructor and Description |
---|
EndpointMvcAdapter(Endpoint<?> delegate)
Create a new
EndpointMvcAdapter . |
Copyright © 2018 Pivotal Software, Inc.. All rights reserved.