-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvmware_log.json
42 lines (42 loc) · 1.51 KB
/
vmware_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
{
"vmware_guest_log" : {
"title" : "esx vmware.log",
"description" : "vmware's vmware.log format",
"url" : "",
"regex" : {
"std" : {
"pattern" : "^(?<timestamp>\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z)\\|\\s+(?<processname>[0-9a-zA-Z\\-\\#]+)\\|\\s+(?<level>\\w{1})(?<errornumber>\\d+)[+:]\\s+(?:(?<object>\\S+):\\s+|(?<body>.*))$"
},
"alt" : {
"pattern" : "^(?<timestamp>\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z)\\|\\s+(?<processname>[0-9a-zA-Z\\-\\#]+)\\|\\s+(?:(?<object>\\S+):\\s+|(?<body>.*))$"
}
},
"level-field" : "level",
"level" : { "warning" : "(?:W|A)", "error" : "E" },
"value" : {
"processname" : {
"kind" : "string",
"identifier" : true
},
"errornumber" : {
"kind" : "integer",
"identifier" : true
},
"object" : {
"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" : "2015-09-10T14:12:00.982Z| vmx| NumVCPUs 8"
}
]
}
}