Skip to content

Commit

Permalink
chore: 프로메테우스 연동을 위한 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
EeeasyCode committed Nov 18, 2024
1 parent fe8f3ed commit d837378
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion admin-service/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
spring:
application:
name: admin-service

datasource:
url: ${DB_URL}
username: ${DB_USERNAME}
Expand All @@ -22,4 +25,4 @@ logging:

club:
service:
url: ${CLUB_SERVICE_URL}
url: ${CLUB_SERVICE_URL}
5 changes: 4 additions & 1 deletion auth-service/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
spring:
application:
name: auth-service

datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: ${DB_HOST}
Expand Down Expand Up @@ -43,4 +46,4 @@ logging:

user:
service:
url: ${USER_SERVICE_URL}
url: ${USER_SERVICE_URL}
5 changes: 4 additions & 1 deletion user-service/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
spring:
application:
name: user-service

datasource:
url: ${DB_URL}
username: ${DB_USERNAME}
Expand Down Expand Up @@ -32,4 +35,4 @@ spring:

logging:
level:
org.hibernate.SQL: debug
org.hibernate.SQL: debug

0 comments on commit d837378

Please sign in to comment.