-
Notifications
You must be signed in to change notification settings - Fork 3
/
vpxa_log.json
45 lines (45 loc) · 1.61 KB
/
vpxa_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
{
"vcenter_vpxa_log" : {
"title": "vCenter vpx agent log format",
"description": "Log format for the vpx agent on an ESXi host",
"url": "",
"regex": {
"std": {
"pattern": "^(?<timestamp>\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z) (?:(Section for VMware ESX, pid=\\d+, version=\\S+, build=\\d+, option=\\w+)|(?<level>\\w+) vpxa\\[(?<processid>[A-F0-9]+)\\] \\[(?<originatorid>[\\w\\d@]+) sub=(?<subsystem>\\S+)( opID=(?<operationid>[:A-Za-z0-9@\\-]+))?\\] (?:\\[(?<function>\\w+)\\])?(?<body>.*))$"
}
},
"level-field": "level",
"opid-field" : "operationid",
"value": {
"processname": {
"kind": "string",
"identifier": true
},
"processid" : {
"kind" : "string",
"identifier" : true
},
"subsystem": {
"kind": "string",
"identifier": true
},
"originatorid" : {
"kind" : "string",
"identifier" : true
},
"operationid" : {
"kind" : "string",
"identifier" : true
},
"function" : {
"kind" : "string",
"identifier" : true
}
},
"sample": [
{
"line" : "2016-05-31T19:10:10.081Z verbose vpxa[7F41BB70] [Originator@6876 sub=vpxaVmomi opID=HB-host-425@47907-3f55ed0b-f8] [VpxaVmomi] SetStatusDone was called with syncGenNo (47907)"
}
]
}
}