forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
host.go
182 lines (146 loc) · 4.12 KB
/
host.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
package host
import (
"context"
"fmt"
"net/url"
"strings"
"github.com/pkg/errors"
"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/vmware/govmomi"
"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", "host", New); err != nil {
panic(err)
}
}
type MetricSet struct {
mb.BaseMetricSet
HostURL *url.URL
Insecure bool
}
func New(base mb.BaseMetricSet) (mb.MetricSet, error) {
cfgwarn.Beta("The vsphere host metricset is beta")
config := struct {
Username string `config:"username"`
Password string `config:"password"`
Insecure bool `config:"insecure"`
}{}
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,
}, 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
// Create a view of HostSystem objects.
mgr := view.NewManager(c)
v, err := mgr.CreateContainerView(ctx, c.ServiceContent.RootFolder, []string{"HostSystem"}, true)
if err != nil {
return nil, err
}
defer v.Destroy(ctx)
// Retrieve summary property for all hosts.
var hst []mo.HostSystem
err = v.Retrieve(ctx, []string{"HostSystem"}, []string{"summary"}, &hst)
if err != nil {
return nil, err
}
for _, hs := range hst {
totalCPU := int64(hs.Summary.Hardware.CpuMhz) * int64(hs.Summary.Hardware.NumCpuCores)
freeCPU := int64(totalCPU) - int64(hs.Summary.QuickStats.OverallCpuUsage)
freeMemory := int64(hs.Summary.Hardware.MemorySize) - (int64(hs.Summary.QuickStats.OverallMemoryUsage) * 1024 * 1024)
event := common.MapStr{
"name": hs.Summary.Config.Name,
"cpu": common.MapStr{
"used": common.MapStr{
"mhz": hs.Summary.QuickStats.OverallCpuUsage,
},
"total": common.MapStr{
"mhz": totalCPU,
},
"free": common.MapStr{
"mhz": freeCPU,
},
},
"memory": common.MapStr{
"used": common.MapStr{
"bytes": (int64(hs.Summary.QuickStats.OverallMemoryUsage) * 1024 * 1024),
},
"total": common.MapStr{
"bytes": hs.Summary.Hardware.MemorySize,
},
"free": common.MapStr{
"bytes": freeMemory,
},
},
}
if hs.Summary.Host != nil {
networkNames, err := getNetworkNames(ctx, c, hs.Summary.Host.Reference())
if err != nil {
logp.Debug("vsphere", err.Error())
} else {
if len(networkNames) > 0 {
event["network_names"] = networkNames
}
}
}
events = append(events, event)
}
return events, nil
}
func getNetworkNames(ctx context.Context, c *vim25.Client, ref types.ManagedObjectReference) ([]string, error) {
var outputNetworkNames []string
pc := property.DefaultCollector(c)
var hs mo.HostSystem
err := pc.RetrieveOne(ctx, ref, []string{"network"}, &hs)
if err != nil {
return nil, fmt.Errorf("error retrieving host information: %v", err)
}
if len(hs.Network) == 0 {
return nil, errors.New("no networks found")
}
var networkRefs []types.ManagedObjectReference
for _, obj := range hs.Network {
if obj.Type == "Network" {
networkRefs = append(networkRefs, obj)
}
}
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 host: %v", err)
}
for _, net := range nets {
name := strings.Replace(net.Name, ".", "_", -1)
outputNetworkNames = append(outputNetworkNames, name)
}
return outputNetworkNames, nil
}