-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathesxupdate-log.json
34 lines (34 loc) · 1011 Bytes
/
esxupdate-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
{
"esxupdate_log" : {
"title" : "VMWare ESXUpdate Log",
"description" : "Log format used in /var/log/esxupdate.log",
"url" : "",
"regex" : {
"non-level" : {
"pattern" : "^(?<timestamp>\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z) (?<system>\\w+): (?<subsystem>[a-zA-Z0-9\\.]+): (?<level>[A-Z]+): (?<body>.*)$"
}
},
"level-field" : "level",
"level" : {
"error" : "ERROR",
"warning" : "WARNING",
"info" : "INFO",
"debug" : "DEBUG"
},
"value" : {
"system" : {
"kind" : "string",
"identifier" : true
},
"subsystem" : {
"kind" : "string",
"identifier" : true
}
},
"sample" : [
{
"line" : "2015-05-15T11:38:26Z esxupdate: root: INFO: Command = profile.setacceptance"
}
]
}
}