Clone Hystrix:
git clone https://github.com/Netflix/Hystrix.git
Run the sample webapp:
cd Hystrix/hystrix-examples-webapp
../gradlew appRun
On another tab run dashboard:
cd ../hystrix-dashboard
../gradlew appRun
Provide stream to dashboard (http://localhost:8989/hystrix-examples-webapp/hystrix.stream)
On another tab, send requests to web app:
while true ; do curl http://localhost:8989/hystrix-examples-webapp/; done > /dev/null 2>&1