symfonycontrib/alerter-bundle

Symfony2 management and execution of testing data points and alerting on conditions.

dev-master / 1.0.x-dev 2014-07-23 19:37 UTC

This package is not auto-updated.

Last update: 2024-04-23 00:24:13 UTC


README

This code is part of the SymfonyContrib community.

Symfony2 AlerterBundle

###Features:

  • Create alerts to fire when data points pass tests.
  • Uses CronBundle for scheduled monitoring.
  • Uses Monolog, or any PSR-3 logger, to send alerts.

Installation

1. Add the bundle to your composer.json

"require": {
    "symfonycontrib/alerter-bundle": "@stable"
}

2. Install the bundle using composer

$ composer update symfonycontrib/alerter-bundle

3. Add this bundle to your application's kernel:

    new SymfonyContrib\Bundle\CronBundle\CronBundle(),
    new SymfonyContrib\Bundle\AlerterBundle\AlerterBundle(),

4. Add routing for admin interface:

Usage Examples

@todo