-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
175ab65
commit 2c2ebd1
Showing
4 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.spaceclub.global; | ||
|
||
import org.springframework.boot.actuate.web.exchanges.InMemoryHttpExchangeRepository; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
|
||
@Configuration | ||
public class ActuatorConfig { | ||
|
||
@Bean | ||
public InMemoryHttpExchangeRepository httpExchangeRepository() { | ||
return new InMemoryHttpExchangeRepository(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
management: | ||
info: | ||
java: ## 자바 런타임 정보 | ||
enabled: true | ||
os: ## OS 정보 | ||
enabled: true | ||
env: ## Environment에서 info.로 시작하는정보 | ||
enabled: true | ||
git: ## git 정보 | ||
mode: full | ||
build: ## 빌드 정보 | ||
enabled: true | ||
|
||
endpoint: | ||
health: | ||
show-components: always | ||
|
||
endpoints: | ||
web: | ||
exposure: | ||
include: "*" | ||
|
||
info: | ||
app: | ||
name: space-club-backend | ||
company: space-club | ||
|
||
## 톰캣의 최대 쓰레드, 사용 쓰레드 수 포함 다양 메트릭 확인 가능 | ||
server: | ||
tomcat: | ||
mbeanregistry: | ||
enabled: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters