性能指标统计
服务端性能指标
- 接口调用耗时指标统计
- 页面访问耗时指标统计
- 接口调用超时统计
- 慢Web事务统计
客户端性能指标
- 客户端页面异常统计(这个功能YAS已经具备)
-
http://git.yoho.cn/fe/yoho-node-lib/blob/feature/trace/lib/trace.js
在yoho-node-lib 中,添加了trace工具.
## useage const trace = global.yoho.trace; let timerTrace = trace.trace('api-call-log'); // custom measurement name timerTrace({api: 'xxxx', method: 'get'}, {costTime: 300});
默认通过udp的方式写入influxdb。
-
@jiangfeng 建议api 工具方法里加上接口耗时统计,写一个middleware ,统计页面请求耗时 都上报到influxdb
-
Reassigned to @jiangfeng
-
Please register or login to post a comment