我在Spring Boot 2版本中使用了新的MicroMeter指标。2.0.0-RELEASE
通过/actuator/metrics/{metric.name}
端点发布指标时,我得到以下信息:
对于一个DistributionSummary
:
"name": "sources.ingestion.rate",
"measurements": [
{
"statistic": "COUNT",
"value": 5
},
{
"statistic": "TOTAL",
"value": 72169.44162067816
},
{
"statistic": "MAX",
"value": 17870.68010661754
}
],
"availableTags": []
}
对于一个Timer
:
{
"name": "sources.ingestion",
"measurements": [
{
"statistic": "COUNT",
"value": 5
},
{
"statistic": "TOTAL_TIME",
"value": 65.700878648
},
{
"statistic": "MAX",
"value": 22.661545322
}
],
"availableTags": []
}
是否可以丰富测量值以添加平均值、最小值或百分位数等测量值?
对于我尝试使用的百分位数.publishPercentiles(0.5, 0.95)
,但这并没有反映在执行器端点上。