-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvmksummary.json
37 lines (36 loc) · 1.18 KB
/
vmksummary.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
{
"vmksummary_log" : {
"title" : "vmware vmksummary",
"description" : "vmware's vmksummary log format",
"url" : "",
"regex" : {
"std" : {
"pattern" : "^(?<timestamp>\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z) (?<eventtype>\\w+): \\w+ (?:(?<duration>\\d+d\\d+h\\d+m\\d+s), (?<vmcount>\\d+) VMs\\; |(?<body>.*))$"
}
},
"level-field" : "body",
"level" : {
"warning" : "off",
"error" : "down"
},
"value" : {
"eventtype" : {
"kind" : "string",
"identifier" : true
},
"duration" : {
"kind" : "string",
"identifier" : false
},
"vmcount" : {
"kind" : "integer",
"identifier" : true
}
},
"sample" : [
{
"line" : "2015-02-06T10:00:02Z heartbeat: up 0d18h59m40s, 2 VMs; [[34046 hostd-worker 52600kB] [89781 vmx 2713128kB] [88449 vmx 5683884kB]] [[35698 sfcb-vmware_raw 7%max] [35413 sfcb-pycim 20%max] [35419 sfcb-vmware_bas 29%max]]"
}
]
}
}