feat(1c): automate live file telemetry ingestion

This commit is contained in:
igor04091968
2026-05-22 08:09:00 +03:00
parent 41f7a869e5
commit 5c6c23ba0f
19 changed files with 1070 additions and 100 deletions
@@ -12,5 +12,8 @@ SELECT
entity_id,
summary
FROM analytics_1c.detections
WHERE severity IN ('high', 'critical')
WHERE (
severity IN ('high', 'critical')
OR (severity = 'medium' AND score >= 35)
)
AND detection_id NOT IN (SELECT case_id FROM analytics_1c.cases);