BAEL-15988 : application.properties changes
This commit is contained in:
parent
2cc05b370b
commit
93770e684a
|
@ -0,0 +1,29 @@
|
||||||
|
#chaos monkey for spring boot props
|
||||||
|
management.endpoint.chaosmonkey.enabled=true
|
||||||
|
management.endpoint.chaosmonkeyjmx.enabled=true
|
||||||
|
|
||||||
|
spring.profiles.active=chaos-monkey
|
||||||
|
#Determine whether should execute or not
|
||||||
|
chaos.monkey.enabled=true
|
||||||
|
#How many requests are to be attacked. 1: attack each request; 5: each 5th request is attacked
|
||||||
|
chaos.monkey.assaults.level=1
|
||||||
|
#Minimum latency in ms added to the request
|
||||||
|
chaos.monkey.assaults.latencyRangeStart=3000
|
||||||
|
#Maximum latency in ms added to the request
|
||||||
|
chaos.monkey.assaults.latencyRangeEnd=15000
|
||||||
|
#Latency assault active
|
||||||
|
chaos.monkey.assaults.latencyActive=true
|
||||||
|
#Exception assault active
|
||||||
|
chaos.monkey.assaults.exceptionsActive=false
|
||||||
|
#AppKiller assault active
|
||||||
|
chaos.monkey.assaults.killApplicationActive=false
|
||||||
|
#Controller watcher active
|
||||||
|
chaos.monkey.watcher.controller=false
|
||||||
|
#RestController watcher active
|
||||||
|
chaos.monkey.watcher.restController=false
|
||||||
|
#Service watcher active
|
||||||
|
chaos.monkey.watcher.service=true
|
||||||
|
#Repository watcher active
|
||||||
|
chaos.monkey.watcher.repository=false
|
||||||
|
#Component watcher active
|
||||||
|
chaos.monkey.watcher.component=false
|
|
@ -41,34 +41,4 @@ servlet.mapping=/dispatcherExampleURL
|
||||||
#spring.banner.image.margin= //TODO
|
#spring.banner.image.margin= //TODO
|
||||||
#spring.banner.image.invert= //TODO
|
#spring.banner.image.invert= //TODO
|
||||||
|
|
||||||
contactInfoType=email
|
contactInfoType=email
|
||||||
|
|
||||||
#chaos monkey for spring boot props
|
|
||||||
management.endpoint.chaosmonkey.enabled=true
|
|
||||||
management.endpoint.chaosmonkeyjmx.enabled=true
|
|
||||||
|
|
||||||
spring.profiles.active=chaos-monkey
|
|
||||||
#Determine whether should execute or not
|
|
||||||
chaos.monkey.enabled=true
|
|
||||||
#How many requests are to be attacked. 1: attack each request; 5: each 5th request is attacked
|
|
||||||
chaos.monkey.assaults.level=1
|
|
||||||
#Minimum latency in ms added to the request
|
|
||||||
chaos.monkey.assaults.latencyRangeStart=3000
|
|
||||||
#Maximum latency in ms added to the request
|
|
||||||
chaos.monkey.assaults.latencyRangeEnd=15000
|
|
||||||
#Latency assault active
|
|
||||||
chaos.monkey.assaults.latencyActive=true
|
|
||||||
#Exception assault active
|
|
||||||
chaos.monkey.assaults.exceptionsActive=false
|
|
||||||
#AppKiller assault active
|
|
||||||
chaos.monkey.assaults.killApplicationActive=false
|
|
||||||
#Controller watcher active
|
|
||||||
chaos.monkey.watcher.controller=false
|
|
||||||
#RestController watcher active
|
|
||||||
chaos.monkey.watcher.restController=false
|
|
||||||
#Service watcher active
|
|
||||||
chaos.monkey.watcher.service=true
|
|
||||||
#Repository watcher active
|
|
||||||
chaos.monkey.watcher.repository=false
|
|
||||||
#Component watcher active
|
|
||||||
chaos.monkey.watcher.component=false
|
|
Loading…
Reference in New Issue