查看CPU:
curl http://100.100.254.75:8080/debug/pprof/profile?seconds=20 -o pprof.out
go tool pprof -http :2234 ./pprof.out (需要安装Graphviz)
查看内存:
curl http://100.100.223.81:8080/debug/pprof/heap?seconds=10 -o heap.out
go tool pprof -http :2234 ./heap.out (需要安装Graphviz)
go tool pprof -inuse_space 100.96.92.176:8080/debug/pprof/heap (交互命令)
1 | [root@bd01 ~]# go tool pprof -inuse_space 100.100.223.70:8080/debug/pprof/heap |
查看协程:
curl http://100.100.223.81:8080/debug/pprof/goroutine -o goroutine.out
查看进程的线程数:
cat /proc/进程ID/status|grep Threads