fix(auto-triage): paginated fetch prevents queue stall on high-score …#779
Merged
scottbrumley merged 1 commit intomainfrom Apr 13, 2026
Merged
fix(auto-triage): paginated fetch prevents queue stall on high-score …#779scottbrumley merged 1 commit intomainfrom
scottbrumley merged 1 commit intomainfrom
Conversation
…cases SOCAutoTriageScoreFilter now owns the full fetch+filter pipeline. It calls core-api-post internally in batches of 100 (max_batches=5), skipping cases above the score threshold without holding them in memory. This prevents high-score cases at the front of the creation_time queue from blocking lower-score eligible cases from being reached. JOB - Auto Triage V3: removed Task 1 (Get Unstarred Open Cases) since the script handles its own API calls. Start now routes directly to the filter task. Files changed: Packs/soc-optimization-unified/Scripts/SOCAutoTriageScoreFilter/SOCAutoTriageScoreFilter.py Packs/soc-optimization-unified/Scripts/SOCAutoTriageScoreFilter/SOCAutoTriageScoreFilter.yml Packs/soc-optimization-unified/Playbooks/JOB_-_Triage_Alerts_V3.yml Breaking changes: - SOCAutoTriageScoreFilter 'incidents' arg removed (script fetches its own) - 'window_hours' arg now declared in YAML (was passed but undeclared) - New 'max_batches' arg (default "5", optional) - New outputs: AutoTriage.total_scanned, AutoTriage.batches_run
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.
…cases
SOCAutoTriageScoreFilter now owns the full fetch+filter pipeline. It calls core-api-post internally in batches of 100 (max_batches=5), skipping cases above the score threshold without holding them in memory. This prevents high-score cases at the front of the creation_time queue from blocking lower-score eligible cases from being reached.
JOB - Auto Triage V3: removed Task 1 (Get Unstarred Open Cases) since the script handles its own API calls. Start now routes directly to the filter task.
Files changed:
Packs/soc-optimization-unified/Scripts/SOCAutoTriageScoreFilter/SOCAutoTriageScoreFilter.py
Packs/soc-optimization-unified/Scripts/SOCAutoTriageScoreFilter/SOCAutoTriageScoreFilter.yml
Packs/soc-optimization-unified/Playbooks/JOB_-_Triage_Alerts_V3.yml
Breaking changes: