Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/main/java/org/ezcode/codetest/CodetestApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
13 changes: 8 additions & 5 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -169,16 +169,19 @@ 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 ?? ??
management.metrics.enable.jvm=fals
# JVM metrics
management.metrics.enable.jvm=false

management.metrics.export.defaults.enabled=false
management.metrics.enable.all=false