-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_incident_report.html
More file actions
134 lines (134 loc) · 3.96 KB
/
Copy pathsample_incident_report.html
File metadata and controls
134 lines (134 loc) · 3.96 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Incident Report: inc-20260320T110000Z-001</title>
<style>
:root {
--bg: #f3efe5;
--paper: #fffdf7;
--ink: #1f2933;
--muted: #52606d;
--accent: #c2410c;
--line: #e6dfcf;
--chip: #f7ede2;
}
* { box-sizing: border-box; }
body {
margin: 0;
background: radial-gradient(circle at top left, #fff6df, var(--bg));
color: var(--ink);
font-family: Georgia, "Times New Roman", serif;
line-height: 1.6;
}
main {
max-width: 980px;
margin: 0 auto;
padding: 48px 20px 72px;
}
.hero {
background: var(--paper);
border: 1px solid var(--line);
border-radius: 24px;
padding: 32px;
box-shadow: 0 20px 50px rgba(31, 41, 51, 0.08);
}
.eyebrow {
color: var(--accent);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
margin-bottom: 12px;
}
h1, h2 {
margin: 0 0 12px;
font-weight: 600;
line-height: 1.15;
}
h1 { font-size: clamp(2.2rem, 4vw, 4rem); }
h2 { font-size: 1.35rem; margin-top: 28px; }
p { margin: 0; }
.lede {
color: var(--muted);
font-size: 1.1rem;
margin-top: 10px;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 18px;
margin-top: 28px;
}
.card {
background: rgba(255, 253, 247, 0.88);
border: 1px solid var(--line);
border-radius: 18px;
padding: 20px;
}
.list {
list-style: none;
margin: 14px 0 0;
padding: 0;
}
.list li {
background: var(--chip);
border-radius: 12px;
padding: 10px 12px;
margin-bottom: 10px;
}
.section {
margin-top: 22px;
padding-top: 22px;
border-top: 1px solid var(--line);
}
</style>
</head>
<body>
<main>
<section class="hero">
<div class="eyebrow">AI Incident Analysis</div>
<h1>inc-20260320T110000Z-001</h1>
<p class="lede">Customer-facing checkout performance degraded with partial request loss.</p>
<div class="grid">
<article class="card">
<h2>Incident Summary</h2>
<p>Checkout latency degraded for 15 minutes during a gateway timeout cascade.</p>
</article>
<article class="card">
<h2>Root Cause Explanation</h2>
<p>Gateway timeout expansion propagated into checkout-service, increasing latency and error rate until retries saturated the upstream path.</p>
</article>
<article class="card">
<h2>Engineering Handoff</h2>
<p>Review upstream timeout changes, saturation metrics, and dependency protection settings around 11:15 UTC.</p>
</article>
</div>
<div class="section">
<h2>Remediation Suggestions</h2>
<ul class="list">
<li>Rollback the timeout configuration change.</li>
<li>Enable stricter circuit breaker thresholds for upstream calls.</li>
<li>Alert on latency/error coupling before customer impact reaches partial outage levels.</li>
</ul>
<h2>Facts</h2>
<ul class="list">
<li>Checkout latency rose from 120ms baseline to 1450ms.</li>
<li>Error rate peaked at 18 percent during the affected window.</li>
<li>Gateway-service emitted repeated timeout and retry exhaustion logs.</li>
</ul>
<h2>Inferences</h2>
<ul class="list">
<li>Gateway-service is the dominant upstream trigger.</li>
<li>Retry amplification likely accelerated saturation during the incident.</li>
</ul>
<h2>Uncertainties</h2>
<ul class="list">
<li>The exact deployment or config rollout timestamp remains unconfirmed.</li>
</ul>
</div>
</section>
</main>
</body>
</html>