-
Notifications
You must be signed in to change notification settings - Fork 354
/
ngx-req-distr
executable file
·200 lines (159 loc) · 4.01 KB
/
ngx-req-distr
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#!/usr/bin/env perl
# Copyright (C) Yichun Zhang (agentzh)
use 5.006001;
use strict;
use warnings;
use Getopt::Std qw( getopts );
my %opts;
getopts("a:dhm:c", \%opts)
or die usage();
if ($opts{h}) {
print usage();
exit;
}
my $master_pid = $opts{m}
or die "No nginx master process pid specified by the -m option\n";
if ($master_pid !~ /^\d+$/) {
die "Bad -m option value \"$master_pid\": not look like a pid\n";
}
my $stap_args = $opts{a} || '';
my $analyze_conn = $opts{c};
if ($^O ne 'linux') {
die "Only linux is supported but I am on $^O.\n";
}
my $exec_file = "/proc/$master_pid/exe";
if (!-f $exec_file) {
die "Nginx process $master_pid is not running or ",
"you do not have enough permissions.\n";
}
my $nginx_path = readlink $exec_file;
my $ver = `stap --version 2>&1`;
if (!defined $ver) {
die "Systemtap not installed or its \"stap\" utility is not visible to the PATH environment: $!\n";
}
if ($ver =~ /version\s+(\d+\.\d+)/i) {
my $v = $1;
if ($v < 2.1) {
die "ERROR: at least systemtap 2.1 is required but found $v\n";
}
} else {
die "ERROR: unknown version of systemtap:\n$ver\n";
}
my $child_pids = get_child_processes($master_pid);
if (!@$child_pids) {
push @$child_pids, $master_pid;
}
my $condition = gen_pid_test_condition($child_pids);
#warn "Nginx worker processes: @$child_pids\n";
my $stap_src;
my $preamble = <<_EOC_;
probe begin {
printf("Tracing @$child_pids ($nginx_path)...\\nHit Ctrl-C to end.\\n")
}
_EOC_
if ($analyze_conn) {
my $output_code = '';
for my $pid (@$child_pids) {
$output_code .= <<_EOC_;
printf("worker $pid:\\t%d reqs,\\t%d conns\\n", \@count(reqs[$pid]), \@count(conns[$pid]))
_EOC_
}
$stap_src = <<_EOC_;
$preamble
global reqs
global conns
probe process("$nginx_path").function("ngx_http_create_request")!,
process("$nginx_path").function("ngx_http_init_request")
{
my_pid = pid()
if ($condition) {
reqs[my_pid] <<< 1
}
}
probe process("$nginx_path").function("ngx_http_init_connection")
{
my_pid = pid()
if ($condition) {
conns[my_pid] <<< 1
}
}
probe end {
printf("\\n")
$output_code}
_EOC_
} else {
my $output_code = '';
for my $pid (@$child_pids) {
$output_code .= <<_EOC_;
printf("worker $pid:\\t%d reqs\\n", \@count(reqs[$pid]))
_EOC_
}
$stap_src = <<_EOC_;
$preamble
global reqs
probe process("$nginx_path").function("ngx_http_create_request")!,
process("$nginx_path").function("ngx_http_init_request")
{
my_pid = pid()
if ($condition) {
reqs[my_pid] <<< 1
}
}
probe end {
printf("\\n")
$output_code}
_EOC_
}
if ($opts{d}) {
print $stap_src;
exit;
}
open my $in, "|stap --skip-badvars $stap_args -"
or die "Cannot run stap: $!\n";
print $in $stap_src;
close $in;
sub usage {
return <<'_EOC_';
Usage:
ngx-req-distr [optoins]
Options:
-a <args> Pass extra arguments to the stap utility.
-c analyze connections at the same time.
-d Dump out the systemtap script source.
-h Print this usage.
-m <pid> Specify the nginx master process pid.
Examples:
ngx-req-distr -m 12345
ngx-req-distr -m 12345 -a '-DMAXACTION=100000'
_EOC_
}
sub get_child_processes {
my $pid = shift;
my @files = glob "/proc/[0-9]*/stat";
my @children;
for my $file (@files) {
#print "file: $file\n";
if ($file =~ m{^/proc/$pid/}) {
next;
}
open my $in, $file or next;
my $line = <$in>;
close $in;
if ($line =~ /^(\d+) \S+ \S+ (\d+)/) {
my ($child, $parent) = ($1, $2);
if ($parent eq $pid) {
push @children, $child;
}
}
}
@children = sort { $a <=> $b } @children;
return \@children;
}
sub gen_pid_test_condition {
my $pids = shift;
my @c;
for my $pid (@$pids) {
push @c, "my_pid == $pid";
}
return '(' . join(" || ", @c) . ')';
}