Download the PHP package tuleap/prometheus-client without Composer
On this page you can find all versions of the php package tuleap/prometheus-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download tuleap/prometheus-client
More information about tuleap/prometheus-client
Files in tuleap/prometheus-client
Package prometheus-client
Short Description Prometheus instrumentation library
License Apache-2.0
Informations about the package prometheus-client
A prometheus client library written in PHP
This library uses Redis or APCu to do the client side aggregation. If using Redis, we recommend to run a local Redis instance next to your PHP workers.
How does it work?
Usually PHP worker processes don't share any state. You can pick from three adapters. Redis, APC or an in memory adapter. While the first needs a separate binary running, the second just needs the APC extension to be installed. If you don't need persistent metrics between requests (e.g. a long running cron job or script) the in memory adapter might be suitable to use.
Installation
Install via Composer:
Usage
A simple counter:
Write some enhanced metrics:
Manually register and retrieve metrics (these steps are combined in the getOrRegister...
methods):
Expose the metrics:
Using the Redis storage:
Using the APCu storage:
Also look at the examples.
Development
Dependencies
- PHP 7.3+
- PHP Redis extension
- PHP APCu extension
- Composer
- Redis
Start a Redis instance:
Tests
Run the tests:
Run the tests with mutation testing:
Run the static analysis:
Check conformance with the coding standards:
Black box testing
Just start the nginx, fpm & Redis setup with docker-compose:
Pick the adapter you want to test.
Acknowledgment
This library is based on the work done on Jimdo/prometheus_client_php.
All versions of prometheus-client with dependencies
ext-json Version *
psr/http-client Version ^1.0
psr/http-factory Version ^1.0
psr/http-message Version ^1.0 || ^2.0