Method: Datadog::Statsd#distribution
- Defined in:
- lib/datadog/statsd.rb
#distribution(stat, value, opts = EMPTY_OPTIONS) ⇒ Object
Sends a value to be tracked as a distribution to the statsd server.
271 272 273 |
# File 'lib/datadog/statsd.rb', line 271 def distribution(stat, value, opts = EMPTY_OPTIONS) send_stats(stat, value, DISTRIBUTION_TYPE, opts) end |