-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvmware_guest_log.json
50 lines (50 loc) · 1.92 KB
/
vmware_guest_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
{
"vmw_guestlog" : {
"title" : "esx vmware.log",
"description" : "vmware's vmware.log format that requires levels",
"url" : "",
"regex" : {
"std" : {
"pattern" : "^(?<timestamp>\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(\\.\\d{3})?Z)(\\[\\+\\d+\\.\\d+\\])?\\|\\s+(?<processname>[0-9a-zA-Z\\-\\#]+)(\\s+)?\\|\\s+(?<level>\\w{1})(?<errornumber>\\d+)[+:]\\s+((?<reporter>[\\w\\d\\s\\-\\_]+)(\\s+)?:)?(?<body>.*)$"
},
"v70" : {
"pattern" : "^(?<timestamp>\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z)\\|\\s*(?<processname>[\\w\\-]+)\\s*\\|\\s*\\|\\s+(?<level>\\w{1})(?<errornumber>\\d+)[+:]\\s+((?<reporter>[\\w\\d\\s\\-\\_]+)(\\s+)?:)?(?<body>.*)$"
}
},
"level-field" : "level",
"level" : { "warning" : "(?:W|A)", "error" : "E" },
"value" : {
"processname" : {
"kind" : "string",
"identifier" : true
},
"errornumber" : {
"kind" : "integer",
"identifier" : true
},
"reporter" : {
"kind" : "string",
"identifier" : true
},
"object" : {
"kind" : "string",
"identifier" : true
},
"vcpu" : {
"kind" : "string",
"identifier" : true
}
},
"sample" : [
{
"line" : "2015-05-15T23:30:38.045Z| vmx| I120: VLANCE: send cluster threshold is 80, size = 2 recalcInterval is 2 ticks"
},
{
"line" : "2015-05-15T23:30:49.873Z| vcpu-0| I120: SVGA enabling SVGA"
},
{
"line" : "2021-08-27T12:41:03.875Z| vcpu-1| | I005: SVGA: Unregistering MemSpace at 0xe8000000(0xe8000000) and 0xfe000000(0xfe000000)"
}
]
}
}