Created
June 20, 2017 14:54
-
-
Save mager/f243f197307dd45409e1ed8217f6f577 to your computer and use it in GitHub Desktop.
ExStatsTracker usage
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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