From spring-boot
Configures Spring Boot 4 observability with Actuator, Micrometer, and OpenTelemetry for health checks, custom metrics, distributed tracing, Kubernetes probes, endpoint security, and monitoring.
How this skill is triggered — by the user, by Claude, or both
Slash command
/spring-boot:spring-boot-observabilityThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Production observability with Actuator endpoints, Micrometer metrics, and OpenTelemetry tracing.
Production observability with Actuator endpoints, Micrometer metrics, and OpenTelemetry tracing.
| Component | Purpose |
|---|---|
| Actuator | Health checks, info, metrics exposure, operational endpoints |
| Micrometer | Metrics abstraction (Timer, Counter, Gauge, DistributionSummary) |
| OpenTelemetry | Distributed tracing (default in Spring Boot 4) |
actuator, micrometer-registry-*, opentelemetrySee EXAMPLES.md for complete working examples including:
org.springframework.boot.health.contributor.*access: none/unrestricted/read-only| Anti-Pattern | Fix |
|---|---|
| DB checks in liveness probe | Move to readiness group only |
| 100% trace sampling in production | Use 10% or less |
| Exposing all endpoints publicly | Separate management port + auth |
| High-cardinality metric tags | Use low-cardinality tags only |
| Missing graceful shutdown | Add server.shutdown=graceful |
| No health probe groups | Separate liveness and readiness |
| Need | Skill |
|---|---|
| Dependency validation | spring-boot-verify |
| Actuator security | spring-boot-security |
| Actuator testing | spring-boot-testing |
| Module metrics | spring-boot-modulith |
npx claudepluginhub joaquimscosta/arkhe-claude-plugins --plugin spring-bootConfigures Spring Boot Actuator for production monitoring, health probes, secure endpoints, and Micrometer metrics in JVM services. Useful for observability, health checks, and metrics setup.
Guides OpenTelemetry setup in Java: Javaagent zero-code instrumentation, Spring Boot Starter, autoconfigure SDK, declarative YAML config, BOM dependency management.
Instruments services with OpenTelemetry for RED metrics, structured logs, distributed tracing, and health checks. Outputs code/config for detected stacks like Node.js, Python, Go. Use for 'add monitoring', 'instrument', 'observability'.