feat:新增事件决策/规则/聚合三段管道引擎

This commit is contained in:
2026-06-11 17:25:11 +08:00
parent 24c16de9a1
commit 4b051f16be
4 changed files with 506 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
"""事件引擎子包 (MVP-1 / P1-P2 / P5)。
模块结构::
decision_engine.py 决策引擎 (置信度评估 + 事件类型映射)
rule_engine.py 规则引擎 (YAML 驱动)
aggregator.py 事件聚合器 (时间窗口去重)
"""
from .decision_engine import EventDecisionEngine
from .rule_engine import AlertRuleEngine
from .aggregator import EventAggregator
__all__ = ["EventDecisionEngine", "AlertRuleEngine", "EventAggregator"]