在 的网络输出中go tool pprof
,虚线/点线是什么?
我发现有人提到它可以表示内联函数,但没有规范参考。
虚线表示节点通过另一个节点的连接,该节点未在最终输出中呈现。
见https://github.com/google/pprof/blob/master/internal/graph/dotgraph.go#L311
if e.residual {
attr = attr + ` style="dotted"`
}
和剩余代表
// 剩余边连接通过单独节点连接的节点,该节点已从报告中删除。
https://github.com/google/pprof/blob/master/internal/graph/graph.go#L243