-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
virtualmachine.go
304 lines (258 loc) · 8.66 KB
/
virtualmachine.go
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
// Licensed to Elasticsearch B.V. under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. Elasticsearch B.V. licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package virtualmachine
import (
"context"
"fmt"
"strings"
"github.com/elastic/beats/v7/libbeat/common"
"github.com/elastic/beats/v7/metricbeat/mb"
"github.com/elastic/beats/v7/metricbeat/module/vsphere"
"github.com/pkg/errors"
"github.com/vmware/govmomi"
"github.com/vmware/govmomi/object"
"github.com/vmware/govmomi/property"
"github.com/vmware/govmomi/view"
"github.com/vmware/govmomi/vim25"
"github.com/vmware/govmomi/vim25/mo"
"github.com/vmware/govmomi/vim25/types"
)
func init() {
mb.Registry.MustAddMetricSet("vsphere", "virtualmachine", New,
mb.WithHostParser(vsphere.HostParser),
mb.DefaultMetricSet(),
)
}
// MetricSet type defines all fields of the MetricSet.
type MetricSet struct {
*vsphere.MetricSet
GetCustomFields bool
}
// New creates a new instance of the MetricSet.
func New(base mb.BaseMetricSet) (mb.MetricSet, error) {
ms, err := vsphere.NewMetricSet(base)
if err != nil {
return nil, err
}
config := struct {
GetCustomFields bool `config:"get_custom_fields"`
}{
GetCustomFields: false,
}
if err := base.Module().UnpackConfig(&config); err != nil {
return nil, err
}
return &MetricSet{
MetricSet: ms,
GetCustomFields: config.GetCustomFields,
}, nil
}
// Fetch methods implements the data gathering and data conversion to the right
// format. It publishes the event which is then forwarded to the output. In case
// of an error set the Error field of mb.Event or simply call report.Error().
func (m *MetricSet) Fetch(ctx context.Context, reporter mb.ReporterV2) error {
ctx, cancel := context.WithCancel(ctx)
defer cancel()
client, err := govmomi.NewClient(ctx, m.HostURL, m.Insecure)
if err != nil {
return errors.Wrap(err, "error in NewClient")
}
defer func() {
if err := client.Logout(ctx); err != nil {
m.Logger().Debug(errors.Wrap(err, "error trying to logout from vshphere"))
}
}()
c := client.Client
// Get custom fields (attributes) names if get_custom_fields is true.
customFieldsMap := make(map[int32]string)
if m.GetCustomFields {
var err error
customFieldsMap, err = setCustomFieldsMap(ctx, c)
if err != nil {
return errors.Wrap(err, "error in setCustomFieldsMap")
}
}
// Create view of VirtualMachine objects
mgr := view.NewManager(c)
v, err := mgr.CreateContainerView(ctx, c.ServiceContent.RootFolder, []string{"VirtualMachine"}, true)
if err != nil {
return errors.Wrap(err, "error in CreateContainerView")
}
defer func() {
if err := v.Destroy(ctx); err != nil {
m.Logger().Debug(errors.Wrap(err, "error trying to destroy view from vshphere"))
}
}()
// Retrieve summary property for all machines
var vmt []mo.VirtualMachine
err = v.Retrieve(ctx, []string{"VirtualMachine"}, []string{"summary"}, &vmt)
if err != nil {
return errors.Wrap(err, "error in Retrieve")
}
for _, vm := range vmt {
usedMemory := int64(vm.Summary.QuickStats.GuestMemoryUsage) * 1024 * 1024
usedCPU := vm.Summary.QuickStats.OverallCpuUsage
event := common.MapStr{
"name": vm.Summary.Config.Name,
"os": vm.Summary.Config.GuestFullName,
"cpu": common.MapStr{
"used": common.MapStr{
"mhz": usedCPU,
},
},
"memory": common.MapStr{
"used": common.MapStr{
"guest": common.MapStr{
"bytes": usedMemory,
},
"host": common.MapStr{
"bytes": int64(vm.Summary.QuickStats.HostMemoryUsage) * 1024 * 1024,
},
},
},
}
totalCPU := vm.Summary.Config.CpuReservation
if totalCPU > 0 {
freeCPU := totalCPU - usedCPU
// Avoid negative values if reported used CPU is slightly over total configured.
if freeCPU < 0 {
freeCPU = 0
}
event.Put("cpu.total.mhz", totalCPU)
event.Put("cpu.free.mhz", freeCPU)
}
totalMemory := int64(vm.Summary.Config.MemorySizeMB) * 1024 * 1024
if totalMemory > 0 {
freeMemory := totalMemory - usedMemory
// Avoid negative values if reported used memory is slightly over total configured.
if freeMemory < 0 {
freeMemory = 0
}
event.Put("memory.total.guest.bytes", totalMemory)
event.Put("memory.free.guest.bytes", freeMemory)
}
if host := vm.Summary.Runtime.Host; host != nil {
event["host.id"] = host.Value
hostSystem, err := getHostSystem(ctx, c, host.Reference())
if err == nil {
event["host.hostname"] = hostSystem.Summary.Config.Name
} else {
m.Logger().Debug(err.Error())
}
} else {
m.Logger().Debug("'Host', 'Runtime' or 'Summary' data not found. This is either a parsing error " +
"from vsphere library, an error trying to reach host/guest or incomplete information returned " +
"from host/guest")
}
// Get custom fields (attributes) values if get_custom_fields is true.
if m.GetCustomFields && vm.Summary.CustomValue != nil {
customFields := getCustomFields(vm.Summary.CustomValue, customFieldsMap)
if len(customFields) > 0 {
event["custom_fields"] = customFields
}
} else {
m.Logger().Debug("custom fields not activated or custom values not found/parse in Summary data. This " +
"is either a parsing error from vsphere library, an error trying to reach host/guest or incomplete " +
"information returned from host/guest")
}
if vm.Summary.Vm != nil {
networkNames, err := getNetworkNames(ctx, c, vm.Summary.Vm.Reference())
if err != nil {
m.Logger().Debug(err.Error())
} else {
if len(networkNames) > 0 {
event["network_names"] = networkNames
}
}
}
reporter.Event(mb.Event{
MetricSetFields: event,
})
}
return nil
}
func getCustomFields(customFields []types.BaseCustomFieldValue, customFieldsMap map[int32]string) common.MapStr {
outputFields := common.MapStr{}
for _, v := range customFields {
customFieldString := v.(*types.CustomFieldStringValue)
key, ok := customFieldsMap[v.GetCustomFieldValue().Key]
if ok {
// If key has '.', is replaced with '_' to be compatible with ES2.x.
fmtKey := strings.Replace(key, ".", "_", -1)
outputFields.Put(fmtKey, customFieldString.Value)
}
}
return outputFields
}
func getNetworkNames(ctx context.Context, c *vim25.Client, ref types.ManagedObjectReference) ([]string, error) {
ctx, cancel := context.WithCancel(ctx)
defer cancel()
var outputNetworkNames []string
pc := property.DefaultCollector(c)
var vm mo.VirtualMachine
err := pc.RetrieveOne(ctx, ref, []string{"network"}, &vm)
if err != nil {
return nil, fmt.Errorf("error retrieving virtual machine information: %v", err)
}
if len(vm.Network) == 0 {
return nil, errors.New("no networks found")
}
var networkRefs []types.ManagedObjectReference
for _, obj := range vm.Network {
if obj.Type == "Network" {
networkRefs = append(networkRefs, obj)
}
}
// If only "Distributed port group" was found, for example.
if len(networkRefs) == 0 {
return nil, errors.New("no networks found")
}
var nets []mo.Network
err = pc.Retrieve(ctx, networkRefs, []string{"name"}, &nets)
if err != nil {
return nil, fmt.Errorf("error retrieving network from virtual machine: %v", err)
}
for _, net := range nets {
name := strings.Replace(net.Name, ".", "_", -1)
outputNetworkNames = append(outputNetworkNames, name)
}
return outputNetworkNames, nil
}
func setCustomFieldsMap(ctx context.Context, client *vim25.Client) (map[int32]string, error) {
customFieldsMap := make(map[int32]string)
customFieldsManager, err := object.GetCustomFieldsManager(client)
if err != nil {
return nil, errors.Wrap(err, "failed to get custom fields manager")
}
field, err := customFieldsManager.Field(ctx)
if err != nil {
return nil, errors.Wrap(err, "failed to get custom fields")
}
for _, def := range field {
customFieldsMap[def.Key] = def.Name
}
return customFieldsMap, nil
}
func getHostSystem(ctx context.Context, c *vim25.Client, ref types.ManagedObjectReference) (*mo.HostSystem, error) {
pc := property.DefaultCollector(c)
var hs mo.HostSystem
err := pc.RetrieveOne(ctx, ref, []string{"summary"}, &hs)
if err != nil {
return nil, fmt.Errorf("error retrieving host information: %v", err)
}
return &hs, nil
}