# 概述
go语言是一款优秀的语言。其自带的性能分析工具pprof能帮助开发者更好的分析代码性能
### 代码块
##### 演示 Go 代码高亮
```go
package main
import (
"fmt"
"net/http"
_ "net/http/pprof"
)
func main() {
go func() {
for {
fmt.Println("Test Go PProf")
}
}()
http.ListenAndServe("0.0.0.0:6060", nil)
}
```
### 说明
对于含有http的应用,只需引用包“_ "net/http/pprof"”即可。或者使用runtime/pprof包。
### 查看
在浏览器页面输入:http://localhost:6060/debug/pprof/
结果显示
/debug/pprof/
profiles:
0 block
5 goroutine
1 heap
0 mutex
5 threadcreate
full goroutine stack dump
可以查看到go routine创建和栈空间情况
有疑问加站长微信联系(非本文作者)