2010-10-12 05:53:40 +02:00
|
|
|
#!/usr/bin/perl -w
|
|
|
|
# -*- mode: cperl; mode: autopair -*-
|
|
|
|
# Magic markers:
|
|
|
|
#%# family=auto
|
|
|
|
#%# capabilities=autoconf
|
|
|
|
# php_fcgi --- Munin plugin for determining the memory usage and
|
|
|
|
# number of PHP FastCGI processes.
|
|
|
|
|
2012-01-20 12:47:10 +01:00
|
|
|
# Copyright (C) 2010 Antonio P. P. Almeida <appa@perusio.net>
|
2010-10-12 05:53:40 +02:00
|
|
|
|
2012-01-20 12:47:10 +01:00
|
|
|
# Author: Antonio P. P. Almeida <appa@perusio.net>
|
2010-10-12 05:53:40 +02:00
|
|
|
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
# copy of this software and associated documentation files (the "Software"),
|
|
|
|
# to deal in the Software without restriction, including without limitation
|
|
|
|
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
# and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
# Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
# Except as contained in this notice, the name(s) of the above copyright
|
|
|
|
# holders shall not be used in advertising or otherwise to promote the sale,
|
|
|
|
# use or other dealings in this Software without prior written authorization.
|
|
|
|
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
# DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
php_fcgi - Munin plugin to show the Memory anf number of processes used by PHP FastCGI.
|
|
|
|
|
|
|
|
=encoding utf8
|
|
|
|
|
|
|
|
=head1 APPLICABLE SYSTEMS
|
|
|
|
|
|
|
|
Any host running PHP FastCGI.
|
|
|
|
|
|
|
|
=head1 MAGIC MARKERS
|
|
|
|
|
|
|
|
#%# family=auto
|
|
|
|
#%# capabilities=autoconf
|
|
|
|
|
|
|
|
=head1 VERSION
|
|
|
|
|
|
|
|
1.0
|
|
|
|
|
2012-01-20 12:47:10 +01:00
|
|
|
=head1 CONFIGURATION
|
|
|
|
|
|
|
|
This shows the default configuration of this plugin. You can override
|
|
|
|
the process name of php-fcgi.
|
|
|
|
|
|
|
|
[php-fcgi]
|
|
|
|
env.pname php-cgi
|
|
|
|
|
2010-10-12 05:53:40 +02:00
|
|
|
=head1 BUGS
|
|
|
|
|
|
|
|
None known
|
|
|
|
|
|
|
|
=head1 AUTHOR
|
|
|
|
|
2012-01-20 12:47:10 +01:00
|
|
|
Antonio Almeida <appa@perusio.net>
|
2010-10-12 05:53:40 +02:00
|
|
|
|
|
|
|
=head1 REPOSITORY
|
|
|
|
|
|
|
|
Source code at http://github.com/perusio/munin-php-cgi
|
|
|
|
|
|
|
|
=head1 LICENSE
|
|
|
|
|
|
|
|
MIT
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
## Support for rounding functions.
|
|
|
|
use POSIX;
|
|
|
|
|
2012-01-20 12:47:10 +01:00
|
|
|
## Environment defined variables.
|
|
|
|
## The default process name if different set it in the environment.
|
|
|
|
|
|
|
|
my $PROCESS_NAME = exists $ENV{'pname'} ? $ENV{'pname'} : "php-cgi";
|
|
|
|
|
2010-10-12 05:53:40 +02:00
|
|
|
## Munin config method.
|
|
|
|
if (exists $ARGV[0] and $ARGV[0] eq "config") {
|
|
|
|
|
|
|
|
print "graph_title PHP CGI [MB]\n";
|
|
|
|
print "graph_vlabel PHP CGI Memory usage\n";
|
2017-02-21 18:24:41 +01:00
|
|
|
print "graph_category processes\n";
|
2010-10-12 05:53:40 +02:00
|
|
|
print "graph_args -l 0\n";
|
|
|
|
print "php_cgi_ram.label PHP CGI Used RAM\n";
|
|
|
|
print "php_cgi_ram.draw LINE2\n";
|
|
|
|
print "php_cgi_processes.info Number of PHP CGI processes\n";
|
|
|
|
print "php_cgi_processes.label processes\n";
|
|
|
|
|
|
|
|
exit 0;
|
|
|
|
} else {
|
2012-01-20 12:47:10 +01:00
|
|
|
my ($pp, $pm) = eval(`ps u -p \$(pidof $PROCESS_NAME) | awk 'NR > 1 {pm += \$5} END {print "("NR-1","pm/1024")"}'`);
|
2010-10-12 05:53:40 +02:00
|
|
|
printf("php_cgi_ram.value %d\n", ceil($pm));
|
|
|
|
print "php_cgi_processes.value $pp\n";
|
2014-09-07 14:20:12 +02:00
|
|
|
}
|