-
Notifications
You must be signed in to change notification settings - Fork 538
Expand file tree
/
Copy pathconfig_gen_scrapeconfig_test.go
More file actions
257 lines (249 loc) · 8.82 KB
/
config_gen_scrapeconfig_test.go
File metadata and controls
257 lines (249 loc) · 8.82 KB
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
package configgen
import (
"fmt"
"os"
"testing"
"time"
promopv1 "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1"
promopv1alpha1 "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1alpha1"
commonConfig "github.com/prometheus/common/config"
"github.com/prometheus/common/model"
"github.com/prometheus/prometheus/config"
"github.com/prometheus/prometheus/discovery"
"github.com/prometheus/prometheus/discovery/targetgroup"
"github.com/prometheus/prometheus/model/relabel"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"gopkg.in/yaml.v3"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/utils/ptr"
"github.com/grafana/alloy/internal/component/common/kubernetes"
alloy_relabel "github.com/grafana/alloy/internal/component/common/relabel"
"github.com/grafana/alloy/internal/component/prometheus/operator"
"github.com/grafana/alloy/internal/util"
)
func TestGenerateStaticScrapeConfigConfig(t *testing.T) {
HTTPS := "HTTPS"
var falsePtr = ptr.To(false)
suite := []struct {
name string
m *promopv1alpha1.ScrapeConfig
ep promopv1alpha1.StaticConfig
expectedRelabels string
expectedMetricRelabels string
expected *config.ScrapeConfig
}{
{
name: "default",
m: &promopv1alpha1.ScrapeConfig{
ObjectMeta: metav1.ObjectMeta{
Namespace: "operator",
Name: "scrapeconfig",
},
},
ep: promopv1alpha1.StaticConfig{
Targets: []promopv1alpha1.Target{"foo", "bar"},
Labels: map[string]string{
"foo": "bar",
},
},
expectedRelabels: util.Untab(`
- target_label: __meta_foo
replacement: bar
- source_labels: [job]
target_label: __tmp_prometheus_job_name
- replacement: operator
target_label: __meta_kubernetes_scrapeconfig_namespace
- replacement: scrapeconfig
target_label: __meta_kubernetes_scrapeconfig_name
- source_labels: [__address__]
target_label: instance
`),
expected: &config.ScrapeConfig{
JobName: "scrapeConfig/operator/scrapeconfig/static/1",
HonorTimestamps: true,
ScrapeInterval: model.Duration(time.Hour),
ScrapeTimeout: model.Duration(42 * time.Second),
ScrapeProtocols: config.DefaultScrapeProtocols,
ScrapeFallbackProtocol: config.PrometheusText0_0_4,
AlwaysScrapeClassicHistograms: falsePtr,
ConvertClassicHistogramsToNHCB: falsePtr,
EnableCompression: true,
MetricsPath: "/metrics",
Scheme: "http",
MetricNameValidationScheme: model.LegacyValidation,
MetricNameEscapingScheme: model.UnderscoreEscaping.String(),
HTTPClientConfig: commonConfig.HTTPClientConfig{
FollowRedirects: true,
EnableHTTP2: true,
},
ServiceDiscoveryConfigs: discovery.Configs{
discovery.StaticConfig{
&targetgroup.Group{
Targets: []model.LabelSet{{model.AddressLabel: model.LabelValue("foo")}, {model.AddressLabel: model.LabelValue("bar")}},
Labels: model.LabelSet{"foo": "bar"},
Source: "scrapeConfig/operator/scrapeconfig/static/1",
},
},
},
},
},
{
name: "scrape protocols",
m: &promopv1alpha1.ScrapeConfig{
ObjectMeta: metav1.ObjectMeta{
Namespace: "operator",
Name: "scrapeconfig",
},
Spec: promopv1alpha1.ScrapeConfigSpec{
ScrapeProtocols: []promopv1.ScrapeProtocol{
promopv1.ScrapeProtocol(config.PrometheusProto),
promopv1.ScrapeProtocol(config.OpenMetricsText1_0_0),
},
},
},
ep: promopv1alpha1.StaticConfig{
Targets: []promopv1alpha1.Target{"foo", "bar"},
Labels: map[string]string{
"foo": "bar",
},
},
expectedRelabels: util.Untab(`
- target_label: __meta_foo
replacement: bar
- source_labels: [job]
target_label: __tmp_prometheus_job_name
- replacement: operator
target_label: __meta_kubernetes_scrapeconfig_namespace
- replacement: scrapeconfig
target_label: __meta_kubernetes_scrapeconfig_name
- source_labels: [__address__]
target_label: instance
`),
expected: &config.ScrapeConfig{
JobName: "scrapeConfig/operator/scrapeconfig/static/1",
HonorTimestamps: true,
ScrapeInterval: model.Duration(time.Hour),
ScrapeTimeout: model.Duration(42 * time.Second),
ScrapeProtocols: []config.ScrapeProtocol{config.PrometheusProto, config.OpenMetricsText1_0_0},
ScrapeFallbackProtocol: config.PrometheusText0_0_4,
AlwaysScrapeClassicHistograms: falsePtr,
EnableCompression: true,
MetricsPath: "/metrics",
Scheme: "http",
HTTPClientConfig: commonConfig.HTTPClientConfig{
FollowRedirects: true,
EnableHTTP2: true,
},
ServiceDiscoveryConfigs: discovery.Configs{
discovery.StaticConfig{
&targetgroup.Group{
Targets: []model.LabelSet{{model.AddressLabel: model.LabelValue("foo")}, {model.AddressLabel: model.LabelValue("bar")}},
Labels: model.LabelSet{"foo": "bar"},
Source: "scrapeConfig/operator/scrapeconfig/static/1",
},
},
},
ConvertClassicHistogramsToNHCB: ptr.To(false),
MetricNameValidationScheme: model.LegacyValidation,
MetricNameEscapingScheme: model.UnderscoreEscaping.String(),
},
},
{
name: "lowercase schema",
m: &promopv1alpha1.ScrapeConfig{
ObjectMeta: metav1.ObjectMeta{
Namespace: "operator",
Name: "scrapeconfig",
},
Spec: promopv1alpha1.ScrapeConfigSpec{
Scheme: &HTTPS,
},
},
ep: promopv1alpha1.StaticConfig{
Targets: []promopv1alpha1.Target{"foo", "bar"},
},
expectedRelabels: util.Untab(`
- target_label: __meta_foo
replacement: bar
- source_labels: [job]
target_label: __tmp_prometheus_job_name
- replacement: operator
target_label: __meta_kubernetes_scrapeconfig_namespace
- replacement: scrapeconfig
target_label: __meta_kubernetes_scrapeconfig_name
- source_labels: [__address__]
target_label: instance
`),
expected: &config.ScrapeConfig{
JobName: "scrapeConfig/operator/scrapeconfig/static/1",
HonorTimestamps: true,
ScrapeInterval: model.Duration(time.Hour),
ScrapeTimeout: model.Duration(42 * time.Second),
ScrapeProtocols: config.DefaultScrapeProtocols,
ScrapeFallbackProtocol: config.PrometheusText0_0_4,
AlwaysScrapeClassicHistograms: falsePtr,
ConvertClassicHistogramsToNHCB: falsePtr,
EnableCompression: true,
MetricsPath: "/metrics",
Scheme: "https",
MetricNameValidationScheme: model.LegacyValidation,
MetricNameEscapingScheme: model.UnderscoreEscaping.String(),
HTTPClientConfig: commonConfig.HTTPClientConfig{
FollowRedirects: true,
EnableHTTP2: true,
},
ServiceDiscoveryConfigs: discovery.Configs{
discovery.StaticConfig{
&targetgroup.Group{
Targets: []model.LabelSet{{model.AddressLabel: model.LabelValue("foo")}, {model.AddressLabel: model.LabelValue("bar")}},
Labels: model.LabelSet{},
Source: "scrapeConfig/operator/scrapeconfig/static/1",
},
},
},
},
},
}
for _, tc := range suite {
t.Run(tc.name, func(t *testing.T) {
cg := &ConfigGenerator{
Client: &kubernetes.ClientArguments{},
AdditionalRelabelConfigs: []*alloy_relabel.Config{
{TargetLabel: "__meta_foo", Replacement: "bar"},
},
ScrapeOptions: operator.ScrapeOptions{
DefaultScrapeInterval: time.Hour,
DefaultScrapeTimeout: 42 * time.Second,
ScrapeNativeHistograms: false,
},
}
cfg, err := cg.generateStaticScrapeConfigConfig(tc.m, tc.ep, 1)
require.NoError(t, err)
// check relabel configs separately
rlcs := cfg.RelabelConfigs
mrlcs := cfg.MetricRelabelConfigs
cfg.RelabelConfigs = nil
cfg.MetricRelabelConfigs = nil
require.NoError(t, err)
assert.Equal(t, tc.expected, cfg)
checkRelabels := func(actual []*relabel.Config, expected string) {
// load the expected relabel rules as yaml so we get the defaults put in there.
ex := []*relabel.Config{}
err := yaml.Unmarshal([]byte(expected), &ex)
require.NoError(t, err)
y, err := yaml.Marshal(ex)
require.NoError(t, err)
expected = string(y)
y, err = yaml.Marshal(actual)
require.NoError(t, err)
if !assert.YAMLEq(t, expected, string(y)) {
fmt.Fprintln(os.Stderr, string(y))
fmt.Fprintln(os.Stderr, expected)
}
}
checkRelabels(rlcs, tc.expectedRelabels)
checkRelabels(mrlcs, tc.expectedMetricRelabels)
})
}
}