brpc服务调试性能方法
1、brpc服务自带界面,可以通过浏览器直接访问ip:port/vars
2、也可以通过curl工具直接获取数据,例如:
$ curl brpc.baidu.com:8765/vars/*qps* bthread_creation_qps : 95 rpc_server_8765_example_echo_service_echo_qps : 57
3、分析请求耗时方法:
使用rpcz工具:https://github.com/apache/incubator-brpc/blob/master/docs/cn/rpcz.md
该功能默认关闭,可以通过curl ip:port/rpcz/enable开启,
获取数据方法:
$ curl ip:port/rpcz
2021/12/06-07:50:14.783292 . 256 S trace=1aa986255b7e0002 span=1aa986255b7e0002 log_id=0 brpc.rpcz.default_method(105)=419 [OK]
$ curl ip:port/rpcz?trace=1aa986255b7e0002
2021/12/06-07:48:17.228299 Received request(82) from 127.0.0.1:41112 http log_id=0 trace=1aa986255b7e0001 span=1aa986255b7e0001
07:48:17.228353 . 54 Processing the request in a new bthread
07:48:17.228517 . 164 Enter brpc.rpcz.default_method
07:48:17.228548 . 31 Leave brpc.rpcz.default_method
07:48:17.228603 . 55 Responded(91)
# 当前时间 与上一阶段耗时 方法
request(82)接收到请求大小
Responded(91) 返回数据大小
联系方式:emhhbmdfbGlhbmcxOTkxQDEyNi5jb20=