hans-thomas/laravel-prometheus-exporter

A laravel service provider to export metrics for prometheus.

v2.3.1 2021-01-16 15:49 UTC

README

A laravel and lumen service provider to export metrics for prometheus.

Supported laravel versions

Laravel 7.x

Main features

  • Metrics with APC
  • Metrics with Redis
  • Metrics with InMemory
  • Metrics with the push gateway
  • Request per route middleware (total and duration metrics)

Installation

Composer

composer require hans-thomas/laravel-prometheus-exporter

Application

Once installed you can now publish your config file and set your correct configuration for using the package.

php artisan vendor:publish --provider="Hasn\PrometheusExporter\Provider\PrometheusExporterServiceProvider" --tag="config"

This will create a file config/prometheus-exporter.php.

Configuration

buckets_per_route

'buckets_per_route' => [
    ROUTE-NAME => [10,20,50,100,200],
    ...
]

Usage

Get metrics

Laravel

When you are using laravel you can use the default http endpoint:

hans/pe/metrics

Of course you can also register your own route. Here is an example:

Route::get(
    ROUTE,
    [ \Hans\PrometheusExporter\Controller\LaravelController::class, 'metrics']
);

Middleware

RequestPerRoute

A middleware to build metrics for "request_total" and "requests_latency_milliseconds" per route.

Alias

lpe.requestPerRoute

Metrics
  1. requests_total (inc)
  2. requests_latency_milliseconds (histogram)
Example
$router->get('/test/route', function () {
    return 'valid';
})->middleware('lpe.requestPerRoute');

app_requests_latency_milliseconds_bucket{route="/test/route",method="GET",status_code="200",le="0.005"} 0 ... app_requests_latency_milliseconds_count{route="/test/route",method="GET",status_code="200"} 1 app_requests_latency_milliseconds_sum{route="/test/route",method="GET",status_code="200"} 6 app_requests_total{route="/test/route",method="GET",status_code="200"} 1

Roadmap

  • histogram buckets per route (RequestPerRoute)

Reporting Issues

If you do find an issue, please feel free to report it with GitHub's bug tracker for this project.

Alternatively, fork the project and make a pull request. :)

Testing

  1. docker-compose up
  2. docker exec fpm ./vendor/phpunit/phpunit/phpunit

Contributing

Please see CONTRIBUTING for details.

Other

License

The code for LaravelPrometheusExporter is distributed under the terms of the MIT license (see LICENSE).