-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvmkernel.json
70 lines (69 loc) · 2.44 KB
/
vmkernel.json
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
{
"vmkernel_log_sub" : {
"title": "VMKernel Logs + subsystem highlighting",
"description": "The VMKernel's log format with subsystem highlighting included",
"url": "",
"regex": {
"std": {
"pattern" : "^(?<timestamp>\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z) (?<cpu>cpu\\d+):(?<world_id>\\d+)(?:( opID=(?<opid>[a-f\\d]+))?\\)(?:(?<address>0x[a-f\\d]+):\\[(?<address2>0x[a-f\\d]+)\\](?<instruction>\\S+)@((?<function>\\S+))?|(?<level>WARNING|ALERT):|(?<subsystem>[\\-:a-zA-Z0-9_\\<\\>\\.]+)))(\\s+)?(?<body>.*)$"
}
},
"level-field": "level",
"opid-field": "opid",
"level": {
"warning": "(?:WARNING|ALERT)"
},
"value": {
"cpu": {
"kind": "string",
"identifier": true
},
"address" : {
"kind" : "string",
"identifier" : false
},
"address2" : {
"kind" : "string",
"identifier" : false
},
"instruction" : {
"kind" : "string",
"identifier" : true
},
"function" : {
"kind" : "string",
"identifier" : false
},
"world_id": {
"kind": "string",
"identifier": false
},
"subsystem": {
"kind": "string",
"identifier": true
},
"function" : {
"kind" : "string",
"identifier" : false
},
"opid" : {
"kind" : "string",
"identifier" : true
}
},
"sample": [
{
"line": "2015-08-19T01:14:49.354Z cpu12:35043)etherswitch: ESVsiGetParamPortCfg:424: : not found"
},
{
"line" : "2017-01-08T21:37:56.787Z cpu25:213633)bnx2i:vmhba34:0000:05:00.3: bnx2i_indicate_async_mesg:3080 indicating async message on cid 45"
},
{
"line" : "2017-01-08T00:04:19.598Z cpu4:35586 opID=39afd4b2)World: 15544: VC opID 5f249531 maps to vmkernel opID 39afd4b2"
},
{
"line" : "2017-05-01T16:20:51.349Z cpu22:35341)0x4123a835dab0:[0x41801caa4f74]TimerRecomputeInterrupt@vmkernel#nover+0xc8 stack: 0x4123a835daf0"
}
]
}
}