forked from influxdata/telegraf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
statefulset.go
45 lines (39 loc) · 1.16 KB
/
statefulset.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
package kube_inventory
import (
"context"
v1 "k8s.io/api/apps/v1"
"github.com/influxdata/telegraf"
)
func collectStatefulSets(ctx context.Context, acc telegraf.Accumulator, ki *KubernetesInventory) {
list, err := ki.client.getStatefulSets(ctx)
if err != nil {
acc.AddError(err)
return
}
for _, s := range list.Items {
ki.gatherStatefulSet(s, acc)
}
}
func (ki *KubernetesInventory) gatherStatefulSet(s v1.StatefulSet, acc telegraf.Accumulator) {
status := s.Status
fields := map[string]interface{}{
"created": s.GetCreationTimestamp().UnixNano(),
"generation": s.Generation,
"replicas": status.Replicas,
"replicas_current": status.CurrentReplicas,
"replicas_ready": status.ReadyReplicas,
"replicas_updated": status.UpdatedReplicas,
"spec_replicas": *s.Spec.Replicas,
"observed_generation": s.Status.ObservedGeneration,
}
tags := map[string]string{
"statefulset_name": s.Name,
"namespace": s.Namespace,
}
for key, val := range s.Spec.Selector.MatchLabels {
if ki.selectorFilter.Match(key) {
tags["selector_"+key] = val
}
}
acc.AddFields(statefulSetMeasurement, fields, tags)
}