-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
83 lines (83 loc) · 1.83 KB
/
config.json
File metadata and controls
83 lines (83 loc) · 1.83 KB
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
{
"api": {
"base_url": "https://status.redhat.com/api/v2/summary.json",
"timeout": 10,
"max_retries": 3
},
"cache": {
"enabled": true,
"duration_minutes": 5,
"directory": ".cache",
"max_size_mb": 100,
"auto_cleanup": true
},
"ai_analytics": {
"enabled": true,
"anomaly_detection": true,
"predictive_analysis": true,
"learning_window": 50,
"anomaly_threshold": 2.0,
"min_confidence": 0.7
},
"database": {
"enabled": true,
"path": "redhat_monitoring.db",
"retention_days": 30,
"auto_cleanup": true
},
"slo": {
"enabled": true,
"targets": {
"global_availability": 99.9,
"response_time": 2.0,
"uptime_monthly": 99.5
},
"tracking_period": "monthly",
"alert_on_breach": true
},
"notifications": {
"email": {
"enabled": true,
"smtp_server": "smtp.gmail.com",
"smtp_port": 587,
"use_tls": true,
"from_address": "test@example.com",
"to_addresses": [
"admin@example.com",
"ops@example.com"
],
"username": "test@example.com",
"password": "test-password"
},
"webhooks": {
"enabled": true,
"urls": [
"https://hooks.slack.com/services/TEST/WEBHOOK/URL"
]
},
"slack": {
"enabled": false
}
},
"logging": {
"enabled": true,
"level": "INFO",
"file": "redhat_status.log",
"max_size_mb": 10,
"backup_count": 5,
"format": "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
},
"output": {
"default_directory": ".",
"create_summary_report": true,
"timestamp_format": "%Y%m%d_%H%M%S",
"max_file_size_mb": 50,
"compression": false
},
"performance": {
"enable_metrics": true,
"detailed_timing": false,
"memory_profiling": false,
"max_concurrent_operations": 5
}
}