Skip to content

Commit

Permalink
Merge pull request #86 from steadybit/develop
Browse files Browse the repository at this point in the history
release
  • Loading branch information
joshiste authored Dec 13, 2024
2 parents 9c378bd + 60d55a1 commit f1fcc5d
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 10 deletions.
8 changes: 6 additions & 2 deletions bestseller-fashion/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ server:
spring:
application:
name: fashion-bestseller
datasource:
platform: hsqldb
jmx:
enabled: true
sql:
init:
platform: hsqldb

management:
metrics:
Expand All @@ -17,6 +18,9 @@ management:
autotime:
percentiles: 0.95
endpoints:
jmx:
exposure:
include: beans,mappings
web:
exposure:
include: metrics,prometheus,health
Expand Down
8 changes: 6 additions & 2 deletions bestseller-toys/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ server:
spring:
application:
name: toys-bestseller
datasource:
platform: hsqldb
jmx:
enabled: true
sql:
init:
platform: hsqldb

management:
metrics:
Expand All @@ -17,6 +18,9 @@ management:
autotime:
percentiles: 0.95
endpoints:
jmx:
exposure:
include: beans,mappings
web:
exposure:
include: metrics,prometheus,health
Expand Down
8 changes: 6 additions & 2 deletions checkout/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ server:
spring:
application:
name: checkout
datasource:
platform: hsqldb
jmx:
enabled: true
activemq:
broker-url: "tcp://localhost:61616"
jpa:
properties:
"hibernate.jdbc.log.warnings": "false"
sql:
init:
platform: hsqldb

management:
metrics:
Expand All @@ -22,6 +23,9 @@ management:
autotime:
percentiles: 0.95
endpoints:
jmx:
exposure:
include: beans,mappings
web:
exposure:
include: metrics,prometheus,health
Expand Down
4 changes: 4 additions & 0 deletions gateway/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bootstrap</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
Expand Down
5 changes: 3 additions & 2 deletions gateway/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ server:
port: 8080

spring:
application:
name: gateway
jmx:
enabled: true

Expand All @@ -18,6 +16,9 @@ management:
autotime:
percentiles: 0.95
endpoints:
jmx:
exposure:
include: beans,mappings
web:
exposure:
include: metrics,prometheus,health,mappings
Expand Down
4 changes: 4 additions & 0 deletions gateway/src/main/resources/bootstrap.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

spring:
application:
name: gateway
8 changes: 6 additions & 2 deletions hot-deals/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ server:
spring:
application:
name: hot-deals
datasource:
platform: hsqldb
jmx:
enabled: true
sql:
init:
platform: hsqldb

management:
metrics:
Expand All @@ -17,6 +18,9 @@ management:
autotime:
percentiles: 0.95
endpoints:
jmx:
exposure:
include: beans,mappings
web:
exposure:
include: metrics,prometheus,health
Expand Down
3 changes: 3 additions & 0 deletions inventory-service-mock/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ management:
autotime:
percentiles: 0.75
endpoints:
jmx:
exposure:
include: beans,mappings
web:
exposure:
include: metrics,prometheus,health
Expand Down
3 changes: 3 additions & 0 deletions order/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ management:
autotime:
percentiles: 0.95
endpoints:
jmx:
exposure:
include: beans,mappings
web:
exposure:
include: metrics,prometheus,health
Expand Down

0 comments on commit f1fcc5d

Please sign in to comment.