This repository was archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcommon.go
141 lines (120 loc) · 3.08 KB
/
common.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
package libvirtcollector
import (
"bytes"
"strings"
"time"
wrapper "github.com/intelsdi-x/snap-plugin-collector-libvirt/libvirt"
"github.com/intelsdi-x/snap-plugin-lib-go/v1/plugin"
libvirt "github.com/sandlbn/libvirt-go"
)
func getLibvirtURI(cfg plugin.Config) string {
uri, err := cfg.GetString("uri")
if err != nil {
return defaultURI
}
return uri
}
func createMetric(ns plugin.Namespace) plugin.Metric {
metricType := plugin.Metric{
Namespace: ns,
Version: Version,
}
return metricType
}
func filterNamespace(metricType string, mts []plugin.Metric) (int, []plugin.Metric) {
filteredMetrics := []plugin.Metric{}
for _, m := range mts {
if m.Namespace.Strings()[nsMetricPostion] == metricType {
filteredMetrics = append(filteredMetrics, m)
}
}
filteredMetrics = removeDuplicates(filteredMetrics)
return len(filteredMetrics), filteredMetrics
}
func merge(maps ...map[string]string) (output map[string]string) {
size := len(maps)
if size == 0 {
return output
}
if size == 1 {
return maps[0]
}
output = make(map[string]string)
for _, m := range maps {
for k, v := range m {
output[k] = v
}
}
return output
}
func createNamespace(mt plugin.Metric, value interface{}, ns plugin.Namespace, meta map[string]string) plugin.Metric {
return plugin.Metric{
Timestamp: time.Now(),
Namespace: ns,
Data: value,
Tags: merge(mt.Tags, meta),
Config: mt.Config,
Version: Version,
}
}
func copyNamespace(mt plugin.Metric) []plugin.NamespaceElement {
ns := make([]plugin.NamespaceElement, len(mt.Namespace))
copy(ns, mt.Namespace)
return ns
}
func copyNamespaceElements(ns []plugin.NamespaceElement) []plugin.NamespaceElement {
newNs := make([]plugin.NamespaceElement, len(ns))
copy(newNs, ns)
return newNs
}
func removeDuplicates(elements []plugin.Metric) []plugin.Metric {
// Use map to record duplicates as we find them.
encountered := map[string]bool{}
result := []plugin.Metric{}
for _, v := range elements {
ns := strings.Join(v.Namespace.Strings(), "/")
if !encountered[ns] {
encountered[ns] = true
result = append(result, v)
}
}
// Return the new slice.
return result
}
func metricStored(elements []plugin.Metric, newNamespace []plugin.NamespaceElement) bool {
for _, v := range elements {
ns := strings.Join(v.Namespace.Strings(), "")
if ns == joinNamespaceElements(newNamespace) {
return true
}
}
return false
}
func joinNamespaceElements(ns []plugin.NamespaceElement) string {
var buffer bytes.Buffer
for _, v := range ns {
buffer.WriteString(v.Value)
}
return buffer.String()
}
func contains(s []string, e string) bool {
for _, a := range s {
if a == e {
return true
}
}
return false
}
func getInstances(conn libvirt.VirConnection, elements []plugin.Metric) ([]libvirt.VirDomain, error) {
instances := []string{}
for _, v := range elements {
domain := v.Namespace.Strings()[nsDomainPosition]
if domain == "*" {
return wrapper.GetInstances(conn)
}
if !contains(instances, domain) {
instances = append(instances, domain)
}
}
return wrapper.GetRequestedInstances(conn, instances)
}