考虑下面的程序,它简单地启动几个 goroutine,然后等待它们完成并通过通道发出信号表示它们已完成。
package main
import (
"os"
"runtime/trace"
"time"
)
func doWork(c chan int) {
startTime := time.Now()
i := 0
for curTime := startTime; curTime.Sub(startTime) < 2; curTime = time.Now() {
i++
}
c <- i
}
func main() {
numGoRoutine := 10
traceOutFile, _ := os.OpenFile("/tmp/Trace.out", os.O_WRONLY|os.O_CREATE, os.ModeExclusive|os.ModePerm)
trace.Start(traceOutFile)
// Start goroutines
termChannel := make(chan int)
for i := 0; i < numGoRoutine; i++ {
go doWork(termChannel)
}
// Wait for completion
for i := 0; i < numGoRoutine; i++ {
<-termChannel
}
trace.Stop()
}
当这个程序终止时,输出是一个名为/tmp/Trace.out. 接下来,我尝试使用跟踪工具查看跟踪,如下所示。
go tool trace -http=localhost:8080 ./Main /tmp/Trace.out
这会产生一个带有链接的页面View Trace(连同一个只提供聚合数据的其他链接的视图),但点击该链接会导致一个空白页面。当我查看该页面的源代码时,我看到了以下源代码,这似乎暗示着 JSON 是预期的,而不是二进制的。
<html>
<head>
<link href="/trace_viewer_html" rel="import">
<script>
document.addEventListener("DOMContentLoaded", function(event) {
var viewer = new tr.TraceViewer('/jsontrace');
document.body.appendChild(viewer);
});
</script>
</head>
<body>
</body>
</html>
如何使用 Go 工具查看逐事件跟踪?
大话西游666
侃侃无极
相关分类