-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphp_opc_apcu_
executable file
·328 lines (297 loc) · 8.97 KB
/
php_opc_apcu_
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
#!/usr/bin/perl
#
# Magic markers:
#%# family=auto
#%# capabilities=autoconf
# adapted from php_apcu_
# interface with opc_apcu_info.php on target servers - returns OpCache and APCU statistics
# original cache value names retained if possible
# OpCache differences:
# -
# APCU differences:
# - all value names prefixed by 'user_'
# - new graphs:
use strict;
use Munin::Plugin;
need_multigraph();
my $ret = undef;
if (! eval "require LWP::UserAgent;")
{
$ret = "LWP::UserAgent not found";
}
my $URL = exists $ENV{'url'} ? $ENV{'url'} : "http://127.0.0.1:%d/opc_apcu_info.php?auto";
my @PORTS = exists $ENV{'ports'} ? split(' ', $ENV{'ports'}) : (80);
if ( defined $ARGV[0] and $ARGV[0] eq "autoconf" )
{
if ($ret)
{
print "no ($ret)\n";
exit 1;
}
my $ua = LWP::UserAgent->new(timeout => 30,
agent => sprintf("munin/%s (libwww-perl/%s)", $Munin::Common::Defaults::MUNIN_VERSION, $LWP::VERSION));
my @badports;
my $url; # define variable outside of 'foreach' so that $url can be used later
foreach my $port (@PORTS) {
$url = sprintf $URL, $port;
my $response = $ua->request(HTTP::Request->new('GET',$url));
push @badports, $port unless $response->is_success and $response->content =~ /^mode: /im;
}
if (@badports) {
print "no (opc_apcu-status) from $url\n";
exit 1;
} else {
print "yes\n";
exit 0;
}
}
if ( defined $ARGV[0] and $ARGV[0] eq "config" )
{
$0 =~ /php_opc_apcu([^_]+)?_(.+)*/;
my $custom_name = $1;
my $plugin = $2;
## PHP OpCache Usage
if($plugin eq 'usage') {
print("multigraph php_opc_apcu$custom_name\_usage
graph_title $custom_name OpCache Usage
graph_args --base 1024 -l 0
graph_vlabel Bytes
graph_category php-opcache
graph_order used free
graph_total Total
used.label Used Memory
used.draw AREASTACK
fragmented.label Fragmented Memory
fragmented.draw AREASTACK
free.label Available Memory
free.draw AREASTACK
");
}
## PHP OpCache Memory Size
if($plugin eq 'mem_size') {
print("multigraph php_opc_apcu$custom_name\_mem_size
graph_title $custom_name OpCache Used Memory
graph_args --base 1024 -l 0
graph_vlabel Bytes
graph_category php-opcache
graph_total Total
optcode_size.label Optcode Cache
optcode_size.draw AREASTACK
user_size.label User Cache
user_size.draw AREASTACK
free.label Available Memory
free.draw AREASTACK
");
}
## PHP OpCache User Memory Only
if($plugin eq 'user_mem_size') {
print("multigraph php_opc_apcu$custom_name\_user_mem_size
graph_title $custom_name APCU Used Memory
graph_args --base 1024 -l 0
graph_vlabel Bytes
graph_category php-opcache
graph_total Total
user_size.label User Cache
user_size.draw AREASTACK
free.label Available Memory
free.draw AREASTACK
");
}
## PHP OpCache Hit / Miss by percentage
elsif($plugin eq 'hit_miss') {
print("multigraph php_opc_apcu$custom_name\_hit_miss
graph_title $custom_name OpCache Hits / Misses
graph_args --base 1000 --lower-limit 0 --upper-limit 100 --rigid
graph_vlabel Percent
graph_category php-opcache
graph_total Total
hits.label Hits
hits.draw AREA
hits.min 0
misses.label Misses
misses.draw STACK
misses.min 0
misses.warning 50
");
}
## PHP OpCache Purge rate (# Entries / Inserts)
elsif($plugin eq 'purge') {
print("multigraph php_opc_apcu$custom_name\_purge
graph_title $custom_name OpCache/APCU Purge rate
graph_args --base 1000 --lower-limit 0 --upper-limit 100 --rigid
graph_vlabel Percent
graph_category php-opcache
purge_rate.label Optcode Cache
purge_rate.draw LINE2
purge_rate.min 0
purge_rate.warning 10
user_purge_rate.label User Cache
user_purge_rate.draw LINE2
user_purge_rate.min 0
user_purge_rate.warning 10
");
}
## PHP OpCache User Purge rate (# Entries / Inserts) Only
elsif($plugin eq 'user_purge') {
print("multigraph php_opc_apcu$custom_name\_user_purge
graph_title $custom_name APCU Purge rate
graph_args --base 1000 --lower-limit 0 --upper-limit 100 --rigid
graph_vlabel Percent
graph_category php-opcache
user_purge_rate.label User Cache
user_purge_rate.draw LINE2
user_purge_rate.min 0
user_purge_rate.warning 10
");
}
## PHP OpCache Fragmentation
elsif($plugin eq 'fragmentation') {
print("multigraph php_opc_apcu$custom_name\_fragmentation
graph_title $custom_name OpCache Fragmentation
graph_args --base 1000 --upper-limit 100
graph_vlabel Percent
graph_category php-opcache
fragment_percentage.label Fragmentation Percent
fragment_percentage.draw LINE2
fragment_percentage.min 0
fragment_percentage.warning 10
");
}
## PHP OpCache Number of files in cache
elsif($plugin eq 'files') {
print("multigraph php_opc_apcu$custom_name\_files
graph_title $custom_name OpCache files
graph_args -l 0
graph_vlabel Number of Files
graph_category php-opcache
entries.label Number of files
entries.draw LINE2
entries.min 0
");
}
## PHP OpCache Rates
elsif($plugin eq 'rates') {
print("multigraph php_opc_apcu$custom_name\_rates
graph_title $custom_name OpCache Hit, Miss and Insert Rates
graph_args --base 1000
graph_vlabel Cache Requests / Second
graph_category php-opcache
request_rate.label Request rate (Hits + Misses)
request_rate.draw LINE2
request_rate.min 0
hit_rate.label Hit rate
hit_rate.draw LINE2
hit_rate.min 0
miss_rate.label Miss rate
miss_rate.draw LINE2
miss_rate.min 0
insert_rate.label Insert rate
insert_rate.draw LINE2
insert_rate.min 0
");
}
## PHP OpCache User Cache Hit / Miss by percentage
elsif($plugin eq 'user_hit_miss') {
print("multigraph php_opc_apcu$custom_name\_user_hit_miss
graph_title $custom_name APCU Hits / Misses
graph_args --base 1000 --lower-limit 0 --upper-limit 100 --rigid
graph_vlabel Percent
graph_category php-opcache
graph_total Total
user_hits.label Hits
user_hits.draw AREA
user_hits.min 0
user_misses.label Misses
user_misses.draw STACK
user_misses.min 0
user_misses.warning 50
");
}
## PHP OpCache User Cache Number of entries in cache
elsif($plugin eq 'user_entries') {
print("multigraph php_opc_apcu$custom_name\_user_entries
graph_title $custom_name APCU Entries
graph_args -l 0
graph_vlabel Number of Entries
graph_category php-opcache
user_entries.label Number of entries
user_entries.draw LINE2
user_entries.min 0
");
}
## OpCache User Cache Rates
elsif($plugin eq 'user_rates') {
print("multigraph php_opc_apcu$custom_name\_user_rates
graph_title $custom_name APCU Hit, Miss and Insert Rates
graph_args --base 1000
graph_vlabel Cache Requests / Second
graph_category php-opcache
user_request_rate.label Request rate (Hits + Misses)
user_request_rate.draw LINE2
user_request_rate.min 0
user_hit_rate.label Hit rate
user_hit_rate.draw LINE2
user_hit_rate.min 0
user_miss_rate.label Miss rate
user_miss_rate.draw LINE2
user_miss_rate.min 0
user_insert_rate.label Insert rate
user_insert_rate.draw LINE2
user_insert_rate.min 0
");
}
exit 0;
}
foreach my $port (@PORTS)
{
my $ua = LWP::UserAgent->new(timeout => 30,
agent => sprintf("munin/%s (libwww-perl/%s)", $Munin::Common::Defaults::MUNIN_VERSION, $LWP::VERSION));
my $url = sprintf $URL, $port;
my $response = $ua->request(HTTP::Request->new('GET',$url));
my $resp = $response->content;
# Initializing and defining the array
my @keymap = ( ['used:', 'used.value'],
['free:', 'free.value'],
['hits:', 'hits.value'],
['misses:', 'misses.value'],
['request_rate:', 'request_rate.value'],
['hit_rate:', 'hit_rate.value'],
['miss_rate:', 'miss_rate.value'],
['insert_rate:', 'insert_rate.value'],
['entries:', 'entries.value'],
['inserts:', 'inserts.value'],
['purges:', 'purges.value'],
['purge_rate:', 'purge_rate.value'],
['fragmented:', 'fragmented.value'],
['fragment_segments:', 'fragment_segments.value'],
['fragment_percentage:', 'fragment_percentage.value'],
['optcode_size:', 'optcode_size.value'],
['user_used:', 'user_used.value'],
['user_free:', 'user_free.value'],
['user_fragmented:', 'user_fragmented.value'],
['user_fragment_segments:', 'user_fragment_segments.value'],
['user_fragment_percentage:', 'user_fragment_percentage.value'],
['user_size:', 'user_size.value'],
['user_hits:', 'user_hits.value'],
['user_misses:', 'user_misses.value'],
['user_request_rate:', 'user_request_rate.value'],
['user_hit_rate:', 'user_hit_rate.value'],
['user_miss_rate:', 'user_miss_rate.value'],
['user_insert_rate:', 'user_insert_rate.value'],
['user_entries:', 'user_entries.value'],
['user_inserts:', 'user_inserts.value'],
['user_purges:', 'user_purges.value'],
['user_purge_rate:', 'user_purge_rate.value']
);
my $rows = @keymap;
for (my $i = 0; $i < $rows; $i++) {
my $inkey = $keymap[$i][0];
my $outkey = $keymap[$i][1];
if ($resp =~ / \Q${inkey}\E\s+([0-9\.]+)/im) {
print "$outkey $1\n";
} else {
print "$outkey U\n";
}
}
}
# vim:syntax=perl