PHP code example of tech-djoin / laravel-prometheus
1. Go to this page and download the library: Download tech-djoin/laravel-prometheus library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
tech-djoin / laravel-prometheus example snippets
// in `app/Http/Kernel.php`
protected $middleware = [
// ...
\TechDjoin\LaravelPrometheus\Middleware\MetricCollector::class
];
// in a routes file
Route::post('/dashboard', function () {
//
})->middleware(\TechDjoin\LaravelPrometheus\Middleware\MetricCollector::class);
bash
php artisan vendor:publish --provider="TechDjoin\LaravelPrometheus\PrometheusServiceProvider" --tag="config"