mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
doc(nomad): adjust sections about nomad_sd_config's server
test(nomad): extend TestConfiguredService with more valid/invalid servers configs fixes https://github.com/prometheus/prometheus/issues/12306 Signed-off-by: machine424 <ayoubmrini424@gmail.com>
This commit is contained in:
parent
7f26371af8
commit
c9f3d9b47f
|
@ -127,19 +127,37 @@ func (m *SDMock) HandleServiceHashiCupsGet() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestConfiguredService(t *testing.T) {
|
func TestConfiguredService(t *testing.T) {
|
||||||
conf := &SDConfig{
|
testCases := []struct {
|
||||||
Server: "http://localhost:4646",
|
name string
|
||||||
|
server string
|
||||||
|
acceptedURL bool
|
||||||
|
}{
|
||||||
|
{"invalid hostname URL", "http://foo.bar:4646", true},
|
||||||
|
{"invalid even though accepted by parsing", "foo.bar:4646", true},
|
||||||
|
{"valid address URL", "http://172.30.29.23:4646", true},
|
||||||
|
{"invalid URL", "172.30.29.23:4646", false},
|
||||||
}
|
}
|
||||||
|
|
||||||
reg := prometheus.NewRegistry()
|
for _, tc := range testCases {
|
||||||
refreshMetrics := discovery.NewRefreshMetrics(reg)
|
t.Run(tc.name, func(t *testing.T) {
|
||||||
metrics := conf.NewDiscovererMetrics(reg, refreshMetrics)
|
conf := &SDConfig{
|
||||||
require.NoError(t, metrics.Register())
|
Server: tc.server,
|
||||||
|
}
|
||||||
|
|
||||||
_, err := NewDiscovery(conf, nil, metrics)
|
reg := prometheus.NewRegistry()
|
||||||
require.NoError(t, err)
|
refreshMetrics := discovery.NewRefreshMetrics(reg)
|
||||||
|
metrics := conf.NewDiscovererMetrics(reg, refreshMetrics)
|
||||||
|
require.NoError(t, metrics.Register())
|
||||||
|
defer metrics.Unregister()
|
||||||
|
|
||||||
metrics.Unregister()
|
_, err := NewDiscovery(conf, nil, metrics)
|
||||||
|
if tc.acceptedURL {
|
||||||
|
require.NoError(t, err)
|
||||||
|
} else {
|
||||||
|
require.Error(t, err)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestNomadSDRefresh(t *testing.T) {
|
func TestNomadSDRefresh(t *testing.T) {
|
||||||
|
|
|
@ -2130,7 +2130,8 @@ The following meta labels are available on targets during [relabeling](#relabel_
|
||||||
[ namespace: <string> | default = default ]
|
[ namespace: <string> | default = default ]
|
||||||
[ refresh_interval: <duration> | default = 60s ]
|
[ refresh_interval: <duration> | default = 60s ]
|
||||||
[ region: <string> | default = global ]
|
[ region: <string> | default = global ]
|
||||||
[ server: <host> ]
|
# The URL to connect to the API.
|
||||||
|
[ server: <string> ]
|
||||||
[ tag_separator: <string> | default = ,]
|
[ tag_separator: <string> | default = ,]
|
||||||
|
|
||||||
# HTTP client settings, including authentication methods (such as basic auth and
|
# HTTP client settings, including authentication methods (such as basic auth and
|
||||||
|
|
Loading…
Reference in a new issue