You are here

public static function StatsD::increment in StatsD 7

Same name and namespace in other branches
  1. 6 includes/statsd.inc \StatsD::increment()
  2. 7.2 includes/statsd.inc \StatsD::increment()

Increments one or more stats counters.

Parameters

mixed $stats: A string or an array of string representing the metric(s) to increment.

float $sample_rate: A float between 0 and 1 representing the sampling rate.

File

includes/statsd.inc, line 80

Class

StatsD
Sends statistics to the stats daemon over UDP

Code

public static function increment($stats, $sample_rate = NULL) {
  self::updateStats($stats, 1, $sample_rate);
}