No release in over 3 years
Low commit activity in last 3 years
There's a lot of open issues
Sensu plugins for php-fpm
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 0.10
~> 10.0
~> 3.2
~> 3.1
~> 0.40.0
~> 0.8

Runtime

 Project Readme

Sensu-Plugins-php-fpm

Build Status Gem Version Code Climate Test Coverage Dependency Status

Functionality

Files

  • bin/check-php-fpm.rb
  • bin/metrics-php-fpm.rb

Usage

Make sure you adjust the fastcgi_pass socket to whatever you are using:

location ~ "/fpm-(status|ping)" {
  include       /etc/nginx/fastcgi_params;
  fastcgi_pass  unix:/var/run/php5-fpm.sock;
  fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  access_log off;
  allow 127.0.0.1;
  deny all;
}

Alternatively, but keep in mind that "ifs are evil":

set $pool "php5-fpm";
if ($arg_pool) {
  set $pool $arg_pool;
}
location ~ "/fpm-(status|ping)" {
  include       /etc/nginx/fastcgi_params;
  fastcgi_pass  unix:/var/run/$pool.sock;
  fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  access_log off;
  allow 127.0.0.1;
  deny all;
}

Installation

Installation and Setup

Notes