Skip to content

anishp55/php-statsd

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PHP StatsD Client

This is an extremely simple PHP statsd client and CI spark.

Installation

  1. With Sparks - $ php tools/spark install statsd
  2. Without Sparks - Clone repository at github.com/seejohnrun/php-statsd

Setup

  1. With Sparks - $this->load->spark('statsd');
  2. Without Sparks - require './libraries/statsd.php';

Usage

Counting

To count things:

$stats = new StatsD();
$stats->counting('numpoints', 123);

Timing

Record timings:

$stats = new StatsD();
$stats->timing('timething', 123);

Time Block

And a convenience mechanism for timing:

$stats = new StatsD();
$stats->time_this('timething', function() {
    sleep(1);
});

Configuration

Host and Port

$stats = new StatsD('localhost', 7000); // default localhost:8125

Sample Rate

Any of the methods descriped in the usage section can take an optional third argument $rate, which is the sample rate:

$stats = new StatsD();
$stats->counting('numpoints', 123, 0.1);

As a CodeIgniter library

$this->load->library('statsd');
$this->statsd->counting('numpoints', 123);

Author

John Crepezzi - john.crepezzi@gmail.com

License

(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

About

simple statsd library and CI spark

Resources

Stars

Watchers

Forks

Packages

No packages published