Download the PHP package hans-thomas/laravel-prometheus-exporter without Composer

On this page you can find all versions of the php package hans-thomas/laravel-prometheus-exporter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-prometheus-exporter

LaravelPrometheusExporter

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

Supported laravel versions

Laravel 7.x

Main features

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.

This will create a file .

Configuration

Key Env Value Description Default
adapter PROMETHEUS_ADAPTER STRING apc, redis, inmemory or push apc
namespace --- STRING default: app app
namespace_http --- STRING namespace for "RequestPerRoute-Middleware metrics" http
redis.host PROMETHEUS_REDIS_HOST, REDIS_HOST STRING redis host 127.0.0.1
redis.port PROMETHEUS_REDIS_PORT, REDIS_PORT INTEGER redis port 6379
redis.password PROMETHEUS_REDIS_PASSWORD, REDIS_PASSWORD STRING redis password null
redis.timeout --- FLOAT redis timeout 0.1
redis.read_timeout --- INTEGER redis read timeout 10
push_gateway.address PROMETHEUS_PUSH_GATEWAY_ADDRESS STRING push gateway address localhost:9091
buckets_per_route --- STRING histogram buckets for "RequestPerRoute-Middleware" ---

buckets_per_route

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:

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

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

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).


All versions of laravel-prometheus-exporter with dependencies

PHP Build Version
Package Version
Requires php Version >=7.4
hans-thomas/prometheus_client_php Version ^1.0
illuminate/support Version ^7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package hans-thomas/laravel-prometheus-exporter contains the following files

Loading the files please wait ....