14 lines
635 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""threshold-event-detector 指标阈值事件检测模块。
该包实现:
1) 阈值规则加载与配置MySQL metric_rule/rule_scope + Redis 缓存,支持热加载);
2) 检测引擎(对采集指标做阈值比对,状态机 OK/FIRING/PENDING 触发事件);
3) 事件写入event 表与告警收敛Redis 去重/聚合 + 通知渠道封装);
4) REST API阈值规则管理、事件告警查询
默认使用进程内存储Memory方便本地运行与单元测试
MySQL / Redis / Kafka 适配器以可选依赖方式提供,接入真实中间件时启用。
"""
__version__ = "0.1.0"