-
Notifications
You must be signed in to change notification settings - Fork 194
[backend] feat: adding spring actuator to collect metrics (#4438) #4585
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
base: release/current
Are you sure you want to change the base?
Changes from all commits
afd11f3
6479a97
d4b8c2c
ae3d71f
2421e1b
516e631
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 | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -382,3 +382,10 @@ pyroscope.server.address=<pyroscope.url> | |||||||
| #remediation.detection.webservice= | ||||||||
| #remediation.detection.webservice.retry= | ||||||||
| #remediation.detection.webservice.retry.waiting.milliseconds= | ||||||||
|
|
||||||||
|
|
||||||||
| # Enable actuator -> disabled by default | ||||||||
| management.endpoints.web.exposure.include= | ||||||||
| #management.endpoints.web.exposure.include=metrics,prometheus | ||||||||
| management.endpoint.health.show-details=always | ||||||||
| management.server.port=8080 | ||||||||
|
Comment on lines
+390
to
+391
|
||||||||
| management.endpoint.health.show-details=always | |
| management.server.port=8080 | |
| management.endpoint.health.show-details=always |
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.
The empty value for management.endpoints.web.exposure.include could be unclear to users. Consider adding a comment explaining that an empty value disables all endpoints, or explicitly set it to 'none' for clarity.