Skip to content

Instantly share code, notes, and snippets.

@conorbranagan
Created October 16, 2012 21:52
Show Gist options
  • Save conorbranagan/3902280 to your computer and use it in GitHub Desktop.
Save conorbranagan/3902280 to your computer and use it in GitHub Desktop.
DogstatsD from Windows Batch
:: Gauge
echo myapp.my_gauge:123^^^|g | nc -w 1 -u 127.0.0.1 8125
:: Counter
echo myapp.my_counter:1^^^|c | nc -w 1 -u 127.0.0.1 8125
:: Histogram
echo myapp.my_histogram:1^^^|h | nc -w 1 -u 127.0.0.1 8125
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment