Back to index
Summary
Prints (emits) a statistics value to StatsD.nameStringrequiredThe name of the statistic to emit. typeStringrequiredThe type of statistic to emit. Possible values:  "counter", "gauge", "timer"valueLongrequiredThe value of the statistic to emit.  | 
Usage
Perl
$cmdr->logStatistic( "test-name", # name "test-type", # type "test-value" # value );
ectool
ectool logStatistic \ "test-name" `# name` \ "test-type" `# type` \ "test-value" `# value`