-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhostd_fdm_log.json
85 lines (85 loc) · 2.9 KB
/
hostd_fdm_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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"hostd_fdm_log" : {
"title" : "vmware hostd",
"description" : "vmware's hostd log format",
"url" : "",
"regex" : {
"std" : {
"pattern" : "^(?<timestamp>\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z) \\[(?<threaduid>[0-9A-F]+) (?<level>\\w+) \\'(?<processname>.+)(.+)?\\'( opID=(?<opid>\\S+))?( user=(?<user>\\S+))?\\](?<body>.*)$"
},
"allin1wvmx" : {
"pattern" : "^(?<timestamp>\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{3}Z) (?<level>\\w+) (?<processname>[-\\w]+)\\[(?<processid>[A-F0-9]+)\\] \\[(?<originatorid>[\\w\\d@]+) sub=(?<subsystem>(.*(?<vmxpath>\\/vmfs\\/volumes\\/.*\\.vmx)|\\S+))(\\s+)?(?:opID=(?<opid>[A-Za-z0-9@\\-\\:]+))?( user=(?<username>\\S+))?\\] (?:\\[(?<function>\\w+)::(?<method>\\w+)\\])?(?<body>.*)$"
}
},
"level-field" : "level",
"opid-field" : "opid",
"level" : {
"warning" : "warning",
"error" : "error",
"info" : "info",
"debug" : "verbose"
},
"value" : {
"username" : {
"kind" : "string",
"identifier" : true
},
"function" : {
"kind" : "string",
"identifier" : true
},
"method" : {
"kind" : "string",
"identifier" : true
},
"threaduid" : {
"kind" : "string",
"identifier" : true
},
"processname": {
"kind" : "string",
"identifier" : true
},
"originid" : {
"kind" : "string",
"identifier" : true
},
"subsystem" : {
"kind" : "string",
"identifier" : true
},
"user" : {
"kind" : "string",
"identifier" : true
},
"opid" : {
"kind" : "string",
"identifier" : true
},
"vmsub" : {
"kind" : "string",
"identifier" : true
},
"vmxpath" : {
"kind" : "string",
"identifier" : true
},
"migrationid" : {
"kind" : "string",
"identifier" : true
},
"processid" : {
"kind" : "string",
"identifier" : true
}
},
"sample" : [
{
"line" : "2015-11-19T10:48:09.776Z [2C840B70 verbose 'SoapAdapter'] Responded to service state request"
},
{
"line" : "2016-09-12T16:28:38.444Z info hostd[4EAE0B70] [Originator@6876 sub=VsanPluginMgr opID=7ee9b502 user=vpxuser] Disk cache is valid, no need to refresh."
}
]
}
}