Skip to content

Latest commit

 

History

History
42 lines (26 loc) · 2 KB

README.md

File metadata and controls

42 lines (26 loc) · 2 KB

This is a sample application demonstrating the use of a few different libraries and tools for resilience and chaos engineering.

The features are introduced gradually using the following branches:

Each branch contains a Spring Boot application with progressively more fleshed out app code and configuration to handle faults and simulate faults for testing.

If you have questions reach out to me here or connect on LinkedIn.

Tools and Libraries Used

The following tools and libraries are used. Installation and getting started with this tools is not covered in detail here, so please see the links below for more information on the respective projects:

API Credentials Needed

The app consists of 1 REST controller that returns a stock price. To retrieve stock prices two different free services are used.

To execute the samples you will need to register for a free account on both sites and pass the following environment variables to the app:

  • ALPHAVANTAGE_API_KEY
  • WORLDTRADINGDATA_API_KEY

Continue

Continue to 01_SimpleService