Skip to content

Commit f6bb4f7

Browse files
authoredMar 12, 2025··
Merge pull request #846 from wenjianhn/uefi-cper
Add UEFI Common Platform Error Record (CPER) support
2 parents 01e1cf0 + 5562632 commit f6bb4f7

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
 

‎config/kernel-monitor.json

+21
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@
1515
"type": "XfsShutdown",
1616
"reason": "XfsHasNotShutDown",
1717
"message": "XFS has not shutdown"
18+
},
19+
{
20+
"type": "CperHardwareErrorFatal",
21+
"reason": "CperHardwareHasNoFatalError",
22+
"message": "UEFI CPER has no fatal error"
1823
}
1924
],
2025
"rules": [
@@ -69,6 +74,22 @@
6974
"reason": "MemoryReadError",
7075
"pattern": "CE memory read error .*"
7176
},
77+
{
78+
"type": "temporary",
79+
"reason": "CperHardwareErrorCorrected",
80+
"pattern": ".*\\[Hardware Error\\]: event severity: corrected$"
81+
},
82+
{
83+
"type": "temporary",
84+
"reason": "CperHardwareErrorRecoverable",
85+
"pattern": ".*\\[Hardware Error\\]: event severity: recoverable$"
86+
},
87+
{
88+
"type": "permanent",
89+
"condition": "CperHardwareErrorFatal",
90+
"reason": "CperHardwareErrorFatal",
91+
"pattern": ".*\\[Hardware Error\\]: event severity: fatal$"
92+
},
7293
{
7394
"type": "permanent",
7495
"condition": "KernelDeadlock",

0 commit comments

Comments
 (0)
Please sign in to comment.