Spaces:
Running
Running
File size: 15,923 Bytes
09801ca | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 | # MCP Alert Engine Module
"""
Smart Alert and Notification Engine for MCP Integration.
Features:
- Threshold-based alerts
- Anomaly detection alerts
- Trend-based alerts
- Scheduled monitoring
- Alert prioritization
"""
from dataclasses import dataclass, field
from typing import List, Dict, Optional, Any, Callable
from enum import Enum
from datetime import datetime, timedelta
import json
class AlertPriority(Enum):
"""Priority levels for alerts"""
LOW = "low"
MEDIUM = "medium"
HIGH = "high"
CRITICAL = "critical"
class AlertType(Enum):
"""Types of alerts"""
THRESHOLD = "threshold"
ANOMALY = "anomaly"
TREND = "trend"
COMPARISON = "comparison"
MISSING_DATA = "missing_data"
CUSTOM = "custom"
@dataclass
class Alert:
"""A single alert"""
id: str
type: AlertType
priority: AlertPriority
title: str
message: str
metric: str
current_value: Any
threshold_value: Optional[Any] = None
timestamp: datetime = field(default_factory=datetime.now)
metadata: Dict = field(default_factory=dict)
suggested_action: Optional[str] = None
@dataclass
class AlertRule:
"""Definition of an alert rule"""
name: str
metric: str
condition: str # 'gt', 'lt', 'eq', 'gte', 'lte', 'change_pct', 'anomaly'
threshold: Any
priority: AlertPriority = AlertPriority.MEDIUM
message_template: str = ""
enabled: bool = True
class AlertEngine:
"""
Enterprise Alert Engine MCP.
Provides intelligent alerting:
- Threshold monitoring
- Anomaly detection
- Trend analysis
- Smart prioritization
"""
def __init__(self):
self.rules: List[AlertRule] = []
self.alert_history: List[Alert] = []
self._alert_counter = 0
def add_rule(self, rule: AlertRule) -> None:
"""Add an alert rule"""
self.rules.append(rule)
def add_rules(self, rules: List[Dict]) -> None:
"""Add multiple rules from dict definitions"""
for rule_dict in rules:
rule = AlertRule(
name=rule_dict.get('name', 'Unnamed Rule'),
metric=rule_dict.get('metric', ''),
condition=rule_dict.get('condition', 'gt'),
threshold=rule_dict.get('threshold', 0),
priority=AlertPriority(rule_dict.get('priority', 'medium')),
message_template=rule_dict.get('message', ''),
enabled=rule_dict.get('enabled', True)
)
self.rules.append(rule)
def evaluate(
self,
data: Any,
context: Optional[Dict] = None
) -> Dict[str, Any]:
"""
Evaluate data against all rules and generate alerts.
Args:
data: DataFrame or dict with metrics
context: Additional context (previous values, etc.)
Returns:
Generated alerts
"""
try:
import pandas as pd
import numpy as np
if isinstance(data, pd.DataFrame):
df = data.copy()
else:
df = pd.DataFrame([data]) if isinstance(data, dict) else pd.DataFrame(data)
alerts = []
context = context or {}
# Evaluate each rule
for rule in self.rules:
if not rule.enabled:
continue
if rule.metric not in df.columns:
continue
# Get current value (use latest or aggregate)
if df[rule.metric].dtype in ['int64', 'float64']:
current_value = df[rule.metric].iloc[-1] if len(df) > 0 else 0
else:
current_value = df[rule.metric].iloc[-1] if len(df) > 0 else None
# Evaluate condition
triggered = self._evaluate_condition(
current_value,
rule.condition,
rule.threshold,
context.get(f'{rule.metric}_previous')
)
if triggered:
alert = self._create_alert(rule, current_value, context)
alerts.append(alert)
self.alert_history.append(alert)
# Run automatic anomaly detection
anomaly_alerts = self._detect_anomalies(df, context)
alerts.extend(anomaly_alerts)
# Run trend alerts
trend_alerts = self._detect_concerning_trends(df, context)
alerts.extend(trend_alerts)
# Sort by priority
priority_order = {
AlertPriority.CRITICAL: 0,
AlertPriority.HIGH: 1,
AlertPriority.MEDIUM: 2,
AlertPriority.LOW: 3
}
alerts.sort(key=lambda a: priority_order[a.priority])
return {
"success": True,
"alerts": [self._alert_to_dict(a) for a in alerts],
"alert_count": len(alerts),
"critical_count": sum(1 for a in alerts if a.priority == AlertPriority.CRITICAL),
"high_count": sum(1 for a in alerts if a.priority == AlertPriority.HIGH),
"summary": self._generate_summary(alerts)
}
except Exception as e:
return {"success": False, "error": str(e)}
def _evaluate_condition(
self,
current: Any,
condition: str,
threshold: Any,
previous: Optional[Any] = None
) -> bool:
"""Evaluate a single condition"""
try:
if current is None:
return False
if condition == 'gt':
return current > threshold
elif condition == 'lt':
return current < threshold
elif condition == 'eq':
return current == threshold
elif condition == 'gte':
return current >= threshold
elif condition == 'lte':
return current <= threshold
elif condition == 'change_pct' and previous is not None:
if previous == 0:
return False
change = ((current - previous) / abs(previous)) * 100
return abs(change) > abs(threshold)
elif condition == 'drop_pct' and previous is not None:
if previous == 0:
return False
change = ((current - previous) / abs(previous)) * 100
return change < -abs(threshold)
elif condition == 'increase_pct' and previous is not None:
if previous == 0:
return False
change = ((current - previous) / abs(previous)) * 100
return change > abs(threshold)
return False
except Exception:
return False
def _create_alert(
self,
rule: AlertRule,
current_value: Any,
context: Dict
) -> Alert:
"""Create an alert from a triggered rule"""
self._alert_counter += 1
message = rule.message_template or f"{rule.metric} triggered: {current_value} {rule.condition} {rule.threshold}"
# Generate suggested action
action = self._suggest_action(rule, current_value)
return Alert(
id=f"alert_{self._alert_counter}",
type=AlertType.THRESHOLD,
priority=rule.priority,
title=rule.name,
message=message,
metric=rule.metric,
current_value=current_value,
threshold_value=rule.threshold,
suggested_action=action,
metadata={"rule_condition": rule.condition}
)
def _suggest_action(self, rule: AlertRule, current_value: Any) -> str:
"""Generate suggested action for an alert"""
actions = {
'revenue': "Review sales pipeline and customer acquisition strategies",
'churn': "Analyze customer feedback and implement retention campaigns",
'cost': "Review expense categories and identify optimization opportunities",
'inventory': "Check supply chain status and reorder thresholds",
'performance': "Schedule performance review meeting with stakeholders",
'error': "Check system logs and contact technical support",
}
metric_lower = rule.metric.lower()
for key, action in actions.items():
if key in metric_lower:
return action
return f"Monitor {rule.metric} closely and investigate root cause"
def _detect_anomalies(self, df, context: Dict) -> List[Alert]:
"""Automatically detect anomalies in numeric columns"""
import numpy as np
alerts = []
for col in df.select_dtypes(include=['int64', 'float64']).columns:
if len(df) < 5: # Need minimum data points
continue
values = df[col].dropna().values
if len(values) < 5:
continue
mean = np.mean(values)
std = np.std(values)
if std == 0:
continue
# Check latest value
latest = values[-1]
z_score = abs((latest - mean) / std)
if z_score > 3: # Significant anomaly
self._alert_counter += 1
alerts.append(Alert(
id=f"alert_{self._alert_counter}",
type=AlertType.ANOMALY,
priority=AlertPriority.HIGH,
title=f"Anomaly Detected: {col}",
message=f"{col} value {latest:,.2f} is {z_score:.1f} standard deviations from mean ({mean:,.2f})",
metric=col,
current_value=latest,
threshold_value=mean,
suggested_action="Investigate sudden change in this metric",
metadata={"z_score": z_score, "mean": mean, "std": std}
))
elif z_score > 2: # Moderate anomaly
self._alert_counter += 1
alerts.append(Alert(
id=f"alert_{self._alert_counter}",
type=AlertType.ANOMALY,
priority=AlertPriority.MEDIUM,
title=f"Unusual Value: {col}",
message=f"{col} shows unusual value {latest:,.2f} (z-score: {z_score:.1f})",
metric=col,
current_value=latest,
metadata={"z_score": z_score}
))
return alerts
def _detect_concerning_trends(self, df, context: Dict) -> List[Alert]:
"""Detect concerning trends in time series data"""
import numpy as np
alerts = []
for col in df.select_dtypes(include=['int64', 'float64']).columns:
if len(df) < 3:
continue
values = df[col].dropna().values
if len(values) < 3:
continue
# Calculate trend (simple linear regression slope)
x = np.arange(len(values))
slope = np.polyfit(x, values, 1)[0]
# Calculate percentage change over series
if values[0] != 0:
total_change = ((values[-1] - values[0]) / abs(values[0])) * 100
else:
continue
# Alert on significant negative trends
if total_change < -20 and slope < 0:
self._alert_counter += 1
alerts.append(Alert(
id=f"alert_{self._alert_counter}",
type=AlertType.TREND,
priority=AlertPriority.HIGH if total_change < -30 else AlertPriority.MEDIUM,
title=f"Declining Trend: {col}",
message=f"{col} has declined {abs(total_change):.1f}% over the period",
metric=col,
current_value=values[-1],
threshold_value=values[0],
suggested_action="Analyze factors contributing to the decline",
metadata={"change_pct": total_change, "slope": slope}
))
return alerts
def _alert_to_dict(self, alert: Alert) -> Dict:
"""Convert alert to dictionary"""
return {
"id": alert.id,
"type": alert.type.value,
"priority": alert.priority.value,
"title": alert.title,
"message": alert.message,
"metric": alert.metric,
"current_value": alert.current_value,
"threshold_value": alert.threshold_value,
"timestamp": alert.timestamp.isoformat(),
"suggested_action": alert.suggested_action,
"metadata": alert.metadata
}
def _generate_summary(self, alerts: List[Alert]) -> str:
"""Generate human-readable summary"""
if not alerts:
return "✅ No alerts - all metrics within normal ranges"
critical = sum(1 for a in alerts if a.priority == AlertPriority.CRITICAL)
high = sum(1 for a in alerts if a.priority == AlertPriority.HIGH)
if critical > 0:
return f"🚨 {critical} critical alert(s) require immediate attention"
elif high > 0:
return f"⚠️ {high} high-priority alert(s) detected"
else:
return f"ℹ️ {len(alerts)} alert(s) for review"
# Convenience functions for direct MCP calls
def evaluate_alerts(data, rules=None, context=None):
"""Evaluate data and generate alerts"""
engine = AlertEngine()
if rules:
engine.add_rules(rules)
return engine.evaluate(data, context)
def detect_anomalies(data):
"""Quick anomaly detection"""
engine = AlertEngine()
result = engine.evaluate(data)
return {
"anomalies": [a for a in result.get("alerts", []) if a.get("type") == "anomaly"],
"count": sum(1 for a in result.get("alerts", []) if a.get("type") == "anomaly")
}
def create_threshold_alert(metric, condition, threshold, priority="medium"):
"""Create a simple threshold alert rule"""
return {
"name": f"{metric} {condition} {threshold}",
"metric": metric,
"condition": condition,
"threshold": threshold,
"priority": priority
}
# Quick test
if __name__ == "__main__":
import pandas as pd
# Test data with anomaly
test_data = pd.DataFrame({
"revenue": [100000, 105000, 98000, 102000, 150000], # Last value is anomaly
"customers": [500, 520, 510, 505, 515],
"churn_rate": [0.05, 0.06, 0.07, 0.08, 0.12] # Increasing trend
})
# Define rules
rules = [
{"name": "High Revenue", "metric": "revenue", "condition": "gt", "threshold": 120000, "priority": "high"},
{"name": "High Churn", "metric": "churn_rate", "condition": "gt", "threshold": 0.10, "priority": "critical"},
]
result = evaluate_alerts(test_data, rules)
print("Alert Evaluation Result:")
print(f" Summary: {result['summary']}")
print(f" Total Alerts: {result['alert_count']}")
print(f"\nAlerts:")
for alert in result['alerts']:
print(f" [{alert['priority']}] {alert['title']}: {alert['message']}")
if alert.get('suggested_action'):
print(f" → Action: {alert['suggested_action']}")
|