You are here

public function StatsD::decrement in StatsD 7.2

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

Decrements one or more stats counters.

Parameters

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

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

Return value

boolean

File

includes/statsd.inc, line 108

Class

StatsD
Sends statistics to the stats daemon over UDP.

Code

public function decrement($stats, $sample_rate = NULL) {
  $this
    ->updateStats($stats, -1, $sample_rate);
}