-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvmauthd.json
42 lines (41 loc) · 1.18 KB
/
vmauthd.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
{
"vmauthd_log" : {
"title" : "vmware vmauthd",
"description" : "vmware's vmauthd log format",
"url" : "",
"regex" : {
"std" : {
"pattern" : "^(?<timestamp>\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z) (?<system>\\w+)\\[(?<psid>\\d+)\\]: (?<subsystem>\\S+)\\| (?<level>\\w)(?<errornumber>\\d+): (?<body>.*)$"
}
},
"level-field" : "level",
"level" : {
"warning" : "W",
"error" : "E",
"info" : "I"
},
"value" : {
"system" : {
"kind" : "string",
"identifier" : true
},
"psid" : {
"kind" : "integer",
"identifier" : true
},
"subsystem" : {
"kind" : "string",
"identifier" : true
},
"errornumber" : {
"kind" : "integer",
"identifier" : true
}
},
"sample" : [
{
"line" : "2015-05-13T14:07:56Z vmauthd[22040702]: vthread-3| I120: PREF Failed to load user preferences."
}
]
}
}