forked from vivid-planet/munin-php-apc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
php_apc_
executable file
·433 lines (377 loc) · 10.8 KB
/
php_apc_
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
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
#!/usr/bin/perl
#
# Magic markers:
#%# family=auto
#%# capabilities=autoconf
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/apc_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);
my @badports;
foreach my $port (@PORTS) {
my $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 (apc-status)\n";
exit 1;
} else {
print "yes\n";
exit 0;
}
}
if ( defined $ARGV[0] and $ARGV[0] eq "config" )
{
$0 =~ /php_apc([^_]+)?_(.+)*/;
my $custom_name = $1;
my $plugin = $2;
## PHP APC Cache Usage
if($plugin eq 'usage') {
print("multigraph php_apc$custom_name\_usage
graph_title Cache Usage $custom_name
graph_args --base 1024 -l 0
graph_vlabel Bytes
graph_category php-apc
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 APC Cache Usage
if($plugin eq 'mem_size') {
print("multigraph php_apc$custom_name\_mem_size
graph_title Used Memory $custom_name
graph_args --base 1024 -l 0
graph_vlabel Bytes
graph_category php-apc
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 APC User Cache Usage Only
if($plugin eq 'user_mem_size') {
print("multigraph php_apc$custom_name\_user_mem_size
graph_title Used Memory $custom_name
graph_args --base 1024 -l 0
graph_vlabel Bytes
graph_category php-apc
graph_total Total
user_size.label User Cache
user_size.draw AREASTACK
free.label Available Memory
free.draw AREASTACK
");
}
## PHP APC Hit / Miss by percentage
elsif($plugin eq 'hit_miss') {
print("multigraph php_apc$custom_name\_hit_miss
graph_title Optcode Cache Hits / Misses $custom_name
graph_args --base 1000 --lower-limit 0 --upper-limit 100 --rigid
graph_vlabel Percent
graph_category php-apc
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 APC Purge rate (# Entries / Inserts)
elsif($plugin eq 'purge') {
print("multigraph php_apc$custom_name\_purge
graph_title Purge rate $custom_name
graph_args --base 1000 --lower-limit 0 --upper-limit 100 --rigid
graph_vlabel Percent
graph_category php-apc
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 APC User Purge rate (# Entries / Inserts) Only
elsif($plugin eq 'user_purge') {
print("multigraph php_apc$custom_name\_user_purge
graph_title Purge rate $custom_name
graph_args --base 1000 --lower-limit 0 --upper-limit 100 --rigid
graph_vlabel Percent
graph_category php-apc
user_purge_rate.label User Cache
user_purge_rate.draw LINE2
user_purge_rate.min 0
user_purge_rate.warning 10
");
}
## PHP APC Fragmentation
elsif($plugin eq 'fragmentation') {
print("multigraph php_apc$custom_name\_fragmentation
graph_title Fragmentation $custom_name
graph_args --base 1000 --upper-limit 100
graph_vlabel Percent
graph_category php-apc
fragment_percentage.label Fragmentation Percent
fragment_percentage.draw LINE2
fragment_percentage.min 0
fragment_percentage.warning 10
");
}
## PHP APC Number of files in cache
elsif($plugin eq 'files') {
print("multigraph php_apc$custom_name\_files
graph_title Files in Optcode Cache $custom_name
graph_args -l 0
graph_vlabel Number of Files
graph_category php-apc
entries.label Number of files
entries.draw LINE2
entries.min 0
");
}
## PHP APC Rates
elsif($plugin eq 'rates') {
print("multigraph php_apc$custom_name\_rates
graph_title Optcode Hit, Miss and Insert Rates $custom_name
graph_args --base 1000
graph_vlabel Cache Requests / Second
graph_category php-apc
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 APC User Cache Hit / Miss by percentage
elsif($plugin eq 'user_hit_miss') {
print("multigraph php_apc$custom_name\_user_hit_miss
graph_title User Cache Hits / Misses $custom_name
graph_args --base 1000 --lower-limit 0 --upper-limit 100 --rigid
graph_vlabel Percent
graph_category php-apc
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 APC User Cache Number of entries in cache
elsif($plugin eq 'user_entries') {
print("multigraph php_apc$custom_name\_user_entries
graph_title User Entries in Cache $custom_name
graph_args -l 0
graph_vlabel Number of Entries
graph_category php-apc
user_entries.label Number of entries
user_entries.draw LINE2
user_entries.min 0
");
}
## PHP APC User Cache Rates
elsif($plugin eq 'user_rates') {
print("multigraph php_apc$custom_name\_user_rates
graph_title User Cache Hit, Miss and Insert Rates $custom_name
graph_args --base 1000
graph_vlabel Cache Requests / Second
graph_category php-apc
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);
my $url = sprintf $URL, $port;
my $response = $ua->request(HTTP::Request->new('GET',$url));
my $apcu_mode = $response->content =~ /mode: apcu/;
if ($response->content =~ /used:\s+([0-9\.]+)/im) {
print "used.value $1\n";
} else {
print "used.value U\n";
}
if ($response->content =~ /free:\s+([0-9\.]+)/im) {
print "free.value $1\n";
} else {
print "free.value U\n";
}
if ($response->content =~ /hits:\s+([0-9\.]+)/im && not $apcu_mode) {
print "hits.value $1\n";
} else {
print "hits.value U\n";
}
if ($response->content =~ /misses:\s+([0-9\.]+)/im && not $apcu_mode) {
print "misses.value $1\n";
} else {
print "misses.value U\n";
}
if ($response->content =~ /request_rate:\s+([0-9\.]+)/im && not $apcu_mode) {
print "request_rate.value $1\n";
} else {
print "request_rate.value U\n";
}
if ($response->content =~ /hit_rate:\s+([0-9\.]+)/im && not $apcu_mode) {
print "hit_rate.value $1\n";
} else {
print "hit_rate.value U\n";
}
if ($response->content =~ /miss_rate:\s+([0-9\.]+)/im && not $apcu_mode) {
print "miss_rate.value $1\n";
} else {
print "miss_rate.value U\n";
}
if ($response->content =~ /insert_rate:\s+([0-9\.]+)/im && not $apcu_mode) {
print "insert_rate.value $1\n";
} else {
print "insert_rate.value U\n";
}
if ($response->content =~ /entries:\s+([0-9]+)/im && not $apcu_mode) {
print "entries.value $1\n";
} else {
print "entries.value U\n";
}
if ($response->content =~ /inserts:\s+([0-9]+)/im && not $apcu_mode) {
print "inserts.value $1\n";
} else {
print "inserts.value U\n";
}
if ($response->content =~ /purges:\s+([0-9]+)/im && not $apcu_mode) {
print "purges.value $1\n";
} else {
print "purges.value U\n";
}
if ($response->content =~ /purge_rate:\s+([0-9\.]+)/im && not $apcu_mode) {
print "purge_rate.value $1\n";
} else {
print "purge_rate.value U\n";
}
if ($response->content =~ /fragmented:\s+([0-9\.]+)/im) {
print "fragmented.value $1\n";
} else {
print "fragmented.value U\n";
}
if ($response->content =~ /fragment_segments:\s+([0-9]+)/im) {
print "fragment_segments.value $1\n";
} else {
print "fragment_segments.value U\n";
}
if ($response->content =~ /fragment_percentage:\s+([0-9\.]+)/im) {
print "fragment_percentage.value $1\n";
} else {
print "fragment_percentage.value U\n";
}
if ($response->content =~ /optcode_size:\s+([0-9\.]+)/im && not $apcu_mode) {
print "optcode_size.value $1\n";
} else {
print "optcode_size.value U\n";
}
if ($response->content =~ /user_size:\s+([0-9\.]+)/im) {
print "user_size.value $1\n";
} else {
print "user_size.value U\n";
}
if ($response->content =~ /user_hits:\s+([0-9\.]+)/im) {
print "user_hits.value $1\n";
} else {
print "user_hits.value U\n";
}
if ($response->content =~ /user_misses:\s+([0-9\.]+)/im) {
print "user_misses.value $1\n";
} else {
print "user_misses.value U\n";
}
if ($response->content =~ /user_request_rate:\s+([0-9\.]+)/im) {
print "user_request_rate.value $1\n";
} else {
print "user_request_rate.value U\n";
}
if ($response->content =~ /user_hit_rate:\s+([0-9\.]+)/im) {
print "user_hit_rate.value $1\n";
} else {
print "user_hit_rate.value U\n";
}
if ($response->content =~ /user_miss_rate:\s+([0-9\.]+)/im) {
print "user_miss_rate.value $1\n";
} else {
print "user_miss_rate.value U\n";
}
if ($response->content =~ /user_insert_rate:\s+([0-9\.]+)/im) {
print "user_insert_rate.value $1\n";
} else {
print "user_insert_rate.value U\n";
}
if ($response->content =~ /user_entries:\s+([0-9]+)/im) {
print "user_entries.value $1\n";
} else {
print "user_entries.value U\n";
}
if ($response->content =~ /user_inserts:\s+([0-9]+)/im) {
print "user_inserts.value $1\n";
} else {
print "user_inserts.value U\n";
}
if ($response->content =~ /user_purges:\s+([0-9]+)/im) {
print "user_purges.value $1\n";
} else {
print "user_purges.value U\n";
}
if ($response->content =~ /user_purge_rate:\s+([0-9\.]+)/im) {
print "user_purge_rate.value $1\n";
} else {
print "user_purge_rate.value U\n";
}
}
# vim:syntax=perl