Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pm2-php-fpm

Package Overview
Dependencies
Maintainers
3
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pm2-php-fpm

Monitor PHP-FPM with Keymetrics

  • 0.0.3
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
3
Maintainers
3
Weekly downloads
 
Created
Source

pm2-php-fpm

PHP-FPM module for Keymetrics

pm2-php-fpm screenshot

Description

This module monitors following PHP-FPM metrics:

  • uptime;
  • number of connections since start;
  • average request:
    • duration;
    • CPU usage;
    • memory consumption.
  • active and idle proccesses count;
  • connection queue size;
  • child processes limit hits;
  • slow processes count.

Requirements

This module reqires PHP-FPM and PM2 to be installed. Also it may require you to edit PHP-FPM configs to enable status page. Make sure your user has privileges to access PHP-FPM socket.

Installation

pm2 install pm2-php-fpm

Configuration

Default settings:

  • fcgi_path is /var/run/php5-fpm.sock;
  • endpoint is /status;
  • interval is 1000 milliseconds.

To modify the config values you can use Keymetrics dashboard or the following commands:

pm2 set pm2-php-fpm:fcgi_path /var/run/custom-php-socket.sock
pm2 set pm2-php-fpm:endpoint /health
pm2 set pm2-php-fpm:interval 5000

You may use TCP port instead of UNIX socket:

pm2 set pm2-php-fpm:fcgi_host 127.0.0.1
pm2 set pm2-php-fpm:fcgi_port 9000

Troubleshooting

Cannot connect to PHP-FPM error

Check module configuration. Make sure that path or host and port are the ones you have in PHP-FPM config. Also this error may appear when your PHP-FPM instance is overloaded or stopped unexpectedly.

PHP-FPM status endpoint not found error

You’ve entered wrong endpoint. Or changed its name in PHP-FPM configuration recently and didn’t update module settings.

Access to PHP-FPM denied error

User running PM2 daemon has no rights to access PHP-FPM socket. You need to add your user to group owning socket. Find out its name in PHP-FPM pool config or use stat -c %G /path/to/php5-fpm.sock

Add your user (e.g. myuser) to target group (e.g. www-data): sudo usermod -a -G www-data myuser

Reconnect to your server and restart PM2 daemon: pm2 update

Other

Look through Issues. You may find someone with the same problem. If your problem is unique, feel free to create a new issue.

Uninstallation

pm2 uninstall pm2-php-fpm

License

MIT

FAQs

Package last updated on 21 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc