fix(#551): trend labels, dedup persistence, recommendation unification - #565
Open
TomikeDS wants to merge 1 commit into
Open
fix(#551): trend labels, dedup persistence, recommendation unification#565TomikeDS wants to merge 1 commit into
TomikeDS wants to merge 1 commit into
Conversation
…ion, alert configs, persistence - Fix rolling average time window labels: short_term=5min, medium_term=1hr, long_term=24hr - Fix TrendChanges serde: 5m_pct, 1h_pct, 24h_pct (was 1h_pct, 6h_pct) - Remove congestion double-counting in recommendation engine - Unify GET/POST /fees/recommend to use same engine.recommend() path - Wire recommendation history to database persistence via FeeRepository - Make alert dedup durable: rehydrate from alert_events on startup - Record all alert dispatches in alert_events table - Connect alert config CRUD to AlertManager: load DB configs, dispatch to webhooks - Add FeeRecommendationEngine::with_repository() builder - Fix devkit clippy warnings (dead_code, RangeInclusive::contains, casting, etc.) - Add deterministic tests for trend labels, recommendation behavior, percent_change
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.
Closes #551
Changes
Trend labels fixed
Congestion double-counting removed
GET /fees/recommend consolidated with POST
Recommendation history wired to persistence
Alert dedup made durable
Alert config CRUD connected to dispatcher
Tests