PHPackages                             noahjahn/craft-php-fpm-status-monitor - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. noahjahn/craft-php-fpm-status-monitor

ActiveCraft-plugin[Utility &amp; Helpers](/categories/utility)

noahjahn/craft-php-fpm-status-monitor
=====================================

Monitor PHP FPM status from within the Craft CMS control panel dashboard

0.0.1.1(4y ago)081MITPHPPHP ^8.0

Since Mar 10Pushed 4y ago1 watchersCompare

[ Source](https://github.com/noahjahn/craft-php-fpm-status-monitor)[ Packagist](https://packagist.org/packages/noahjahn/craft-php-fpm-status-monitor)[ RSS](/packages/noahjahn-craft-php-fpm-status-monitor/feed)WikiDiscussions main Synced today

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

Craft PHP FPM Status Monitor
============================

[](#craft-php-fpm-status-monitor)

Craft PHP FPM Status Monitor is a Craft CMS 3 plugin that allows you to monitor PHP FPM status from within the Craft CMS control panel dashboard.

This plugin is a work in progress.

Requirements
------------

[](#requirements)

- PHP 8.0 (*probably* works with 7.4 as well)
- PHP running with the [FastCGI Process Manager (PHP FPM)](https://www.php.net/manual/en/install.fpm.php)
    - Including PHP FPM `pm.status_path` configured
- Web server configured to allow requests to the configured PHP FPM status path
- This has only been tested on Craft 3.7.35, but *probably* works on all of 3.x.x
- Composer (I mean, this is a Craft dependency too :))

Installation
------------

[](#installation)

1. In terminal, from the root of your Craft project install the package with composer:

```
composer require noahjahn/craft-php-fpm-status-monitor

```

or, if you're like me and don't like having dependencies installed on your local machine and would rather install with Docker:

```
docker run --rm --user $UID:$UID -w /app -v "$(pwd):/app" composer require noahjahn/craft-php-fpm-status-monitor

```

2. In your browser, logged in to an admin user for your Craft site, open the Control Panel &gt; Settings &gt; Plugins and install the plugin

Configuration
-------------

[](#configuration)

1. Configure the `pm.status_path` in the PHP FPM configuration on your server

    Example PHP FPM configuration (on your server, or in your container, PHP FPM config probably lives `/usr/local/etc/php-fpm.d/`):

    ```
    pm.status_path = /fpm-status

    ```
2. Configure the web server to be able to send requests to the status path previously configured

    *It's recommended not to allow public access to this endpoint.*

    Here is some example nginx configuration under the `server` block (your `fastcgi_pass` value will probably be different):

    ```
    # Allow fpm ping and status from localhost and private IPs
    location ~ ^/(fpm-status)$ {
        access_log off;
        # Private IPs:
        allow 10.0.0.0/8;
        allow 172.16.0.0/12;
        allow 192.168.0.0/16;
        allow 127.0.0.1;
        deny all;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_pass php-fpm;
    }
    ```
3. In the control panel of your site, set the `path` to your chosen path value in the settings of the plugin

Use cases
---------

[](#use-cases)

- View php-fpm status information from the control panel dashboard

Ideas &amp; future
------------------

[](#ideas--future)

- Store metrics about past number of in use php-fpm workers
- Provide a better possible configuration given total amount of memory, PHP memory limit, and OPCache memory config

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity45

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 87.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

1575d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/36347998?v=4)[Noah Jahn](/maintainers/noahjahn)[@noahjahn](https://github.com/noahjahn)

---

Top Contributors

[![noahjahn](https://avatars.githubusercontent.com/u/36347998?v=4)](https://github.com/noahjahn "noahjahn (7 commits)")[![brandonkelly](https://avatars.githubusercontent.com/u/47792?v=4)](https://github.com/brandonkelly "brandonkelly (1 commits)")

---

Tags

phputilitydashboardcontrolstatusmonitorCraftfpmpanel

### Embed Badge

![Health badge](/badges/noahjahn-craft-php-fpm-status-monitor/health.svg)

```
[![Health](https://phpackages.com/badges/noahjahn-craft-php-fpm-status-monitor/health.svg)](https://phpackages.com/packages/noahjahn-craft-php-fpm-status-monitor)
```

###  Alternatives

[craftcms/feed-me

Import content from XML, RSS, CSV or JSON feeds into entries, categories, Craft Commerce products, and more.

293952.6k33](/packages/craftcms-feed-me)[verbb/formie

The most user-friendly forms plugin for Craft.

102393.6k69](/packages/verbb-formie)[verbb/comments

Add comments to your site.

13753.9k](/packages/verbb-comments)[verbb/vizy

A flexible visual editor field for Craft.

4250.4k](/packages/verbb-vizy)[verbb/hyper

A user-friendly links field for Craft.

24147.8k12](/packages/verbb-hyper)[verbb/social-poster

Automatically post entries to social media.

918.5k](/packages/verbb-social-poster)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
