From 6b24abe8047feae2621f411ef3da9d61639f502d Mon Sep 17 00:00:00 2001 From: pokerbearkr Date: Thu, 18 Sep 2025 00:03:05 +0900 Subject: [PATCH 1/4] =?UTF-8?q?fix=20:=20=EC=8B=9C=EC=8A=A4=ED=85=9C=20?= =?UTF-8?q?=EB=A7=A4=ED=8A=B8=EB=A6=AD=20=EB=B9=84=ED=99=9C=EC=84=B1?= =?UTF-8?q?=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/application.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 220e41b8..d674822f 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -181,4 +181,4 @@ management.metrics.enable.process.start.time=false management.metrics.enable.process.files=false # JVM metrics ?? ?? -management.metrics.enable.jvm=fals +management.metrics.enable.jvm=false From b1bd28e3e3e4a01d7709c6bfd0cb9e39e32ed357 Mon Sep 17 00:00:00 2001 From: pokerbearkr Date: Thu, 18 Sep 2025 12:59:44 +0900 Subject: [PATCH 2/4] =?UTF-8?q?fix=20:=20=EC=8B=9C=EC=8A=A4=ED=85=9C=20?= =?UTF-8?q?=EB=A7=A4=ED=8A=B8=EB=A6=AD=20=EC=A7=84=EC=A7=9C=20=EC=A7=84?= =?UTF-8?q?=EC=A7=9C=20=EB=B9=84=ED=99=9C=EC=84=B1=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/application.properties | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index d674822f..53f47fee 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -169,16 +169,16 @@ app.redirect.verify.success=${APP_REDIRECT_VERIFY_SUCCESS:https://your-frontend. # 인증 실패 시 이동할 페이지 URL (예: 프론트의 실패 안내 페이지) app.redirect.verify.failure=${APP_REDIRECT_VERIFY_FAILURE:https://your-frontend.example.com/verify/failure} -# processor metrics (system.cpu, process.cpu) ?? +# processor metrics (system.cpu, process.cpu) management.metrics.enable.process.cpu=false management.metrics.enable.system.cpu=false -# process.uptime, process.start.time ?? +# process.uptime, process.start.time management.metrics.enable.process.uptime=false management.metrics.enable.process.start.time=false -# process.files ?? +# process.files management.metrics.enable.process.files=false -# JVM metrics ?? ?? +# JVM metrics management.metrics.enable.jvm=false From 6053a087298fdff0c6d9896df8767e18025e2528 Mon Sep 17 00:00:00 2001 From: pokerbearkr Date: Thu, 18 Sep 2025 13:25:27 +0900 Subject: [PATCH 3/4] =?UTF-8?q?fix=20:=20=EC=8B=9C=EC=8A=A4=ED=85=9C=20?= =?UTF-8?q?=EB=A7=A4=ED=8A=B8=EB=A6=AD=20=EC=A7=84=EC=A7=9C=20=EC=A7=84?= =?UTF-8?q?=EC=A7=9C=20=EC=A7=84=EC=A7=9C=20=EB=B9=84=ED=99=9C=EC=84=B1?= =?UTF-8?q?=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/resources/application.properties | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 53f47fee..06db0400 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -182,3 +182,6 @@ management.metrics.enable.process.files=false # JVM metrics management.metrics.enable.jvm=false + +management.metrics.export.defaults.enabled=false +management.metrics.enable.all=false From 9d5c1ce9f912e126355f3443093fb177dc5345d8 Mon Sep 17 00:00:00 2001 From: pokerbearkr Date: Thu, 18 Sep 2025 13:37:17 +0900 Subject: [PATCH 4/4] =?UTF-8?q?fix=20:=20=EC=8B=9C=EC=8A=A4=ED=85=9C=20?= =?UTF-8?q?=EB=A7=A4=ED=8A=B8=EB=A6=AD=20=EC=A7=84=EC=A7=9C=20=EC=A7=84?= =?UTF-8?q?=EC=A7=9C=20=EC=A7=84=EC=A7=9C=20=EC=A7=84=EC=A7=9C=20=EB=B9=84?= =?UTF-8?q?=ED=99=9C=EC=84=B1=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/org/ezcode/codetest/CodetestApplication.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/ezcode/codetest/CodetestApplication.java b/src/main/java/org/ezcode/codetest/CodetestApplication.java index 227acf06..117997d9 100644 --- a/src/main/java/org/ezcode/codetest/CodetestApplication.java +++ b/src/main/java/org/ezcode/codetest/CodetestApplication.java @@ -6,7 +6,11 @@ import org.springframework.data.jpa.repository.config.EnableJpaAuditing; import org.springframework.scheduling.annotation.EnableScheduling; -@SpringBootApplication +@SpringBootApplication( + exclude = { + org.springframework.boot.actuate.autoconfigure.metrics.SystemMetricsAutoConfiguration.class + } +) @EnableJpaAuditing @EnableScheduling @EnableAspectJAutoProxy(proxyTargetClass = true)