1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
#!/usr/bin/perl -w
#
# stackcollapse-go.pl collapse golang samples into single lines.
#
# Parses golang smaples generated by "go tool pprof" and outputs stacks as
# single lines, with methods separated by semicolons, and then a space and an
# occurrence count. For use with flamegraph.pl.
#
# USAGE: ./stackcollapse-go.pl infile > outfile
#
# Example Input:
# ...
# Samples:
# samples/count cpu/nanoseconds
# 1 10000000: 1 2
# 2 10000000: 3 2
# 1 10000000: 4 2
# ...
# Locations
# 1: 0x58b265 scanblock :0 s=0
# 2: 0x599530 GC :0 s=0
# 3: 0x58a999 flushptrbuf :0 s=0
# 4: 0x58d6a8 runtime.MSpan_Sweep :0 s=0
# ...
# Mappings
# ...
#
# Example Output:
#
# GC;flushptrbuf 2
# GC;runtime.MSpan_Sweep 1
# GC;scanblock 1
#
# Input may contain many stacks as generated from go tool pprof:
#
# go tool pprof -seconds=60 -raw -output=a.pprof http://$ADDR/debug/pprof/profile
#
# For format of text profile, See golang/src/internal/pprof/profile/profile.go
#
# Copyright 2017 Sijie Yang (yangsijie@baidu.com). All rights reserved.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# (http://www.gnu.org/copyleft/gpl.html)
#
# 16-Jan-2017 Sijie Yang Created this.
use strict;
use Getopt::Long;
# tunables
my $help = 0;
sub usage {
die <<USAGE_END;
USAGE: $0 infile > outfile\n
USAGE_END
}
GetOptions(
'help' => \$help,
) or usage();
$help && usage();
# internals
my $state = "ignore";
my %stacks;
my %frames;
my %collapsed;
sub remember_stack {
my ($stack, $count) = @_;
$stacks{$stack} += $count;
}
#
# Output stack string in required format. For example, for the following samples,
# format_statck() would return GC;runtime.MSpan_Sweep for stack "4 2"
#
# Locations
# 1: 0x58b265 scanblock :0 s=0
# 2: 0x599530 GC :0 s=0
# 3: 0x58a999 flushptrbuf :0 s=0
# 4: 0x58d6a8 runtime.MSpan_Sweep :0 s=0
#
sub format_statck {
my ($stack) = @_;
my @loc_list = split(/ /, $stack);
for (my $i=0; $i<=$#loc_list; $i++) {
my $loc_name = $frames{$loc_list[$i]};
$loc_list[$i] = $loc_name if ($loc_name);
}
return join(";", reverse(@loc_list));
}
foreach (<>) {
next if m/^#/;
chomp;
if ($state eq "ignore") {
if (/Samples:/) {
$state = "sample";
next;
}
} elsif ($state eq "sample") {
if (/^\s*([0-9]+)\s*[0-9]+: ([0-9 ]+)/) {
my $samples = $1;
my $stack = $2;
remember_stack($stack, $samples);
} elsif (/Locations/) {
$state = "location";
next;
}
} elsif ($state eq "location") {
if (/^\s*([0-9]*): 0x[0-9a-f]+ (M=[0-9]+ )?([^ ]+) .*/) {
my $loc_id = $1;
my $loc_name = $3;
$frames{$loc_id} = $loc_name;
} elsif (/Mappings/) {
$state = "mapping";
last;
}
}
}
foreach my $k (keys %stacks) {
my $stack = format_statck($k);
my $count = $stacks{$k};
$collapsed{$stack} += $count;
}
foreach my $k (sort { $a cmp $b } keys %collapsed) {
print "$k $collapsed{$k}\n";
}
|