-
Notifications
You must be signed in to change notification settings - Fork 0
[RELEASE] v2.2.5 Granfana Cloud 모니터링 적용 #382
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
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
a55b6c7
feat: Grafana Cloud 메트릭 application 태그 추가
pooreumjung 735a4bd
fix: actuator 엔드포인트 외부 노출 범위 축소
pooreumjung 00dc534
feat: actuator 관리 포트 분리 및 로컬 바인딩 설정
pooreumjung 1d9bd82
fix: actuator prometheus 엔드포인트 whitelist 추가
pooreumjung 48a795d
Merge pull request #377 from EAT-SSU/feat/#376-grafana-cloud-monitoring
pooreumjung 3a557b6
fix: management 포트 Docker publish 및 바인딩 주소 수정
pooreumjung ab3114b
Merge pull request #379 from EAT-SSU/fix/#378-expose-management-port-…
pooreumjung 3df7731
feat: prod 서버 Grafana Cloud 모니터링 설정 적용
pooreumjung c859537
Merge pull request #381 from EAT-SSU/feat/#380-apply-grafana-monitori…
pooreumjung File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -94,6 +94,10 @@ logging: | |
| com.zaxxer.hikari: INFO | ||
|
|
||
| management: | ||
| server: | ||
| port: 9001 | ||
| address: 0.0.0.0 | ||
|
Contributor
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. |
||
|
|
||
| endpoint: | ||
| metrics: | ||
| enabled: true | ||
|
|
@@ -104,3 +108,7 @@ management: | |
| web: | ||
| exposure: | ||
| include: health, info, metrics, prometheus | ||
|
|
||
| metrics: | ||
| tags: | ||
| application: eatssu-dev | ||
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -100,6 +100,10 @@ logging: | |
|
|
||
|
|
||
| management: | ||
| server: | ||
| port: 9001 | ||
| address: 0.0.0.0 | ||
|
Contributor
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. |
||
|
|
||
| endpoint: | ||
| metrics: | ||
| enabled: true | ||
|
|
@@ -111,3 +115,7 @@ management: | |
| exposure: | ||
| include: health, info, metrics, prometheus | ||
|
|
||
| metrics: | ||
| tags: | ||
| application: eatssu-prod | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
[Reviewer, 2026-07-01] /actuator/prometheus 경로를 AUTH_WHITELIST에 추가하여 무인증으로 노출하면 시스템 메트릭 정보가 외부에 유출될 수 있으므로, 이를 화이트리스트에서 제외하고 별도의 인증(예: Basic Auth)이나 IP 필터링을 적용하여 보안을 강화해야 합니다.