v2: log when bootstrap is blocked (#1746) - #1775
Draft
hamza-syndica wants to merge 4 commits into
Draft
Conversation
\nAdd periodic observability logging to gossip, snapshot downloader, accounts_db, and replay services while they are blocked waiting on upstream bootstrap data.\n\nEach service:\n- Logs at info level every 10s while waiting\n- Escalates to warn after a service-specific timeout\n (gossip: 60s, snapshot: 60s, accounts_db: 5min, replay: 15min)\n- Emits a one-shot info log when data arrives\n\nIntroduces a shared ThrottledLogger utility in v2/lib/telemetry.zig\nthat gates log frequency and tracks escalation state.\n\nCloses #1746
Codecov Report❌ Patch coverage is
❌ Your patch check has failed because the patch coverage (84.32%) is below the target coverage (85.00%). You can increase the patch coverage or adjust the target coverage.
... and 2 files with indirect coverage changes 🚀 New features to boost your workflow:
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Add periodic observability logging to gossip, snapshot downloader, accounts_db, and replay services while they are blocked waiting on upstream bootstrap data.
Service instrumentation
Each service also emits a one-shot info log when the awaited data arrives ( pattern).
Closes #1746