Registry / observability / spring-boot-actuator

spring-boot-actuator

JSON →
library4.0.2javamavenunverified

Spring Boot Actuator provides production-ready features for monitoring and managing Spring Boot applications via HTTP endpoints.

<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-actuator</artifactId> <version>4.0.2</version> </dependency>
INSTALL
IMPORT
SIG · SPRING-BOOT-ACTUAT
S
spring-boot-actuator
observabilityjavav4.0.2
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

HealthIndicator
org.springframework.boot.actuate.health.HealthIndicator

Minimal custom health indicator using HealthIndicator.

import org.springframework.boot.actuate.health.Health; import org.springframework.boot.actuate.health.HealthIndicator; import org.springframework.stereotype.Component; @Component public class CustomHealthIndicator implements HealthIndicator { @Override public Health health() { return Health.up().withDetail("custom", "ok").build(); } }
Debug
Known issues
gotchaActuator endpoints may expose sensitive information if not secured properly.
fix
Use Spring Security to protect Actuator endpoints, especially in production.
affects: *
Upgrade
Version history
4.0.2latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
19 hits · last 30 days
node
18
OpenAI (training)
1
Resources
spring-boot-actuator — mvn dependency:get spring-boot-actuator · libregistry