This repository has been archived by the owner on Apr 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
scrapeconfig.go
138 lines (119 loc) · 3.88 KB
/
scrapeconfig.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
package config
import "github.com/caos/orbos/internal/operator/boom/application/applications/prometheus/helm"
func getScrapeConfigs() []*helm.AdditionalScrapeConfig {
adconfigs := make([]*helm.AdditionalScrapeConfig, 0)
adconfigs = append(adconfigs, getNodes())
adconfigs = append(adconfigs, getCadvisor())
adconfigs = append(adconfigs, getEtcd())
return adconfigs
}
func getNodes() *helm.AdditionalScrapeConfig {
relabelings := make([]*helm.RelabelConfig, 0)
relabeling := &helm.RelabelConfig{
Action: "labelmap",
Regex: "__meta_kubernetes_node_label_(.+)",
}
relabelings = append(relabelings, relabeling)
relabeling = &helm.RelabelConfig{
TargetLabel: "__address__",
Replacement: "kubernetes.default.svc:443",
}
relabelings = append(relabelings, relabeling)
relabeling = &helm.RelabelConfig{
SourceLabels: []string{"__meta_kubernetes_node_name"},
Regex: "(.+)",
TargetLabel: "__metrics_path__",
Replacement: "/api/v1/nodes/${1}/proxy/metrics",
}
relabelings = append(relabelings, relabeling)
relabeling = &helm.RelabelConfig{
TargetLabel: "metrics_path",
Replacement: "/metrics",
}
relabelings = append(relabelings, relabeling)
sdconfig := &helm.KubernetesSdConfig{
Role: "node",
}
return &helm.AdditionalScrapeConfig{
JobName: "kubernetes-nodes",
Scheme: "https",
KubernetesSdConfigs: []*helm.KubernetesSdConfig{sdconfig},
BearerTokenFile: "/var/run/secrets/kubernetes.io/serviceaccount/token",
TLSConfig: &helm.TLSConfig{
CaFile: "/var/run/secrets/kubernetes.io/serviceaccount/ca.crt",
},
RelabelConfigs: relabelings,
}
}
func getCadvisor() *helm.AdditionalScrapeConfig {
relabelings := make([]*helm.RelabelConfig, 0)
relabeling := &helm.RelabelConfig{
Action: "labelmap",
Regex: "__meta_kubernetes_node_label_(.+)",
}
relabelings = append(relabelings, relabeling)
relabeling = &helm.RelabelConfig{
TargetLabel: "__address__",
Replacement: "kubernetes.default.svc:443",
}
relabelings = append(relabelings, relabeling)
relabeling = &helm.RelabelConfig{
SourceLabels: []string{"__meta_kubernetes_node_name"},
Regex: "(.+)",
TargetLabel: "__metrics_path__",
Replacement: "/api/v1/nodes/${1}/proxy/metrics/cadvisor",
}
relabelings = append(relabelings, relabeling)
relabeling = &helm.RelabelConfig{
TargetLabel: "metrics_path",
Replacement: "/metrics/cadvisor",
}
relabelings = append(relabelings, relabeling)
sdconfig := &helm.KubernetesSdConfig{
Role: "node",
}
return &helm.AdditionalScrapeConfig{
JobName: "kubelet",
Scheme: "https",
KubernetesSdConfigs: []*helm.KubernetesSdConfig{sdconfig},
BearerTokenFile: "/var/run/secrets/kubernetes.io/serviceaccount/token",
TLSConfig: &helm.TLSConfig{
CaFile: "/var/run/secrets/kubernetes.io/serviceaccount/ca.crt",
},
RelabelConfigs: relabelings,
}
}
func getEtcd() *helm.AdditionalScrapeConfig {
sdconfig := &helm.KubernetesSdConfig{
Role: "node",
}
relabelings := []*helm.RelabelConfig{{
Action: "replace",
SourceLabels: []string{"__address__"},
TargetLabel: "__address__",
Regex: "(.*):.*",
Replacement: "${1}:2381",
}, {
Action: "keep",
Regex: "true",
SourceLabels: []string{"__meta_kubernetes_node_labelpresent_node_role_kubernetes_io_master"},
}}
metricRelabelConfigs := []*helm.RelabelConfig{{
Action: "keep",
Regex: "etcd_server_has_leader",
SourceLabels: []string{"__name__"},
}, {
Action: "replace",
SourceLabels: []string{"__name__"},
TargetLabel: "__name__",
Regex: "etcd_server_has_leader",
Replacement: "dist_etcd_server_has_leader",
}}
return &helm.AdditionalScrapeConfig{
JobName: "caos_remote_etcd",
Scheme: "http",
KubernetesSdConfigs: []*helm.KubernetesSdConfig{sdconfig},
RelabelConfigs: relabelings,
MetricRelabelConfigs: metricRelabelConfigs,
}
}