信息 (info
)
终端节点提供有关应用程序的一般信息。info
检索信息
要检索有关应用程序的信息,请向 发出请求,如以下基于 curl 的示例所示:GET
/actuator/info
$ curl 'http://localhost:8080/actuator/info' -i -X GET
生成的响应类似于以下内容:
HTTP/1.1 200 OK
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 231
{
"git" : {
"branch" : "main",
"commit" : {
"id" : "df027cf",
"time" : "2024-11-21T16:02:45Z"
}
},
"build" : {
"artifact" : "application",
"version" : "1.0.3",
"group" : "com.example"
}
}