lushdigital / microservice-metrics
Prometheus style metrics for microservices building on the official library
Requires
- php: >=5.6.4
- jimdo/prometheus_client_php: ^0.9.1
- laravel/lumen-framework: ^5.3
Requires (Dev)
- phpunit/phpunit: ~5.0
This package is not auto-updated.
Last update: 2024-11-10 06:12:33 UTC
README
The Library provides Prometheus style metrics to scrape.
Dependencies
It requires a redis instance running with REDIS_HOST environment variable pointing to it.
Description
In the middleware RED metrics are being captured, however you are free to implement your own custom metrics just by registering the them with an instance of CollectorRegistry.(for simplicity it is set as a singleton in the IoC) At display time new metrics will be discovered from Redis, but be aware if you change the definition for a metric, it needs to be purged from Redis.
Package Contents
- Terminable Middleware
- Route + Controller
Installation
Install the package as normal:
$ composer require lushdigital/microservice-metrics
Register the service provider with Lumen in the bootstrap/app.php
file:
$app->register(LushDigital\MicroServiceMetrics\MetricsServiceProvider::class);