Last active
August 29, 2015 14:20
-
-
Save jverdeyen/032e9b20027bfa58f4ae to your computer and use it in GitHub Desktop.
Fill StatsD with random pageload data
This file contains hidden or 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
while true; do echo "pages.load.home:$RANDOM|ms" | nc -w 1 -u 127.0.0.1 8125; done | |
while true; do echo "pages.request.home:1|c" | nc -w 1 -u 127.0.0.1 8125; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment