-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: 모니터링 서버 구축 #357
feat: 모니터링 서버 구축 #357
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,4 +65,29 @@ notice: | |
playground: | ||
server: | ||
url: ${PROD_PLAYGROUND_URL} | ||
endpoint: ${PLAYGROUND_ENDPOINT} | ||
endpoint: ${PLAYGROUND_ENDPOINT} | ||
|
||
|
||
management: | ||
server: | ||
port: ${ACTUATOR_PORT} | ||
endpoints: | ||
enabled-by-default: false | ||
jmx: | ||
exposure: | ||
exclude: "*" | ||
web: | ||
exposure: | ||
include: info, health, prometheus | ||
Comment on lines
+79
to
+82
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 해당 설정으로 다음과 같이 세팅이 되는건지 궁금합니다 ㅎㅎ 애플리케이션 health check
Prometheus 메트릭 수집
애플리케이션 정보
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 넵 그렇습니다!! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 그렇군요! 제 생각에는 actuatorEndPoint의 value값도 uuid고, 환경변수로 관리하고 있기 때문에, 모두 접근 권한을 풀어줘도 될 것 같은데 민규님의 생각도 궁금합니다! |
||
base-path: ${ACTUATOR_PATH} | ||
endpoint: | ||
health: | ||
enabled: true | ||
info: | ||
enabled: true | ||
prometheus: | ||
enabled: true | ||
prometheus: | ||
metrics: | ||
export: | ||
enabled: true |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -69,4 +69,29 @@ notice: | |
playground: | ||
server: | ||
url: ${DEV_PLAYGROUND_URL} | ||
endpoint: ${PLAYGROUND_ENDPOINT} | ||
endpoint: ${PLAYGROUND_ENDPOINT} | ||
|
||
|
||
management: | ||
server: | ||
port: ${ACTUATOR_PORT} | ||
endpoints: | ||
enabled-by-default: false | ||
jmx: | ||
exposure: | ||
exclude: "*" | ||
web: | ||
exposure: | ||
include: info, health, prometheus | ||
Comment on lines
+83
to
+86
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 위 prod와 의견 동일합니다! |
||
base-path: ${ACTUATOR_PATH} | ||
endpoint: | ||
health: | ||
enabled: true | ||
info: | ||
enabled: true | ||
prometheus: | ||
enabled: true | ||
prometheus: | ||
metrics: | ||
export: | ||
enabled: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아래 prod와 의견 동일합니다!