alexandre-daubois / monolog-processor-collection
A collection of Monolog processors
Installs: 15 049
Dependents: 1
Suggesters: 0
Security: 0
Stars: 15
Watchers: 1
Forks: 1
Open Issues: 1
pkg:composer/alexandre-daubois/monolog-processor-collection
Requires
- php: >=8.1
- monolog/monolog: ^3
- symfony/uid: ^6.3|^7.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.37
- phpunit/phpunit: ^10
This package is auto-updated.
Last update: 2025-10-23 21:59:14 UTC
README
Welcome to the Monolog Processor Collection (MPC) - the ultimate suite of processors designed to enhance your logging with the renowned Monolog library. This toolkit is meticulously crafted to integrate seamlessly with PHP 8.1+, ensuring your logging captures the comprehensive details you need with minimal overhead.
MPC is engineered for developers who demand more from their logs. Whether you're tracking down elusive bugs or monitoring live production environments, processors enrich your log entries with invaluable context, turning ordinary logs into a rich, actionable dataset.
MPC is compatible with worker mode of web servers, as relevant processors implement the ResettableInterface.
Available Processors
The package provides the following processors:
BacktraceProcessoradds the backtrace to the log recordClientIpProcessoradds the client IP address to the log recordEnvVarProcessoradds the value of one or more environment variables to the log recordHighResolutionTimestampProcessoradds the high resolution time to the log recordIsHttpsProcessoradds a boolean value indicating whether the request is a secured HTTP request to the log recordPhpIniValueProcessoradds the value of one or more PHP ini settings to the log recordProtocolVersionProcessoradds the HTTP protocol version to the log recordRequestSizeProcessoradds the size of the request to the log record, headers included, in bytesResourceUsagesProcessoradds the resource usage to the log record as returned by getrusage()SapiNameProcessoradds the name of the SAPI to the log recordSessionIdProcessoradds the session ID to the log record, or null if no session is activeUuidProcessoradds a UUID v7 to the log record to track records triggered during the same request
Installation
The recommended way to install MPC is through Composer:
composer require alexandre-daubois/monolog-processor-collection
Usage
All processor can be used in the same way as any other Monolog processor. For example:
use Monolog\Logger; $logger = new Logger('name'); $logger->pushProcessor(new BacktraceProcessor());
Some processors, like EnvVarProcessor and PhpIniValueProcessor, require you to specify more
arguments. For example:
use Monolog\Logger; $logger = new Logger('name'); $logger->pushProcessor(new EnvVarProcessor(['APP_ENV', 'APP_DEBUG']));
Integration with Symfony and MonologBundle
You can register those processors to be used with Symfony and MonologBundle by adding the following configuration to
your config/packages/monolog.php file:
use Monolog\Processor\ProcessorInterface; use MonologProcessorCollection\BacktraceProcessor; use MonologProcessorCollection\EnvVarProcessor; use MonologProcessorCollection\ProtocolVersionProcessor; use MonologProcessorCollection\EnvVarProcessor; use MonologProcessorCollection\SapiNameProcessor; return static function (ContainerConfigurator $configurator): void { // ... // register as many processors as you like, but keep in mind that // each processor is called for each log record $services = $configurator->services(); $services ->set(BacktraceProcessor::class) ->set(EnvVarProcessor::class)->args(['APP_ENV']) ->set(ProtocolVersionProcessor::class) ->set(SapiNameProcessor::class); // ... };
If you don't use autoconfigure, you need to tag the processors with monolog.processor:
return static function (ContainerConfigurator $configurator): void { // ... $services = $configurator->services(); $services ->set(BacktraceProcessorAlias::class) ->tag('monolog.processor', ['handler' => 'main']) ->set(EnvVarProcessor::class)->args(['APP_ENV']) ->tag('monolog.processor', ['handler' => 'main']); // ... };
You can achieve the same configuration with YAML:
# config/packages/monolog.yaml services: MonologProcessorCollection\BacktraceProcessor: tags: - { name: monolog.processor, handler: main } MonologProcessorCollection\EnvVarProcessor: arguments: - APP_ENV tags: - { name: monolog.processor, handler: main }
Or XML:
<!-- config/packages/monolog.xml --> <!-- ... --> <service id="MonologProcessorCollection\BacktraceProcessor" public="false"> <tag name="monolog.processor" handler="main" /> </service> <service id="MonologProcessorCollection\EnvVarProcessor" public="false"> <argument>APP_ENV</argument> <tag name="monolog.processor" handler="main" /> </service>