forked from influxdata/telegraf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
service.go
76 lines (61 loc) · 1.73 KB
/
service.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
package kube_inventory
import (
"context"
"time"
"github.com/ericchiang/k8s/apis/core/v1"
"github.com/influxdata/telegraf"
)
func collectServices(ctx context.Context, acc telegraf.Accumulator, ki *KubernetesInventory) {
list, err := ki.client.getServices(ctx)
if err != nil {
acc.AddError(err)
return
}
for _, i := range list.Items {
if err = ki.gatherService(*i, acc); err != nil {
acc.AddError(err)
return
}
}
}
func (ki *KubernetesInventory) gatherService(s v1.Service, acc telegraf.Accumulator) error {
if s.Metadata.CreationTimestamp.GetSeconds() == 0 && s.Metadata.CreationTimestamp.GetNanos() == 0 {
return nil
}
fields := map[string]interface{}{
"created": time.Unix(s.Metadata.CreationTimestamp.GetSeconds(), int64(s.Metadata.CreationTimestamp.GetNanos())).UnixNano(),
"generation": s.Metadata.GetGeneration(),
}
tags := map[string]string{
"service_name": s.Metadata.GetName(),
"namespace": s.Metadata.GetNamespace(),
}
for key, val := range s.GetSpec().GetSelector() {
if ki.selectorFilter.Match(key) {
tags["selector_"+key] = val
}
}
var getPorts = func() {
for _, port := range s.GetSpec().GetPorts() {
fields["port"] = port.GetPort()
fields["target_port"] = port.GetTargetPort().GetIntVal()
tags["port_name"] = port.GetName()
tags["port_protocol"] = port.GetProtocol()
if s.GetSpec().GetType() == "ExternalName" {
tags["external_name"] = s.GetSpec().GetExternalName()
} else {
tags["cluster_ip"] = s.GetSpec().GetClusterIP()
}
acc.AddFields(serviceMeasurement, fields, tags)
}
}
if externIPs := s.GetSpec().GetExternalIPs(); externIPs != nil {
for _, ip := range externIPs {
tags["ip"] = ip
getPorts()
}
} else {
getPorts()
}
return nil
}