Skip to content

Instantly share code, notes, and snippets.

@mager
Created June 20, 2017 14:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mager/f243f197307dd45409e1ed8217f6f577 to your computer and use it in GitHub Desktop.
Save mager/f243f197307dd45409e1ed8217f6f577 to your computer and use it in GitHub Desktop.
ExStatsTracker usage
iex> ExStatsTracker.counter(your_key, 1)
iex> ExStatsTracker.increment(your_key)
iex> ExStatsTracker.gauge(your_key)
iex> ExStatsTracker.timing(your_metric, 1)
iex> ExStatsTracker.histogram(your_metric, 1)
iex> ExStatsTracker.meter(your_metric, 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment