Open
Conversation
Member
hellais
commented
Feb 25, 2026
- Add support for warming up the event detector
- Remove the variance label
- Fix alert query parameter passing
* Add support for warming up the event detector * Remove the variance label * Fix alert query parameter passing
Codecov Report✅ All modified and coverable lines are covered by tests. ❌ Your project check has failed because the head coverage (77.86%) is below the target coverage (80.00%). You can increase the head coverage or adjust the target coverage.
Additional details and impacted files@@ Coverage Diff @@
## main #152 +/- ##
==========================================
- Coverage 83.92% 77.86% -6.07%
==========================================
Files 85 33 -52
Lines 5220 1938 -3282
==========================================
- Hits 4381 1509 -2872
+ Misses 839 429 -410
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Member
Author
|
This will require running the following migration queries on clickhouse: ALTER TABLE event_detector_cusums
DROP COLUMN dns_isp_blocked_obs_w_sum,
DROP COLUMN dns_isp_blocked_w_sum,
DROP COLUMN dns_other_blocked_obs_w_sum,
DROP COLUMN dns_other_blocked_w_sum,
DROP COLUMN tcp_blocked_obs_w_sum,
DROP COLUMN tcp_blocked_w_sum,
DROP COLUMN tls_blocked_obs_w_sum,
DROP COLUMN tls_blocked_w_sum;
ALTER TABLE event_detector_cusums
ADD COLUMN dns_isp_blocked_current_state String DEFAULT 'ok',
ADD COLUMN dns_other_blocked_current_state String DEFAULT 'ok',
ADD COLUMN tcp_blocked_current_state String DEFAULT 'ok',
ADD COLUMN tls_blocked_current_state String DEFAULT 'ok';
ALTER TABLE event_detector_changepoints
DROP COLUMN IF EXISTS dns_isp_blocked_obs_w_sum,
DROP COLUMN IF EXISTS dns_isp_blocked_w_sum,
DROP COLUMN IF EXISTS dns_other_blocked_obs_w_sum,
DROP COLUMN IF EXISTS dns_other_blocked_w_sum,
DROP COLUMN IF EXISTS tcp_blocked_obs_w_sum,
DROP COLUMN IF EXISTS tcp_blocked_w_sum,
DROP COLUMN IF EXISTS tls_blocked_obs_w_sum,
DROP COLUMN IF EXISTS tls_blocked_w_sum,
DROP COLUMN IF EXISTS current_mean;
ALTER TABLE event_detector_changepoints
ADD COLUMN IF NOT EXISTS current_state String DEFAULT 'ok'; |
workaround for `Environment default is incompatible: module 'virtualenv.discovery.builtin' has no attribute 'propose_interpreters'`
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.