initial commit

This commit is contained in:
Matthew Goslett 2017-07-27 11:11:02 +02:00
commit bf1a4e1879
17 changed files with 822 additions and 0 deletions

5
src/routes.php Normal file
View file

@ -0,0 +1,5 @@
<?php
Route::get(config('prometheus.metrics_route_path'), 'MetricsController@getMetrics')
->middleware(config('prometheus.metrics_route_middleware'))
->name('metrics');