카오스 엔지니어링 툴 프로덕션 환경, 특히 msa에서 불확실성을 파악하고 해결 방안을 모색하는데 사용하는 툴이다. 가령 Controller의 특정 api를 호출 했을때 일부러 응답을 지연시켜서 써킷이 의도한대로 동작을 하는지 테스트할 수 있다. spring.profiles.active=chaos-monkey management.endpoint.chaosmonkey.enabled=true management.endpoints.web.exposure.include=health,info,chaosmonkey chaos.monkey.watcher.repository=true chaos-monkey dependency 를 추가한후에 profile 을 chaos-monkey를 적용시켜줘야한다. spring boot..