proemergotech / correlate-php-core
Core interface package for correlate id generation for microservices writen in PHP.
Installs: 7 074
Dependents: 4
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- webpatser/laravel-uuid: ^2.0
Requires (Dev)
- fzaninotto/faker: ~1.4
- mockery/mockery: ~0.9
- phpunit/phpunit: ^5.0
- squizlabs/php_codesniffer: ^2.8
This package is not auto-updated.
Last update: 2024-11-10 02:10:31 UTC
README
Overview
It's very difficult to track a request accross the system when we are working with microservices. We came out a solution for that. We generate a unique version 4 uuid for every request and every service passes this id via request header to other services. We call this correlation ID.
Packages
- proemergotech/correlate-php-laravel
- Middleware for Laravel and Lumen frameworks.
- proemergotech/correlate-php-psr-7
- Middleware for any PSR-7 compatible frameworks like Slim Framework.
- proemergotech/correlate-php-monolog
- Monolog processor for correlate middlewares (you don't have to use this directly).
- proemergotech/correlate-php-guzzle
- Guzzle middleware to add correlation id to every requests.
- proemergotech/correlate-php-core
- Common package for correlate id middlewares to provide consistent header naming accross projects.
Installation
You should not use this directly.
By the way if you want to use it directly, you can install it via composer.
$ composer require proemergotech/correlate-php-core
Defaults
Default header name is X-Correlation-ID
and default parameter name is x_correlation_id
.
Usage
Generate a correlation id:
\ProEmergotech\Correlate\Correlate\Correlate::id();
Other methods:
\ProEmergotech\Correlate\Correlate::getHeaderName(); \ProEmergotech\Correlate\Correlate::getParamName(); \ProEmergotech\Correlate\Correlate::getGeneratorFunc(); // You can override defaults... \ProEmergotech\Correlate\Correlate::setHeaderName('X-My-Correlation-ID'); \ProEmergotech\Correlate\Correlate::setParamName('my_correlation_id'); \ProEmergotech\Correlate\Correlate::setGeneratorFunc(function(){ return uniqid(); });
Contributing
See CONTRIBUTING.md
file.
Credits
This package developed by Soma Szélpál at Pro Emergotech Ltd..
License
This project is released under the MIT License.