Skip to content

Commit 4fe48dd

Browse files
authored
✨ [Feat] 모니터링 도구 도입
2 parents 3b1ae9c + 0c69d7c commit 4fe48dd

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

.github/pull_request_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
- [ ] 기타 사소한 수정
66

77
## ❗️ 관련 이슈 링크
8-
Close #
8+
Closed #
99

1010
## 📌 개요
1111
-

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# 스코이 : 편리한 스테이블 코인 결제 플랫폼
22

3+
34
## 💡 Project Overview
45

5-
스코이는 스테이블코인을 일상적인 결제 수단으로 사용할 수 있도록 설계된 금융 플랫폼입니다.
6-
결제부터 투자까지, 누구나 쉽게 사용할 수 있는 편리한 스테이블 코인 금융 환경을 제공하는 것을 목표로 합니다.
6+
스코이는 스테이블코인을 일상적인 결제 수단으로 사용할 수 있도록 설계된 금융 플랫폼입니다
7+
결제부터 투자까지, 누구나 쉽게 사용할 수 있는 편리한 스테이블 코인 금융 환경을 제공하는 것을 목표로 합니다
78

89
<img height="512" alt="image" src="https://github.com/user-attachments/assets/4e162831-0a8c-4223-afef-4e001737f43e" />
910
<img height="512" alt="image" src="https://github.com/user-attachments/assets/531acd4d-1c28-4912-b1a9-90adac60df05" />

build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@ dependencies {
8282

8383
// Retry
8484
implementation 'org.springframework.retry:spring-retry'
85+
86+
// Spring Actuator
87+
implementation 'org.springframework.boot:spring-boot-starter-actuator'
88+
89+
// Prometheus
90+
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
8591
}
8692

8793
tasks.named('test') {

src/main/java/com/example/scoi/global/config/SecurityConfig.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ public class SecurityConfig {
3737
"/auth/login", // 로그인
3838
"/auth/reissue", // 토큰 재발급
3939
"/auth/password/reset", // 비인증 비밀번호 재설정
40+
"/actuator/**", // 모니터링
4041
"/swagger-ui/**",
4142
"/v3/api-docs/**",
4243
"/swagger-resources/**",

0 commit comments

Comments
 (0)