0

我正在尝试在 spring boot 2.0.2.RELEASE 中实现执行器。

pom.xml 中的依赖

    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
        <scope>compile</scope>
    </dependency>

应用程序属性

management.server.port = 8082
management.endpoint.health.enabled=true

自定义健康检查类

import org.springframework.boot.actuate.health.Health;
import org.springframework.boot.actuate.health.HealthIndicator;
import org.springframework.stereotype.Component;
@Component
public class HealthCheck implements HealthIndicator {
@Override
public Health health() {
    int errorCode = check(); // perform some specific health check
    if (errorCode != 0) {
        return Health.down()
          .withDetail("Error Code", errorCode).build();
    }
    return Health.up().build();
}

public int check() {
    // Our logic to check health
    return 0;
}
}

当我在浏览器中点击 http://localhost:8082/actuator/health 时,我得到 {"status":"UP"}

我希望得到

{
status: "UP",
diskSpace: {
status: "UP",
total: 240721588224,
free: 42078715904,
threshold: 10485760
}
}
4

2 回答 2

1

在 application.yml 中添加以下内容

management:
  endpoints:
    web:
      exposure:
        include: '*'
  endpoint:
    health:
      enabled: true
      show-details: always
    info:
      enabled: true
    metrics:
      enabled: true
    threaddump:
      enabled: true
于 2019-10-28T11:39:24.477 回答
0

通过以下配置,我们可以启用所有组件的详细信息。

management:
    endpoint: 
        health:
          show-details: always 

要单独获取内存详细信息,您可以指定组件。

 curl -i localhost:8082/actuator/health/diskSpace
    {
  "status": "UP",
  "details": {
    "total": 131574468608,
    "free": 47974543360,
    "threshold": 10485760
  }
}
于 2020-11-03T09:26:06.403 回答