-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
feat: healthchecks for sentry components #3859
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 9 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
2c50ba5
feat: add snuba healthcheck
mzglinski 4ccd82f
fix: snuba healthchecks
mzglinski ecb3757
fix: remove healthcheck from replacer
mzglinski cbb71fa
feat: add healthchecks to sentry
mzglinski ed2efbb
fix: small changes to sentry healthchecks
mzglinski 32ad250
fix: worker healthcheck
mzglinski 7e9edcb
feat: vroom healthcheck
mzglinski 828bb35
feat: symbolicator healthcheck
mzglinski e1a400a
feat: add nginx healthcheck
mzglinski 6bed0eb
fix: typo in .env
mzglinski 80fa06f
fix: typo in docker-compose.yml
mzglinski fc43389
test: increase docker compose --wait-timeout
mzglinski dcb496d
Revert "test: increase docker compose --wait-timeout"
mzglinski 14eff39
fix: do not use healthcheck: [disabled: true], since it breaks docker…
mzglinski 2409027
Merge branch 'master' into feat/healthchecks
aldy505 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
Oops, something went wrong.
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.
Potential bug: A typo in the `HEATLHCHECK_START_PERIOD` variable name causes the healthcheck grace period to be ignored, potentially leading to premature service restarts.
HEATLHCHECK_START_PERIOD
(missing an 'H') in the.env
file and its reference indocker-compose.yml
will cause Docker Compose to substitute an empty string for the healthcheckstart_period
. This leads to the value defaulting to0s
instead of the intended10s
. As a result, multiple services includingpostgres
,redis
,kafka
, andweb
will not have the intended grace period during startup, which could cause them to be marked as unhealthy and restart unnecessarily, impacting system reliability.HEATLHCHECK_START_PERIOD
toHEALTHCHECK_START_PERIOD
in the.env
file and update the corresponding reference indocker-compose.yml
.severity: 0.65, confidence: 0.98
Did we get this right? 👍 / 👎 to inform future reviews.