-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvdm_log.json
50 lines (50 loc) · 1.78 KB
/
vdm_log.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
{
"vdm_log" : {
"title" : "VDM System Log",
"description" : "A guess at a vmware horizon view VDM log",
"url" : "",
"regex" : {
"std" : {
"pattern" : "^(?<timestamp>\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3})-\\d+:\\d+ (?<level>\\w+)\\s+\\((?<opid>[A-F0-9\\-]+)\\)\\s+<(?:(?<operation>[\\:\\.\\w\\d\\s\\-\\_\\(\\)]+)|(?<guestoperation>[\\:\\.\\w\\d\\s\\-\\_\\(\\)]+)-(?<guestpath>\\/[\\/\\w\\d\\s\\-\\_\\(\\)]+))>\\s+\\[(?<function>\\S+)\\]\\s+(?<body>.*)$"
}
},
"level-field" : "level",
"level": {
"warning" : "WARN",
"debug" : "DEBUG",
"info" : "INFO",
"error" : "ERROR"
},
"opid-field" : "opid",
"value" : {
"operation" : {
"kind" : "string",
"identifier" : true
},
"opid" : {
"kind" : "string",
"identifier" : true
},
"guestoperation" : {
"kind" : "string",
"identifier" : true
},
"guestpath" : {
"kind" : "string",
"identifier" : true
},
"function" : {
"kind" : "string",
"identifier" : true
}
},
"sample" : [
{
"line" : "2017-03-29T13:30:28.732-05:00 DEBUG (08C0-179C) <MessageFrameWorkDispatch> [MessageFrameWork] ValidateCertificateChain ok=1, msecs=0"
},
{
"line" : "2017-03-29T13:30:28.732-05:00 DEBUG (08C0-1698) <PendingOperation-/Path/vm/Guests/guests/guests1-Cloning> [CertMatchingTrustManager] invalid certificate"
}
]
}
}