-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhostd-probe.json
43 lines (43 loc) · 1.37 KB
/
hostd-probe.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
{
"hostd_probe" : {
"title" : "vmware hostd-probe",
"description" : "vmware's hostd-probe log format",
"url" : "",
"regex" : {
"std" : {
"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>\\S+)( opID=(?<opid>\\S+))?\\] (?<body>.*)$"
}
},
"level-field" : "level",
"level" : {
"warning" : "warning",
"error" : "error",
"info" : "info",
"debug" : "verbose"
},
"opid-field" : "opid",
"value" : {
"processname": {
"kind" : "string",
"identifier" : true
},
"originatorid" : {
"kind" : "string",
"identifier" : true
},
"subsystem" : {
"kind" : "string",
"identifier" : true
},
"processid" : {
"kind" : "string",
"identifier" : true
}
},
"sample" : [
{
"line" : "2017-09-19T08:15:01.499Z info hostd-probe[FFB08330] [Originator@6876 sub=Default] The bora/lib logs WILL be handled by VmaCore"
}
]
}
}