此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Boot 3.3.4! |
此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Boot 3.3.4! |
终端节点提供有关应用程序运行状况的详细信息。health
检索应用程序的运行状况
要检索应用程序的运行状况,请向 发出请求,如以下基于 curl 的示例所示:GET
/actuator/health
$ curl 'http://localhost:8080/actuator/health' -i -X GET \
-H 'Accept: application/json'
生成的响应类似于以下内容:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 821
{
"status" : "UP",
"components" : {
"broker" : {
"status" : "UP",
"components" : {
"us1" : {
"status" : "UP",
"details" : {
"version" : "1.0.2"
}
},
"us2" : {
"status" : "UP",
"details" : {
"version" : "1.0.4"
}
}
}
},
"db" : {
"status" : "UP",
"details" : {
"database" : "H2",
"validationQuery" : "isValid()"
}
},
"diskSpace" : {
"status" : "UP",
"details" : {
"total" : 77851254784,
"free" : 36707975168,
"threshold" : 10485760,
"path" : "/home/runner/work/spring-boot/spring-boot/spring-boot-project/spring-boot-actuator-autoconfigure/.",
"exists" : true
}
}
}
}
响应结构
响应包含应用程序运行状况的详细信息。 下表描述了响应的结构:
路径 | 类型 | 描述 |
---|---|---|
|
|
应用程序的总体状态。 |
|
|
构成运行状况的组件。 |
|
|
应用程序特定部分的状态。 |
|
|
构成运行状况的嵌套组件。 |
|
|
应用程序特定部分的运行状况的详细信息。存在由 控制。 |
上面的响应字段适用于 V3 API。
如果需要返回 V2 JSON,则应使用 accept 标头或application/vnd.spring-boot.actuator.v2+json
|
路径 | 类型 | 描述 |
---|---|---|
|
|
应用程序的总体状态。 |
|
|
构成运行状况的组件。 |
|
|
应用程序特定部分的状态。 |
|
|
构成运行状况的嵌套组件。 |
|
|
应用程序特定部分的运行状况的详细信息。存在由 控制。 |
上面的响应字段适用于 V3 API。
如果需要返回 V2 JSON,则应使用 accept 标头或application/vnd.spring-boot.actuator.v2+json
|
检索组件的运行状况
要检索应用程序运行状况的特定组件的运行状况,请向 发出请求,如以下基于 curl 的示例所示:GET
/actuator/health/{component}
$ curl 'http://localhost:8080/actuator/health/db' -i -X GET \
-H 'Accept: application/json'
生成的响应类似于以下内容:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 101
{
"status" : "UP",
"details" : {
"database" : "H2",
"validationQuery" : "isValid()"
}
}
路径 | 类型 | 描述 |
---|---|---|
|
|
应用程序特定部分的状态 |
|
|
应用程序特定部分的运行状况的详细信息。 |
检索嵌套组件的运行状况
如果特定组件包含其他嵌套组件(如上例中的指示符),则可以通过向 发出请求来检索此类嵌套组件的运行状况,如以下基于 curl 的示例所示:broker
GET
/actuator/health/{component}/{subcomponent}
$ curl 'http://localhost:8080/actuator/health/broker/us1' -i -X GET \
-H 'Accept: application/json'
生成的响应类似于以下内容:
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 66
{
"status" : "UP",
"details" : {
"version" : "1.0.2"
}
}
应用程序运行状况的组件可以嵌套任意深,具体取决于应用程序的运行状况指示器以及它们的分组方式。
运行状况终端节点支持 URL 中任意数量的标识符,以允许检索任何深度的组件的运行状况。/{component}
路径 | 类型 | 描述 |
---|---|---|
|
|
应用程序特定部分的状态 |
|
|
应用程序特定部分的运行状况的详细信息。 |