Method: Datadog::Statsd#histogram
- Defined in:
- lib/datadog/statsd.rb
#histogram(stat, value, opts = {}) ⇒ Object
Sends a value to be tracked as a histogram to the statsd server.
173 174 175 |
# File 'lib/datadog/statsd.rb', line 173 def histogram(stat, value, opts={}) send_stats stat, value, :h, opts end |