Golang pprof詳解

來源:互聯網
上載者:User

go的pprof包

go中有pprof包來做代碼的效能監控,在兩個地方有包:

net/http/pprof

runtime/pprof

其實net/http/pprof中只是使用runtime/pprof包來進行封裝了一下,並在http連接埠上暴露出來.

 

本篇只講如何在web上查看效能。

一、代碼部分

1.import 增加net/http/pprof包   

import(    _ net/http/pprof)

 

2. 開啟http 監聽連接埠

go func() {        log.Println(http.ListenAndServe("localhost:10000", nil)) }()

 

二、網頁上查看

*瀏覽器可以開啟 http://127.0.0.1:10000/debug/pprof/ 可以查看各種profile索引

 

1.如果安裝過graphviz直接提交過這步驟,否則可以到 http://www.graphviz.org/download/下載,並把bin加入到環境變數

2.查看profile :在命令列輸入 

go tool pprof http://localhost:10000/debug/pprof/profile

此後的30秒進入收集profile資訊的狀態。

30秒後進入pprof的互動模式,然後輸入

web

然後瀏覽器自動彈開到網頁展示svg圖

 

3.查看已經儲存的profile檔案

go tool pprof profile C:\Users\user\pprof\pprof.samples.cpu.004.pb.gz

 

然後也是進入pprof的互動模式,然後輸入web

 

還可以查看heap和goroutine

go tool pprof http://localhost:10000/debug/pprof/heapgo tool pprof http://127.0.0.1:10000/debug/pprof/goroutine 

  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.