kphcdr / laravel-trace-id
laravel log append trace id
v1.1.0
2024-08-23 06:17 UTC
Requires
Requires (Dev)
- illuminate/log: ^8.83
- illuminate/support: ^6|^7|^8|^9
- phpunit/phpunit: ^8.4|^9.0
This package is auto-updated.
Last update: 2024-09-23 06:26:52 UTC
README
usage
config
logger.php
'stdout' => [
'driver' => 'monolog',
'handler' => StreamHandler::class,
'with' => [
'stream' => 'php://stdout',
],
'tap' => [\Trace\TraceInvoke::class], #new line
],
in http
append to webMiddleware group
WithTraceHttpMiddleware::class
in jobs
public function middleware()
{
return [WithTraceJobMiddleware::class];
}
tracking
put header X-Trace-Id:Any string
example
[2022-06-20 20:37:49] local.INFO: hello trace id [62b06a1d42fe8]