Skip to content

Commit

Permalink
Merge pull request #104 from Guzzing/feat/monitoring
Browse files Browse the repository at this point in the history
[Feat/monitoring] 모니터링 설정
  • Loading branch information
onetuks authored Dec 2, 2023
2 parents b694e14 + 177252b commit d598f89
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
12 changes: 11 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ openapi3 {
servers = [
{ url = "http://localhost:8080" },
{ url = "https://studay.store" },
{ url = "http://studay.store" }
{ url = "http://3.114.43.57:8080" }
]
title = "스터데이"
description = "스터데이 API 문서"
Expand All @@ -43,7 +43,11 @@ repositories {
}

dependencies {

// Web
implementation 'org.springframework.boot:spring-boot-starter-web'

// Test
testImplementation 'org.springframework.boot:spring-boot-starter-test'

// S3
Expand Down Expand Up @@ -102,6 +106,12 @@ dependencies {
// spatial type
implementation 'org.hibernate:hibernate-spatial:6.3.1.Final'

// Prometheus
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'

// Spring Actuator
implementation 'org.springframework.boot:spring-boot-starter-actuator'

}

tasks.named('test') {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ public class Constants {
"/swagger-ui/**",
"/swagger-resources/**",
"/v3/api-docs/**",
"/actuator/**"
};
}

0 comments on commit d598f89

Please sign in to comment.