2017 © Pedro Peláez
 

library php-actuator-slim-provider

Slim Provider for php-actuator

image

postalservice14/php-actuator-slim-provider

Slim Provider for php-actuator

  • Friday, February 19, 2016
  • by postalservice14
  • Repository
  • 1 Watchers
  • 0 Stars
  • 5 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

php-actuator-slim-provider

Latest Version on Packagist ![Software License][ico-license] Build Status ![Coverage Status][ico-scrutinizer] Quality Score ![Total Downloads][ico-downloads], (*1)

Slim Provider for php-actuator, (*2)

Install

Via Composer, (*3)

``` bash $ composer require postalservice14/php-actuator-slim-provider, (*4)


## Registering ```php $container = $app->getContainer(); $container['health.aggregator'] = new OrderedHealthAggregator(); $container['health.indicators'] = array( 'disk' => new DiskSpaceHealthIndicator() ); $container['health'] = function ($container) { return new HealthServiceProvider( $container['health.aggregator'], $container['health.indicators'] ); };

Usage

Setup the route you would like your health check on. e.g.:, (*5)

$app->get('/health', function ($req, $res) {
    return $this->health->getHealth($res);
});

Then visit your endpoint. In this case: /health, (*6)

Getting Started

The following is a minimal example to get you started quickly. It uses the DiskSpaceHealthIndicator., (*7)

  • Create a composer.json with at minimum, the following dependencies
{
    "require": {
        "postalservice14/php-actuator-slim-provider": "^1.0"
    }
}
  • Run composer install
  • Create /public/index.php
<?php

require_once __DIR__.'/../vendor/autoload.php';

use Slim\App;
use Actuator\Health\OrderedHealthAggregator;
use Actuator\Health\Indicator\DiskSpaceHealthIndicator;
use Actuator\Slim\Provider\HealthServiceProvider;

$indicators = array(
    'disk' => new DiskSpaceHealthIndicator()
);

$app = new App();

$container = $app->getContainer();
$container['health.aggregator'] = new OrderedHealthAggregator();
$container['health.indicators'] = $indicators;
$container['health'] = function ($container) {
    return new HealthServiceProvider(
        $container['health.aggregator'],
        $container['health.indicators']
    );
};

$app->get('/health', function ($req, $res) {
    return $this->health->getHealth($res);
});
$app->run();
  • Run the service php -S localhost:8000 -t public public/index.php
  • Go to http://localhost:8000/health to see your health indicator.

Example

Available at /example, (*8)

Change log

Please see CHANGELOG for more information what has changed recently., (*9)

Testing

bash $ composer test, (*10)

Contributing

Please see CONTRIBUTING and CONDUCT for details., (*11)

Credits

License

The MIT License (MIT). Please see License File for more information., (*12)

The Versions

19/02 2016

dev-master

9999999-dev https://github.com/postalservice14/php-actuator-slim-provider

Slim Provider for php-actuator

  Sources   Download

MIT

The Requires

 

The Development Requires

slim provider health actuator php-actuator

19/02 2016

1.0.0

1.0.0.0 https://github.com/postalservice14/php-actuator-slim-provider

Slim Provider for php-actuator

  Sources   Download

MIT

The Requires

 

The Development Requires

slim provider health actuator php-actuator