You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 23, 2022. It is now read-only.
#290 提供cpu profiling功能时,遇到svg图中显示function address,而没有function name的bug。
目前解决方案为,推荐使用google/pprof,而不使用gperftool提供的pprof(perl脚本)。
根本原因是pprof perl脚本在FetchSymbols时使用了curl命令。
由于FetchSymbols的request带有较大数据,curl在不指定http版本情况下,就在请求中加入了"Expect : 100-continue"。(如果--http1.0限制版本,就不会走这一流程。实测http1.1/2都会走expect 100-continue)
而rdsn的http parser并不支持这一机制。
未来优化rdsn http server时可以考虑支持下。
The text was updated successfully, but these errors were encountered: