bexiocom / prometheus_php
A PHP instrumentation library for Prometheus compatible with PHP 5.5 5.6, 7.0 and 7.1.
Installs: 45 705
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 2
Forks: 2
Open Issues: 1
Requires
- guzzlehttp/streams: ^3.0
Requires (Dev)
- ext-redis: *
- codeclimate/php-test-reporter: ^0.4.4
- phpmd/phpmd: ^2.6
- phpunit/phpunit: ^4.0
- sebastian/phpcpd: ^2.0
- squizlabs/php_codesniffer: ^3.0
This package is not auto-updated.
Last update: 2024-11-30 01:14:18 UTC
README
This library aims to be a lightweight utility for instrumenting a PHP application using Prometheus. It is heavily inspired by the golang client.
- The library is supposed to be compatible with the PHP version 5.5, 5.6, 7.0 and 7.1.
- This library tries to do not take any assumptions about the environment it is used in. You should be able to use it without any magic or with what ever tool belt you are using. Be it a lightweight dependency injection, Sympfony or something else.
Features
- Counter, Gauge and Histogram metric types.
- Redis and in memory storage.
- Rendering to text format.
Missing features
- Summary metric types.
- Ability to submit metric samples to a PushGateway.
- Storage utilising filesystem, Memcached and APC.
- Rendering to Protocol buffer format
- Registry class to ease usage when using the library without andy dependency injection tool.
Getting Started
Add this library to your project.
composer require bexiocom/prometheus_php:dev-master
Usage
Simple counter with no labels attached:
<?php use Bexio\PrometheusPHP\Metric\Counter; use Bexio\PrometheusPHP\Storage\InMemory; $storage = new InMemory(); $counter = Counter::createFromValues('simple_counter', 'Just a simple counting'); $counter->inc(); $storage->persist($counter);
More enhanced counter with labels:
<?php use Bexio\PrometheusPHP\Metric\CounterCollection; use Bexio\PrometheusPHP\Storage\InMemory; $storage = new InMemory(); $collection = CounterCollection::createFromValues('labeled_counter', 'Counting with labels', ['type']); $blueCounter = $collection->withLabels(['type' => 'blue']); $blueCounter->inc(); $redCounter = $collection->withLabels(['type' => 'red']); $redCounter->add(42); $storage->persist($collection);
Expose the metrics:
<?php use Bexio\PrometheusPHP\Metric\Counter; use Bexio\PrometheusPHP\Metric\CounterCollection; use Bexio\PrometheusPHP\Output\TextRenderer; use Bexio\PrometheusPHP\Storage\InMemory; use GuzzleHttp\Stream\BufferStream; $buffer = new BufferStream(); $renderer = TextRenderer::createFromStream($buffer); $storage = new InMemory([ 'simple_counter' => [ InMemory::DEFAULT_VALUE_INDEX => 1 ], 'labeled_counter' => [ '{"type":"blue"}' => 1, '{"type":"red"}' => 42, ], ]); $counter = Counter::createFromValues('simple_counter', 'Just a simple counting'); $renderer->render($counter, $storage->collectSamples($counter)); $collection = CounterCollection::createFromValues('labeled_counter', 'Counting with labels', ['type']); $renderer->render($collection, $storage->collectSamples($collection)); header(sprintf('Content-Type: %s', TextRenderer::MIME_TYPE)); echo $buffer->getContents();
Use Redis as storage backend:
NOTE: When using the Redis storage, it is highly suggested to add
ext-redis
as requirement to your project.
<?php use Bexio\PrometheusPHP\Storage\Redis; $redis = new \Redis(); $redis->connect('localhost'); // Optional: tune your redis connection. $redis->setOption(\Redis::OPT_READ_TIMEOUT, 10); $storage = new Redis($redis, 'PROMETHEUS:');
Use Redis but open connection lacily:
<?php use Bexio\PrometheusPHP\Storage\Redis; $redis = new \Redis(); $storage = new Redis(new \Redis(), 'PROMETHEUS:', function(\Redis $redis) { if (!$redis->connect('localhost')) { throw new \Exception('Failed to connect to Redis server'); } $redis->setOption(\Redis::OPT_READ_TIMEOUT, 10); });
How to contribute
First off, thank you for considering contributing to this PHP Prometheus client library. It's people like you that make it useful for more than a handful of people.
Pull requests are happily accepted, given they follow the following simple rules:
- New feature must be covered with tests
- All tests must pass
composer check
- Do not mix things up. Only one feature/fix per pull request.