Method: Statsd#increment
- Defined in:
- lib/statsd.rb
#increment(stat, sample_rate = 1) ⇒ Object
Sends an increment (count = 1) for the given stat to the statsd server.
351 352 353 |
# File 'lib/statsd.rb', line 351 def increment(stat, sample_rate=1) count stat, 1, sample_rate end |