-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmuffin_kernel_log.json
More file actions
43 lines (43 loc) · 1012 Bytes
/
muffin_kernel_log.json
File metadata and controls
43 lines (43 loc) · 1012 Bytes
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
{
"muffin_kernel_log": {
"title": "MuffinOS Kernel Serial Log",
"description": "Kernel logs via serial",
"url": "",
"ordered-by-time": false,
"regex": {
"std": {
"pattern": "(?<timestamp>.*?) - (?<level>\\w+)\\s+(?<cpu>\\w+)\\s+(?<pid>\\w+)?\\s*\\[(?<module>[^\\]]+)\\]\\s*(?<body>.*)$"
}
},
"level-field": "level",
"level": {
"trace": "TRACE",
"debug": "DEBUG",
"info": "INFO",
"warning": "WARN",
"error": "ERROR"
},
"body-field": "body",
"timestamp-field": "timestamp",
"timestamp-format": "^%Y-%m-%dT%H:%M:%S.%fZ",
"value": {
"cpu": {
"kind": "string",
"identifier": true
},
"pid": {
"kind": "string",
"identifier": true
},
"module": {
"kind": "string",
"identifier": true
}
},
"sample": [
{
"line": "2026-01-02T11:23:56.024233Z - INFO cpu0 pid0 [kernel] started process pid=1"
}
]
}
}