-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbook.json
More file actions
39 lines (39 loc) · 1.23 KB
/
book.json
File metadata and controls
39 lines (39 loc) · 1.23 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
{
"name": "24-Hour Incident Summary Dashboard",
"gridData": {
"h": 12,
"w": 24
},
"panels": [
{
"type": "Tile",
"name": "Total Incidents (24h)",
"query": "SecurityIncident | where TimeGenerated > ago(24h) | count"
},
{
"type": "Tile",
"name": "Open Incidents",
"query": "SecurityIncident | where TimeGenerated > ago(24h) | where Status in ('New', 'Active') | count"
},
{
"type": "Tile",
"name": "Avg MTTR",
"query": "SecurityIncident | where TimeGenerated > ago(24h) | where Status == 'Closed' | extend MTTR = datetime_diff('minute', ClosedTime, CreatedTime) | summarize avg(MTTR)/60"
},
{
"type": "BarChart",
"name": "Incidents by Severity",
"query": "SecurityIncident | where TimeGenerated > ago(24h) | summarize Count = count() by Severity"
},
{
"type": "BarChart",
"name": "Incidents by Status",
"query": "SecurityIncident | where TimeGenerated > ago(24h) | summarize Count = count() by Status"
},
{
"type": "TimeChart",
"name": "Incident Creation Over Time",
"query": "SecurityIncident | where TimeGenerated > ago(24h) | summarize Count = count() by bin(TimeGenerated, 1h)"
}
]
}