Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

spring-actuator弹簧执行器

Agent Skill

用于辅助 Java 项目开发、面向对象设计、Spring 生态、Maven 或 Gradle 依赖和后端工程实践。它适合让 Agent 分析类结构、设计接口、整理服务分层、生成测试或检查常见代码坏味道。使用时需要结合项目已有架构、包结构和依赖版本,不应只按通用教程改代码;涉及数据库、事务、并发或框架配置时,应先确认运行环境和回归测试范围。

总安装

636

周安装

26

GitHub Stars

12

下载量

206
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:spring-actuator(弹簧执行器)
来源仓库:https://github.com/claude-dev-suite/claude-dev-suite
仓库路径:skills/spring-actuator
安装命令:
npx skills add https://github.com/claude-dev-suite/claude-dev-suite --skill spring-actuator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/claude-dev-suite/claude-dev-suite --skill spring-actuator

简介

用于辅助 Java 项目中的 Spring Actuator 配置与使用。

  • 适用于监控、指标收集和运维管理场景的 Spring Boot 应用。
  • 通过分析项目结构生成 Actuator 端点配置和健康检查。
  • 需结合具体 Spring Boot 版本和依赖确认功能兼容性。
  • 涉及生产环境暴露端点时,应评估安全风险并限制访问权限。

SKILL.md

Spring Boot Actuator

Quick Start

<!-- pom.xml -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
    <groupId>io.micrometer</groupId>
    <artifactId>micrometer-registry-prometheus</artifactId>
</dependency>
# application.yml
management:
  endpoints:
    web:
      exposure:
        include: health,info,metrics,prometheus
  endpoint:
    health:
      show-details: when_authorized
  info:
    env:
      enabled: true

info:
  app:
    name: @project.name@
    version: @project.version@

Endpoints Configuration

management:
  endpoints:
    web:
      exposure:
        include: "*"  # Dev: all
        # include: health,info,metrics,prometheus  # Prod
        exclude: shutdown,threaddump
      base-path: /actuator

  endpoint:
    health:
      enabled: true
      show-details: when_authorized
      show-components: when_authorized
    shutdown:
      enabled: false  # Dangerous in prod

Available Endpoints

EndpointDescriptionDefault
/healthHealth statusEnabled
/infoApp infoEnabled
/metricsMetricsEnabled
/prometheusPrometheus formatEnabled*
/envEnvironment propertiesDisabled
/configpropsConfiguration propertiesDisabled
/beansAll beansDisabled
/mappingsRequest mappingsDisabled
/loggersLogger levelsDisabled
/threaddumpThread dumpDisabled
/shutdownGraceful shutdownDisabled

Health Indicators

management:
  health:
    db:
      enabled: true
    redis:
      enabled: true
    diskspace:
      enabled: true
      threshold: 10MB

Custom Health Indicator

@Component
public class ExternalServiceHealthIndicator implements HealthIndicator {

    private final RestClient restClient;

    @Override
    public Health health() {
        try {
            long startTime = System.currentTimeMillis();
            ResponseEntity<Void> response = restClient.get()
                .uri("/health")
                .retrieve()
                .toBodilessEntity();
            long responseTime = System.currentTimeMillis() - startTime;

            if (response.getStatusCode().is2xxSuccessful()) {
                return Health.up()
                    .withDetail("service", "external-api")
                    .withDetail("responseTime", responseTime + "ms")
                    .build();
            }
            return Health.down().build();
        } catch (Exception e) {
            return Health.down()
                .withDetail("error", e.getMessage())
                .build();
        }
    }
}
Full Reference: See health.md for composite indicators, health groups, and availability management.

Kubernetes Probes

management:
  endpoint:
    health:
      probes:
        enabled: true
      group:
        liveness:
          include: livenessState
        readiness:
          include: readinessState,db,redis

  health:
    livenessstate:
      enabled: true
    readinessstate:
      enabled: true
# Kubernetes deployment
spec:
  containers:
    - name: app
      livenessProbe:
        httpGet:
          path: /actuator/health/liveness
          port: 8080
        initialDelaySeconds: 30
        periodSeconds: 10

      readinessProbe:
        httpGet:
          path: /actuator/health/readiness
          port: 8080
        initialDelaySeconds: 10
        periodSeconds: 5
Full Reference: See health.md for availability state management and K8s probe configuration.

Metrics with Micrometer

management:
  metrics:
    enable:
      all: true
    tags:
      application: ${spring.application.name}
      environment: ${spring.profiles.active:default}
    distribution:
      percentiles-histogram:
        http.server.requests: true

Custom Metrics

@Service
public class OrderService {

    private final MeterRegistry meterRegistry;
    private final Counter orderCounter;
    private final Timer orderProcessingTimer;

    public OrderService(MeterRegistry meterRegistry) {
        this.meterRegistry = meterRegistry;
        this.orderCounter = Counter.builder("orders.created")
            .description("Total orders created")
            .register(meterRegistry);
        this.orderProcessingTimer = Timer.builder("orders.processing.time")
            .publishPercentiles(0.5, 0.95, 0.99)
            .register(meterRegistry);
    }

    public Order createOrder(OrderRequest request) {
        return orderProcessingTimer.record(() -> {
            Order order = processOrder(request);
            orderCounter.increment();
            return order;
        });
    }
}
Full Reference: See metrics.md for annotations, Prometheus config, and Grafana alerts.

Prometheus Integration

management:
  endpoints:
    web:
      exposure:
        include: prometheus
  prometheus:
    metrics:
      export:
        enabled: true
# prometheus.yml
scrape_configs:
  - job_name: 'spring-boot-app'
    metrics_path: '/actuator/prometheus'
    scrape_interval: 15s
    static_configs:
      - targets: ['localhost:8080']

Security

@Configuration
@EnableWebSecurity
public class ActuatorSecurityConfig {

    @Bean
    public SecurityFilterChain actuatorSecurityFilterChain(HttpSecurity http) throws Exception {
        return http
            .securityMatcher(EndpointRequest.toAnyEndpoint())
            .authorizeHttpRequests(auth -> auth
                .requestMatchers(EndpointRequest.to("health", "info")).permitAll()
                .requestMatchers(EndpointRequest.to("prometheus")).permitAll()
                .requestMatchers(EndpointRequest.to("env", "beans")).hasRole("ADMIN")
                .anyRequest().authenticated()
            )
            .httpBasic(Customizer.withDefaults())
            .build();
    }
}
# Separate management port
management:
  server:
    port: 9090
    address: 127.0.0.1
Full Reference: See custom-endpoints.md for custom endpoints and testing.

Best Practices

DoDon't
Expose only necessary endpoints in prodExpose all endpoints
Use health groups for K8s probesUse single health endpoint
Configure metrics with consistent tagsUse high-cardinality tags
Implement custom health indicatorsRely only on built-in
Separate management port in productionUse same port as app

When NOT to Use This Skill

  • Application profiling - Use spring-profiles for environment config
  • Distributed tracing - Use micrometer-tracing for trace context
  • Log aggregation - Use logging frameworks and ELK/Loki
  • APM tools - Actuator complements Datadog, New Relic

Common Pitfalls

ErrorCauseSolution
Endpoints not exposedMissing configAdd to management.endpoints.web.exposure.include
Health always UPIndicators not configuredVerify dependencies in classpath
Metrics missingRegistry not configuredAdd micrometer-registry-prometheus
Security bypassEndpoints publicConfigure security for actuator
Memory leakHigh cardinality tagsAvoid userId, requestId as tags

Anti-Patterns

Anti-PatternProblemSolution
Exposing all endpoints in prodSecurity riskLimit to health, metrics, prometheus
High cardinality metric tagsMemory explosionUse bounded tag values
No auth on sensitive endpointsInformation leakConfigure Spring Security
Ignoring health groupsPoor K8s integrationUse liveness/readiness groups

Quick Troubleshooting

ProblemDiagnosticFix
Endpoints not exposedCheck configAdd to exposure.include
Health always DOWNCheck componentFix failing indicator
Metrics missingCheck registryAdd Micrometer dependency
401 on endpointsSecurity blockingConfigure actuator security
Prometheus not scrapingCheck pathVerify /actuator/prometheus

Production Checklist

  • Health endpoints configured
  • K8s probes (liveness, readiness) active
  • Prometheus scraping configured
  • Alert rules defined
  • Security on sensitive endpoints
  • Custom health indicators for external deps
  • Business metrics implemented
  • Grafana dashboard configured

Reference Files

FileContent
health.mdHealth Indicators, K8s Probes, Availability
metrics.mdMicrometer, Prometheus, Grafana Alerts
custom-endpoints.mdCustom Endpoints, Security, Testing

External Documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.57%
按下载量换算67

Claude

32.48%
按下载量换算67

Cursor

16.63%
按下载量换算34

Gemini CLI

8.57%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills