imsamurai/cakephp-monitoring-plugin

Use it if you want to wrap model methods with cache

2.0.14 2015-04-06 08:54 UTC

README

Check out Monitoring API Documentation

Abstract

Build Status Coverage Status Latest Stable Version Total Downloads Latest Unstable Version License

Coordinator for any checker scripts. With this plugin you can unify periodic checkers for some of your services/data/etc, get mail in case of failure, store checker logs in DB.

Installation

cd my_cake_app/app
git clone git://github.com/imsamurai/cakephp-monitoring-plugin.git Plugin/Monitoring

or if you use git add as submodule:

cd my_cake_app
git submodule add "git://github.com/imsamurai/cakephp-monitoring-plugin.git" "app/Plugin/Monitoring"

then add plugin loading in Config/bootstrap.php

CakePlugin::load('Monitoring', array('bootstrap' => true));

add tables from Config/Schema/monitoring.sql

include https://github.com/symfony/Process, https://github.com/mtdowling/cron-expression in your project, for ex with composer (tested with 2.3 version)

Configuration

Write global config if you need to change plugin config (see plugin bootstrap.php)

Usage

Use Monitoring model for manage checkers in DB. Each checker name in DB must be a model that extends MonitoringChecker and implements check method. Coordinator will run this method and store result in DB log. In case of error your checker may return false. Put Console/cake Monitoring.monitoring run in the cron, for ex each 1-5 minutes (depends on your needs)

For auto add available checkers to db (inactive) run Console/cake Monitoring.monitoring update

Wiki

Also check out wiki.