此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Boot 3.3.4! |
此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Boot 3.3.4! |
终端节点提供对应用程序指标的访问。metrics
检索度量名称
要检索可用量度的名称,请向 发出请求,如以下基于 curl 的示例所示:GET
/actuator/metrics
$ curl 'http://localhost:8080/actuator/metrics' -i -X GET
生成的响应类似于以下内容:
HTTP/1.1 200 OK
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 154
{
"names" : [ "jvm.buffer.count", "jvm.buffer.memory.used", "jvm.buffer.total.capacity", "jvm.memory.committed", "jvm.memory.max", "jvm.memory.used" ]
}
路径 | 类型 | 描述 |
---|---|---|
|
|
已知指标的名称。 |
检索指标
要检索指标,请向 发出请求,如以下基于 curl 的示例所示:GET
/actuator/metrics/{metric.name}
$ curl 'http://localhost:8080/actuator/metrics/jvm.memory.max' -i -X GET
前面的示例检索有关名为 .
生成的响应类似于以下内容:jvm.memory.max
HTTP/1.1 200 OK
Content-Disposition: inline;filename=f.txt
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 555
{
"name" : "jvm.memory.max",
"description" : "The maximum amount of memory in bytes that can be used for memory management",
"baseUnit" : "bytes",
"measurements" : [ {
"statistic" : "VALUE",
"value" : 2.399141885E9
} ],
"availableTags" : [ {
"tag" : "area",
"values" : [ "heap", "nonheap" ]
}, {
"tag" : "id",
"values" : [ "CodeHeap 'profiled nmethods'", "G1 Old Gen", "CodeHeap 'non-profiled nmethods'", "G1 Survivor Space", "Compressed Class Space", "Metaspace", "G1 Eden Space", "CodeHeap 'non-nmethods'" ]
} ]
}
响应结构
响应包含指标的详细信息。 下表描述了响应的结构:
路径 | 类型 | 描述 |
---|---|---|
|
|
指标名称 |
|
|
指标描述 |
|
|
度量的基本单位 |
|
|
度量的度量 |
|
|
测量的统计信息。(, , , , , , , ). |
|
|
测量值的值。 |
|
|
可用于向下钻取的标记。 |
|
|
标签的名称。 |
|
|
标签的可能值。 |
参数 | 描述 |
---|---|
|
用于表单中向下钻取的标记 。 |
路径 | 类型 | 描述 |
---|---|---|
|
|
指标名称 |
|
|
指标描述 |
|
|
度量的基本单位 |
|
|
度量的度量 |
|
|
测量的统计信息。(, , , , , , , ). |
|
|
测量值的值。 |
|
|
可用于向下钻取的标记。 |
|
|
标签的名称。 |
|
|
标签的可能值。 |
向下钻取
要向下钻取到指标,请使用 query 参数发出请求,如以下基于 curl 的示例所示:GET
/actuator/metrics/{metric.name}
tag
$ curl 'http://localhost:8080/actuator/metrics/jvm.memory.max?tag=area%3Anonheap&tag=id%3ACompressed+Class+Space' -i -X GET
前面的示例检索量度,其中 tag 的值为 ,attribute 的值为 。
生成的响应类似于以下内容:jvm.memory.max
area
nonheap
id
Compressed Class Space
HTTP/1.1 200 OK
Content-Disposition: inline;filename=f.txt
Content-Type: application/vnd.spring-boot.actuator.v3+json
Content-Length: 263
{
"name" : "jvm.memory.max",
"description" : "The maximum amount of memory in bytes that can be used for memory management",
"baseUnit" : "bytes",
"measurements" : [ {
"statistic" : "VALUE",
"value" : 1.073741824E9
} ],
"availableTags" : [ ]
}