Download the PHP package oras/monolog-middleware without Composer
On this page you can find all versions of the php package oras/monolog-middleware. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package monolog-middleware
Monolog Logger Middleware
Monolog Middleware to be used with PSR-7 middleware frameworks like Zend Expressive and Slim.
*Now it does support Zend Expressive `3.`**
To use with Zend Expressive 1.*
please install version 1.1.4
To use with Zend Expressive 2.*
please install version 2.0.0
loggables
setting inspired by Guzzle Log Format. You can set any data in request/response/headers that you want to log from config file
rather than in code to give more flexibility in logging more/less data based on your needs.
Installation
1) Install middleware using composer
2) Add configuration
Then in your Zend Expressive config/autoload/
directory, created a new config file call it: logger.local.php
As a starting point, you can have the following in the file:
Please refer to Loggables list at end for all possible variables.
3) Add factory and middleware to dependencies.global.php
file as follows:
4) Now to start recording logs of request/response for a middleware, just put the following line after routing.
Example:
Now every time you call the route /
, you'll get logs for request and response.
By default, MonologMiddleware will record logs in debug mode. If you want to handle different levels, just change level
in config.
Requirements
- PHP >= 7.1
Configuration examples
Full example of each implemented handler in Monolog Middleware. Please note that these might not be ALL handlers supported by Monolog, they are just the implemented in this middleware.
All lines are required unless stated.
Stream
Loggly
Slack
Pushover
Native Email handler
Browser Console handler
Redis handler
FirePHP handler
NewRelic handler
Loggables list
To log request/response body you can use {req_body}
and {res_body}
respectively in format
setting.
Full list of logs variables with description:
Variable | Substitution |
---|---|
{request} | Full HTTP request message |
{response} | Full HTTP response message |
{ts} | Timestamp |
{host} | Host of the request |
{method} | Method of the request |
{url} | URL of the request |
{host} | Host of the request |
{protocol} | Request protocol |
{version} | Protocol version |
{resource} | Resource of the request (path + query + fragment) |
{port} | Port of the request |
{hostname} | Hostname of the machine that sent the request |
{code} | Status code of the response (if available) |
{phrase} | Reason phrase of the response (if available) |
{curl_error} | Curl error message (if available) |
{curl_code} | Curl error code (if available) |
{curl_stderr} | Curl standard error (if available) |
{connect_time} | Time in seconds it took to establish the connection (if available) |
{total_time} | Total transaction time in seconds for last transfer (if available) |
{reqheader*} | Replace * with the lowercased name of a request header to add to the message |
{resheader*} | Replace * with the lowercased name of a response header to add to the message |
{req_body} | Request body |
{res_body} | Response body |
Extending Middleware
To extend the middleware to log your own format, or specific data like cookies, server params .. etc. You can do that easily using the following steps:
-
Create a factory class. I have named it
MyMonologMiddlewareFactory
which will call aMyMonologMiddleware
class which will be your customised middleware to log. -
Create Middleware class
- Add your factory and middleware to global dependency file. Assuming you have your middleware and factory in the same directory, the config will be:
That's it ... you're ready to use your own customised logger.
Monolog Middleware was written during my commute time. Written with passion on SouthWest Trains. Please mind the gap!
All versions of monolog-middleware with dependencies
monolog/monolog Version ^1.19
psr/http-message Version ~1.0.0
symfony/http-foundation Version ^3.0
guzzlehttp/psr7 Version ^1.3 || ^1.4
psr/http-server-middleware Version ^1.0
psr/container Version ^1.0
zendframework/zend-stratigility Version ^3.0
roave/security-advisories Version dev-master