go排查问题的方法和手段总结

2023-02-08  本文已影响0人  潘雪雯

dlv

dlv类似c语言中的gdb,但是会比gdb更好用一些
如果调试core文件 ./dlv core ./bin(二进制产出) core.1234
args: 当前变量
p:就是print

race

如果go程序出现core,且出现类似错误: panic: runtime error: invalid memory address or nil pointer dereference
可以使用race查看gorountine之间是否存在数据竞争关系
如果是大型项目: 可以在编译二进制的时候加上race:go build -race bin(二进制产出)
然后在执行bin文件的时候,会发现

image.png

pprof的使用

go tool pprof ./bin http://localhost:port/debug/pprof/heap

image.png
image.png

failed to execute dot. Is Graphviz installed? Error: exec: "dot": executable file not found in $PATH
sudo yum install graphviz

exec: "sensible-browser": executable file not found in $PATH
sudo yum install -y sensible-utils

参考

https://go.dev/blog/race-detector

上一篇下一篇

猜你喜欢

热点阅读