forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 1
/
virtualmachine.go
263 lines (212 loc) · 6.3 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
package virtualmachine
import (
"context"
"fmt"
"net/url"
"strings"
"sync"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/common/cfgwarn"
"github.com/elastic/beats/libbeat/logp"
"github.com/elastic/beats/metricbeat/mb"
"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() {
if err := mb.Registry.AddMetricSet("vsphere", "virtualmachine", New); err != nil {
panic(err)
}
}
type MetricSet struct {
mb.BaseMetricSet
HostURL *url.URL
Insecure bool
GetCustomFields bool
}
func New(base mb.BaseMetricSet) (mb.MetricSet, error) {
cfgwarn.Beta("The vsphere virtualmachine metricset is beta")
config := struct {
Username string `config:"username"`
Password string `config:"password"`
Insecure bool `config:"insecure"`
GetCustomFields bool `config:"get_custom_fields"`
}{
GetCustomFields: false,
}
if err := base.Module().UnpackConfig(&config); err != nil {
return nil, err
}
u, err := url.Parse(base.HostData().URI)
if err != nil {
return nil, err
}
u.User = url.UserPassword(config.Username, config.Password)
return &MetricSet{
BaseMetricSet: base,
HostURL: u,
Insecure: config.Insecure,
GetCustomFields: config.GetCustomFields,
}, nil
}
func (m *MetricSet) Fetch() ([]common.MapStr, error) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
var events []common.MapStr
client, err := govmomi.NewClient(ctx, m.HostURL, m.Insecure)
if err != nil {
return nil, err
}
defer client.Logout(ctx)
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 nil, err
}
}
// Create view of VirtualMachine objects
mgr := view.NewManager(c)
v, err := mgr.CreateContainerView(ctx, c.ServiceContent.RootFolder, []string{"VirtualMachine"}, true)
if err != nil {
return nil, err
}
defer v.Destroy(ctx)
// Retrieve summary property for all machines
var vmt []mo.VirtualMachine
err = v.Retrieve(ctx, []string{"VirtualMachine"}, []string{"summary"}, &vmt)
if err != nil {
return nil, err
}
var wg sync.WaitGroup
var mutex sync.Mutex
for _, vm := range vmt {
wg.Add(1)
go func(vm mo.VirtualMachine, c *vim25.Client) {
defer wg.Done()
freeMemory := (int64(vm.Summary.Config.MemorySizeMB) * 1024 * 1024) - (int64(vm.Summary.QuickStats.GuestMemoryUsage) * 1024 * 1024)
event := common.MapStr{
"host": vm.Summary.Runtime.Host.Value,
"name": vm.Summary.Config.Name,
"cpu": common.MapStr{
"used": common.MapStr{
"mhz": vm.Summary.QuickStats.OverallCpuUsage,
},
},
"memory": common.MapStr{
"used": common.MapStr{
"guest": common.MapStr{
"bytes": (int64(vm.Summary.QuickStats.GuestMemoryUsage) * 1024 * 1024),
},
"host": common.MapStr{
"bytes": (int64(vm.Summary.QuickStats.HostMemoryUsage) * 1024 * 1024),
},
},
"total": common.MapStr{
"guest": common.MapStr{
"bytes": (int64(vm.Summary.Config.MemorySizeMB) * 1024 * 1024),
},
},
"free": common.MapStr{
"guest": common.MapStr{
"bytes": freeMemory,
},
},
},
}
// Get custom fields (attributes) values if get_custom_fields is true.
if m.GetCustomFields {
customFields := getCustomFields(vm.Summary.CustomValue, customFieldsMap)
if len(customFields) > 0 {
event["custom_fields"] = customFields
}
}
if vm.Summary.Vm != nil {
networkNames, err := getNetworkNames(c, vm.Summary.Vm.Reference())
if err != nil {
logp.Debug("vsphere", err.Error())
} else {
if len(networkNames) > 0 {
event["network_names"] = networkNames
}
}
}
mutex.Lock()
events = append(events, event)
mutex.Unlock()
}(vm, c)
}
wg.Wait()
return events, 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(c *vim25.Client, ref types.ManagedObjectReference) ([]string, error) {
ctx, cancel := context.WithCancel(context.Background())
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")
} else {
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
}