Skip to content

Instantly share code, notes, and snippets.

@bennybauer
Last active January 23, 2017 12:38
Show Gist options
  • Save bennybauer/0bd99da348f1c224b04a9d62cd9b3ca2 to your computer and use it in GitHub Desktop.
Save bennybauer/0bd99da348f1c224b04a9d62cd9b3ca2 to your computer and use it in GitHub Desktop.
Running Hystrix dashboard locally with sample project

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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment