版本:7.0.0
描述
apdex是一个衡量服务器性能的标准。
apdex有三个指标:
- 满意:请求响应时间小于等于T。
- 可容忍:请求响应时间大于T,小于等于4T。
- 失望:请求响应时间大于4T。
T:自定义的一个时间值,比如:500ms。
apdex = (满意数 + 可容忍数/2)/ 总数。
例如:服务A定义T=200ms,在100个采样中,有20个请求小于200ms,有60个请求在200ms到800ms之间,有20个请求大于800ms。计算apdex = (20 + 60/2)/100 = 0.5。
配置
SkyWalking配置apdex在config/service-apdex-threshold.yml
文件中。默认设置500ms
。
此配置可以使用配置中心,动态配置。
# default threshold is 500ms
default: 500
# example:
# the threshold of service "tomcat" is 1s
# tomcat: 1000
# the threshold of service "springboot1" is 50ms
# springboot1: 50
验证
来源:oschina
链接:https://my.oschina.net/u/2344188/blog/4330692