232,919 Installs and Counting! Get Sparks Now!
Hey! Keep up to date with the project through its beta and public launch by following @getsparks.
Tweet
A Quick Looks At Sparks (EllisLab Official Post)
March 11, 2012
from: codeigniter.com
The Top Sparks of 2011
December 31, 2011
from: codefury.net
CodeIgniter Starter Project − A Starting Point for Any CI Dev
December 12, 2011
from: github.com
NetTuts+ Tutorial for GetSparks
November 24, 2011
from: net.tutsplus.com
A simple statsd client
| Contributor | : seejohnrun |
| : Log in to view | |
| Author Website | : http://blog.johncrepezzi.com |
| Spark Website | : https://github.com/seejohnrun/php-statsd |
| Repository Type | : git |
| Number of Installs | : 813 |
php tools/spark install -v0.0.2 statsd
Or download this version manually:
Get statsd-0.0.2.zip
This is an extremely simple PHP statsd client and CI spark.
$ php tools/spark install statsd$this->load->spark('statsd');require './libraries/statsd.php';To count things:
php
$stats = new StatsD();
$stats->counting('numpoints', 123);
Record timings:
php
$stats = new StatsD();
$stats->timing('timething', 123);
And a convenience mechanism for timing:
php
$stats = new StatsD();
$stats->time_this('timething', function() {
sleep(1);
});
php
$stats = new StatsD('localhost', 7000); // default localhost:8125
Any of the methods descriped in the usage section can take an optional third argument $rate, which is the sample rate:
php
$stats = new StatsD();
$stats->counting('numpoints', 123, 0.1);
php
$this->load->library('statsd');
$this->statsd->counting('numpoints', 123);
John Crepezzi - john.crepezzi@gmail.com
(The MIT License)
Copyright © 2012 John Crepezzi
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. MIT License. See attached LICENSE