2015-01-21 11:07:45 -08:00
|
|
|
// Copyright 2013 The Prometheus Authors
|
2013-02-24 17:52:52 -08:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2018-02-01 01:55:07 -08:00
|
|
|
package scrape
|
2013-02-24 17:52:52 -08:00
|
|
|
|
|
|
|
import (
|
2015-07-22 08:48:22 -07:00
|
|
|
"crypto/tls"
|
|
|
|
"crypto/x509"
|
2015-08-22 00:47:57 -07:00
|
|
|
"fmt"
|
2013-04-26 08:26:52 -07:00
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
2016-03-01 05:49:57 -08:00
|
|
|
"net/url"
|
2022-04-27 02:24:36 -07:00
|
|
|
"os"
|
2015-04-20 03:24:25 -07:00
|
|
|
"strings"
|
2013-02-24 17:52:52 -08:00
|
|
|
"testing"
|
|
|
|
"time"
|
2013-06-25 05:02:27 -07:00
|
|
|
|
2020-10-22 02:00:08 -07:00
|
|
|
config_util "github.com/prometheus/common/config"
|
2015-08-20 08:18:46 -07:00
|
|
|
"github.com/prometheus/common/model"
|
2020-10-29 02:43:23 -07:00
|
|
|
"github.com/stretchr/testify/require"
|
2013-06-25 05:02:27 -07:00
|
|
|
|
2021-05-28 14:50:59 -07:00
|
|
|
"github.com/prometheus/prometheus/config"
|
|
|
|
"github.com/prometheus/prometheus/discovery/targetgroup"
|
2021-11-08 06:23:17 -08:00
|
|
|
"github.com/prometheus/prometheus/model/labels"
|
2013-02-24 17:52:52 -08:00
|
|
|
)
|
|
|
|
|
2016-05-26 14:24:49 -07:00
|
|
|
const (
|
2016-05-26 14:39:44 -07:00
|
|
|
caCertPath = "testdata/ca.cer"
|
2016-05-26 14:24:49 -07:00
|
|
|
)
|
|
|
|
|
2016-02-15 01:31:38 -08:00
|
|
|
func TestTargetLabels(t *testing.T) {
|
2016-12-29 00:27:30 -08:00
|
|
|
target := newTestTarget("example.com:80", 0, labels.FromStrings("job", "some_job", "foo", "bar"))
|
|
|
|
want := labels.FromStrings(model.JobLabel, "some_job", "foo", "bar")
|
2016-02-15 01:31:38 -08:00
|
|
|
got := target.Labels()
|
2020-10-29 02:43:23 -07:00
|
|
|
require.Equal(t, want, got)
|
2023-03-07 09:10:15 -08:00
|
|
|
i := 0
|
|
|
|
target.LabelsRange(func(l labels.Label) {
|
|
|
|
switch i {
|
|
|
|
case 0:
|
|
|
|
require.Equal(t, labels.Label{Name: "foo", Value: "bar"}, l)
|
|
|
|
case 1:
|
|
|
|
require.Equal(t, labels.Label{Name: model.JobLabel, Value: "some_job"}, l)
|
|
|
|
}
|
|
|
|
i++
|
|
|
|
})
|
|
|
|
require.Equal(t, 2, i)
|
2015-03-18 10:53:43 -07:00
|
|
|
}
|
|
|
|
|
2016-02-15 06:22:57 -08:00
|
|
|
func TestTargetOffset(t *testing.T) {
|
|
|
|
interval := 10 * time.Second
|
2019-03-12 03:46:15 -07:00
|
|
|
jitter := uint64(0)
|
2016-02-15 06:22:57 -08:00
|
|
|
|
|
|
|
offsets := make([]time.Duration, 10000)
|
|
|
|
|
|
|
|
// Calculate offsets for 10000 different targets.
|
|
|
|
for i := range offsets {
|
2016-12-29 00:27:30 -08:00
|
|
|
target := newTestTarget("example.com:80", 0, labels.FromStrings(
|
|
|
|
"label", fmt.Sprintf("%d", i),
|
|
|
|
))
|
2019-03-12 03:46:15 -07:00
|
|
|
offsets[i] = target.offset(interval, jitter)
|
2016-02-15 06:22:57 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Put the offsets into buckets and validate that they are all
|
|
|
|
// within bounds.
|
|
|
|
bucketSize := 1 * time.Second
|
|
|
|
buckets := make([]int, interval/bucketSize)
|
|
|
|
|
|
|
|
for _, offset := range offsets {
|
|
|
|
if offset < 0 || offset >= interval {
|
|
|
|
t.Fatalf("Offset %v out of bounds", offset)
|
|
|
|
}
|
|
|
|
|
|
|
|
bucket := offset / bucketSize
|
|
|
|
buckets[bucket]++
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Log(buckets)
|
|
|
|
|
2019-02-20 17:41:02 -08:00
|
|
|
// Calculate whether the number of targets per bucket
|
2016-02-15 06:22:57 -08:00
|
|
|
// does not differ more than a given tolerance.
|
|
|
|
avg := len(offsets) / len(buckets)
|
|
|
|
tolerance := 0.15
|
|
|
|
|
|
|
|
for _, bucket := range buckets {
|
|
|
|
diff := bucket - avg
|
|
|
|
if diff < 0 {
|
|
|
|
diff = -diff
|
|
|
|
}
|
|
|
|
|
|
|
|
if float64(diff)/float64(avg) > tolerance {
|
|
|
|
t.Fatalf("Bucket out of tolerance bounds")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-01 05:49:57 -08:00
|
|
|
func TestTargetURL(t *testing.T) {
|
|
|
|
params := url.Values{
|
|
|
|
"abc": []string{"foo", "bar", "baz"},
|
|
|
|
"xyz": []string{"hoo"},
|
|
|
|
}
|
2016-12-29 00:27:30 -08:00
|
|
|
labels := labels.FromMap(map[string]string{
|
2016-03-01 05:49:57 -08:00
|
|
|
model.AddressLabel: "example.com:1234",
|
|
|
|
model.SchemeLabel: "https",
|
|
|
|
model.MetricsPathLabel: "/metricz",
|
|
|
|
"__param_abc": "overwrite",
|
|
|
|
"__param_cde": "huu",
|
2016-12-29 00:27:30 -08:00
|
|
|
})
|
2016-03-01 05:49:57 -08:00
|
|
|
target := NewTarget(labels, labels, params)
|
|
|
|
|
|
|
|
// The reserved labels are concatenated into a full URL. The first value for each
|
|
|
|
// URL query parameter can be set/modified via labels as well.
|
|
|
|
expectedParams := url.Values{
|
|
|
|
"abc": []string{"overwrite", "bar", "baz"},
|
|
|
|
"cde": []string{"huu"},
|
|
|
|
"xyz": []string{"hoo"},
|
|
|
|
}
|
2020-10-22 02:00:08 -07:00
|
|
|
expectedURL := &url.URL{
|
2016-03-01 05:49:57 -08:00
|
|
|
Scheme: "https",
|
|
|
|
Host: "example.com:1234",
|
|
|
|
Path: "/metricz",
|
|
|
|
RawQuery: expectedParams.Encode(),
|
|
|
|
}
|
|
|
|
|
2020-10-29 02:43:23 -07:00
|
|
|
require.Equal(t, expectedURL, target.URL())
|
2016-03-01 05:49:57 -08:00
|
|
|
}
|
2015-07-05 12:25:45 -07:00
|
|
|
|
2016-12-29 00:27:30 -08:00
|
|
|
func newTestTarget(targetURL string, deadline time.Duration, lbls labels.Labels) *Target {
|
|
|
|
lb := labels.NewBuilder(lbls)
|
|
|
|
lb.Set(model.SchemeLabel, "http")
|
2017-10-09 08:57:05 -07:00
|
|
|
lb.Set(model.AddressLabel, strings.TrimPrefix(targetURL, "http://"))
|
2016-12-29 00:27:30 -08:00
|
|
|
lb.Set(model.MetricsPathLabel, "/metrics")
|
2016-02-12 06:43:27 -08:00
|
|
|
|
2022-05-30 07:37:16 -07:00
|
|
|
return &Target{labels: lb.Labels(labels.EmptyLabels())}
|
2015-04-20 03:24:25 -07:00
|
|
|
}
|
2015-07-22 08:48:22 -07:00
|
|
|
|
|
|
|
func TestNewHTTPBearerToken(t *testing.T) {
|
|
|
|
server := httptest.NewServer(
|
|
|
|
http.HandlerFunc(
|
|
|
|
func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
expected := "Bearer 1234"
|
|
|
|
received := r.Header.Get("Authorization")
|
|
|
|
if expected != received {
|
|
|
|
t.Fatalf("Authorization header was not set correctly: expected '%v', got '%v'", expected, received)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
|
|
|
)
|
|
|
|
defer server.Close()
|
|
|
|
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 12:01:34 -08:00
|
|
|
cfg := config_util.HTTPClientConfig{
|
2016-11-23 03:41:19 -08:00
|
|
|
BearerToken: "1234",
|
2015-07-22 08:48:22 -07:00
|
|
|
}
|
2021-09-26 14:16:12 -07:00
|
|
|
c, err := config_util.NewClientFromConfig(cfg, "test")
|
2015-07-22 08:48:22 -07:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
_, err = c.Get(server.URL)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNewHTTPBearerTokenFile(t *testing.T) {
|
|
|
|
server := httptest.NewServer(
|
|
|
|
http.HandlerFunc(
|
|
|
|
func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
expected := "Bearer 12345"
|
|
|
|
received := r.Header.Get("Authorization")
|
|
|
|
if expected != received {
|
|
|
|
t.Fatalf("Authorization header was not set correctly: expected '%v', got '%v'", expected, received)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
|
|
|
)
|
|
|
|
defer server.Close()
|
|
|
|
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 12:01:34 -08:00
|
|
|
cfg := config_util.HTTPClientConfig{
|
2015-07-22 08:48:22 -07:00
|
|
|
BearerTokenFile: "testdata/bearertoken.txt",
|
|
|
|
}
|
2021-09-26 14:16:12 -07:00
|
|
|
c, err := config_util.NewClientFromConfig(cfg, "test")
|
2015-07-22 08:48:22 -07:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
_, err = c.Get(server.URL)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-18 14:23:58 -07:00
|
|
|
func TestNewHTTPBasicAuth(t *testing.T) {
|
|
|
|
server := httptest.NewServer(
|
|
|
|
http.HandlerFunc(
|
|
|
|
func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
username, password, ok := r.BasicAuth()
|
|
|
|
if !(ok && username == "user" && password == "password123") {
|
|
|
|
t.Fatalf("Basic authorization header was not set correctly: expected '%v:%v', got '%v:%v'", "user", "password123", username, password)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
|
|
|
)
|
|
|
|
defer server.Close()
|
|
|
|
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 12:01:34 -08:00
|
|
|
cfg := config_util.HTTPClientConfig{
|
|
|
|
BasicAuth: &config_util.BasicAuth{
|
2015-07-18 14:23:58 -07:00
|
|
|
Username: "user",
|
|
|
|
Password: "password123",
|
|
|
|
},
|
|
|
|
}
|
2021-09-26 14:16:12 -07:00
|
|
|
c, err := config_util.NewClientFromConfig(cfg, "test")
|
2015-07-18 14:23:58 -07:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
_, err = c.Get(server.URL)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-22 08:48:22 -07:00
|
|
|
func TestNewHTTPCACert(t *testing.T) {
|
|
|
|
server := httptest.NewUnstartedServer(
|
|
|
|
http.HandlerFunc(
|
|
|
|
func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.Header().Set("Content-Type", `text/plain; version=0.0.4`)
|
|
|
|
w.Write([]byte{})
|
|
|
|
},
|
|
|
|
),
|
|
|
|
)
|
2016-05-26 14:24:49 -07:00
|
|
|
server.TLS = newTLSConfig("server", t)
|
2015-07-22 08:48:22 -07:00
|
|
|
server.StartTLS()
|
|
|
|
defer server.Close()
|
|
|
|
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 12:01:34 -08:00
|
|
|
cfg := config_util.HTTPClientConfig{
|
|
|
|
TLSConfig: config_util.TLSConfig{
|
2016-05-26 14:39:44 -07:00
|
|
|
CAFile: caCertPath,
|
2015-09-06 16:07:44 -07:00
|
|
|
},
|
2015-07-22 08:48:22 -07:00
|
|
|
}
|
2021-09-26 14:16:12 -07:00
|
|
|
c, err := config_util.NewClientFromConfig(cfg, "test")
|
2015-07-22 08:48:22 -07:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
_, err = c.Get(server.URL)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNewHTTPClientCert(t *testing.T) {
|
|
|
|
server := httptest.NewUnstartedServer(
|
|
|
|
http.HandlerFunc(
|
|
|
|
func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.Header().Set("Content-Type", `text/plain; version=0.0.4`)
|
|
|
|
w.Write([]byte{})
|
|
|
|
},
|
|
|
|
),
|
|
|
|
)
|
2016-05-26 14:24:49 -07:00
|
|
|
tlsConfig := newTLSConfig("server", t)
|
2015-07-22 08:48:22 -07:00
|
|
|
tlsConfig.ClientAuth = tls.RequireAndVerifyClientCert
|
|
|
|
tlsConfig.ClientCAs = tlsConfig.RootCAs
|
|
|
|
server.TLS = tlsConfig
|
|
|
|
server.StartTLS()
|
|
|
|
defer server.Close()
|
|
|
|
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 12:01:34 -08:00
|
|
|
cfg := config_util.HTTPClientConfig{
|
|
|
|
TLSConfig: config_util.TLSConfig{
|
2016-05-26 14:39:44 -07:00
|
|
|
CAFile: caCertPath,
|
2015-09-06 16:07:44 -07:00
|
|
|
CertFile: "testdata/client.cer",
|
|
|
|
KeyFile: "testdata/client.key",
|
2015-07-22 08:48:22 -07:00
|
|
|
},
|
|
|
|
}
|
2021-09-26 14:16:12 -07:00
|
|
|
c, err := config_util.NewClientFromConfig(cfg, "test")
|
2015-07-22 08:48:22 -07:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
_, err = c.Get(server.URL)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-26 14:24:49 -07:00
|
|
|
func TestNewHTTPWithServerName(t *testing.T) {
|
|
|
|
server := httptest.NewUnstartedServer(
|
|
|
|
http.HandlerFunc(
|
|
|
|
func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.Header().Set("Content-Type", `text/plain; version=0.0.4`)
|
|
|
|
w.Write([]byte{})
|
|
|
|
},
|
|
|
|
),
|
|
|
|
)
|
|
|
|
server.TLS = newTLSConfig("servername", t)
|
|
|
|
server.StartTLS()
|
|
|
|
defer server.Close()
|
|
|
|
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 12:01:34 -08:00
|
|
|
cfg := config_util.HTTPClientConfig{
|
|
|
|
TLSConfig: config_util.TLSConfig{
|
2016-05-26 14:39:44 -07:00
|
|
|
CAFile: caCertPath,
|
2016-05-26 14:24:49 -07:00
|
|
|
ServerName: "prometheus.rocks",
|
|
|
|
},
|
|
|
|
}
|
2021-09-26 14:16:12 -07:00
|
|
|
c, err := config_util.NewClientFromConfig(cfg, "test")
|
2016-05-26 14:24:49 -07:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
_, err = c.Get(server.URL)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestNewHTTPWithBadServerName(t *testing.T) {
|
|
|
|
server := httptest.NewUnstartedServer(
|
|
|
|
http.HandlerFunc(
|
|
|
|
func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
w.Header().Set("Content-Type", `text/plain; version=0.0.4`)
|
|
|
|
w.Write([]byte{})
|
|
|
|
},
|
|
|
|
),
|
|
|
|
)
|
|
|
|
server.TLS = newTLSConfig("servername", t)
|
|
|
|
server.StartTLS()
|
|
|
|
defer server.Close()
|
|
|
|
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 12:01:34 -08:00
|
|
|
cfg := config_util.HTTPClientConfig{
|
|
|
|
TLSConfig: config_util.TLSConfig{
|
2016-05-26 14:39:44 -07:00
|
|
|
CAFile: caCertPath,
|
2016-05-26 14:24:49 -07:00
|
|
|
ServerName: "badname",
|
|
|
|
},
|
|
|
|
}
|
2021-09-26 14:16:12 -07:00
|
|
|
c, err := config_util.NewClientFromConfig(cfg, "test")
|
2016-05-26 14:24:49 -07:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
_, err = c.Get(server.URL)
|
|
|
|
if err == nil {
|
|
|
|
t.Fatal("Expected error, got nil.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func newTLSConfig(certName string, t *testing.T) *tls.Config {
|
2015-07-22 08:48:22 -07:00
|
|
|
tlsConfig := &tls.Config{}
|
|
|
|
caCertPool := x509.NewCertPool()
|
2022-04-27 02:24:36 -07:00
|
|
|
caCert, err := os.ReadFile(caCertPath)
|
2015-07-22 08:48:22 -07:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Couldn't set up TLS server: %v", err)
|
|
|
|
}
|
|
|
|
caCertPool.AppendCertsFromPEM(caCert)
|
|
|
|
tlsConfig.RootCAs = caCertPool
|
|
|
|
tlsConfig.ServerName = "127.0.0.1"
|
2016-05-26 14:24:49 -07:00
|
|
|
certPath := fmt.Sprintf("testdata/%s.cer", certName)
|
|
|
|
keyPath := fmt.Sprintf("testdata/%s.key", certName)
|
|
|
|
cert, err := tls.LoadX509KeyPair(certPath, keyPath)
|
2015-07-22 08:48:22 -07:00
|
|
|
if err != nil {
|
2016-05-26 14:24:49 -07:00
|
|
|
t.Errorf("Unable to use specified server cert (%s) & key (%v): %s", certPath, keyPath, err)
|
2015-07-22 08:48:22 -07:00
|
|
|
}
|
|
|
|
tlsConfig.Certificates = []tls.Certificate{cert}
|
|
|
|
return tlsConfig
|
|
|
|
}
|
2016-02-08 12:26:00 -08:00
|
|
|
|
2016-02-28 10:21:50 -08:00
|
|
|
func TestNewClientWithBadTLSConfig(t *testing.T) {
|
Refactor SD configuration to remove `config` dependency (#3629)
* refactor: move targetGroup struct and CheckOverflow() to their own package
* refactor: move auth and security related structs to a utility package, fix import error in utility package
* refactor: Azure SD, remove SD struct from config
* refactor: DNS SD, remove SD struct from config into dns package
* refactor: ec2 SD, move SD struct from config into the ec2 package
* refactor: file SD, move SD struct from config to file discovery package
* refactor: gce, move SD struct from config to gce discovery package
* refactor: move HTTPClientConfig and URL into util/config, fix import error in httputil
* refactor: consul, move SD struct from config into consul discovery package
* refactor: marathon, move SD struct from config into marathon discovery package
* refactor: triton, move SD struct from config to triton discovery package, fix test
* refactor: zookeeper, move SD structs from config to zookeeper discovery package
* refactor: openstack, remove SD struct from config, move into openstack discovery package
* refactor: kubernetes, move SD struct from config into kubernetes discovery package
* refactor: notifier, use targetgroup package instead of config
* refactor: tests for file, marathon, triton SD - use targetgroup package instead of config.TargetGroup
* refactor: retrieval, use targetgroup package instead of config.TargetGroup
* refactor: storage, use config util package
* refactor: discovery manager, use targetgroup package instead of config.TargetGroup
* refactor: use HTTPClient and TLS config from configUtil instead of config
* refactor: tests, use targetgroup package instead of config.TargetGroup
* refactor: fix tagetgroup.Group pointers that were removed by mistake
* refactor: openstack, kubernetes: drop prefixes
* refactor: remove import aliases forced due to vscode bug
* refactor: move main SD struct out of config into discovery/config
* refactor: rename configUtil to config_util
* refactor: rename yamlUtil to yaml_config
* refactor: kubernetes, remove prefixes
* refactor: move the TargetGroup package to discovery/
* refactor: fix order of imports
2017-12-29 12:01:34 -08:00
|
|
|
cfg := config_util.HTTPClientConfig{
|
|
|
|
TLSConfig: config_util.TLSConfig{
|
2016-02-08 12:26:00 -08:00
|
|
|
CAFile: "testdata/nonexistent_ca.cer",
|
|
|
|
CertFile: "testdata/nonexistent_client.cer",
|
|
|
|
KeyFile: "testdata/nonexistent_client.key",
|
|
|
|
},
|
|
|
|
}
|
2021-09-26 14:16:12 -07:00
|
|
|
_, err := config_util.NewClientFromConfig(cfg, "test")
|
2016-02-08 12:26:00 -08:00
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("Expected error, got nil.")
|
|
|
|
}
|
|
|
|
}
|
2021-05-28 14:50:59 -07:00
|
|
|
|
|
|
|
func TestTargetsFromGroup(t *testing.T) {
|
|
|
|
expectedError := "instance 0 in group : no address"
|
|
|
|
|
2021-12-16 04:28:46 -08:00
|
|
|
cfg := config.ScrapeConfig{
|
|
|
|
ScrapeTimeout: model.Duration(10 * time.Second),
|
|
|
|
ScrapeInterval: model.Duration(1 * time.Minute),
|
|
|
|
}
|
2023-03-07 01:23:34 -08:00
|
|
|
lb := labels.NewBuilder(labels.EmptyLabels())
|
|
|
|
targets, failures := TargetsFromGroup(&targetgroup.Group{Targets: []model.LabelSet{{}, {model.AddressLabel: "localhost:9090"}}}, &cfg, false, nil, lb)
|
2021-05-28 14:50:59 -07:00
|
|
|
if len(targets) != 1 {
|
|
|
|
t.Fatalf("Expected 1 target, got %v", len(targets))
|
|
|
|
}
|
|
|
|
if len(failures) != 1 {
|
|
|
|
t.Fatalf("Expected 1 failure, got %v", len(failures))
|
|
|
|
}
|
|
|
|
if failures[0].Error() != expectedError {
|
|
|
|
t.Fatalf("Expected error %s, got %s", expectedError, failures[0])
|
|
|
|
}
|
|
|
|
}
|
2023-02-28 08:12:27 -08:00
|
|
|
|
|
|
|
func BenchmarkTargetsFromGroup(b *testing.B) {
|
|
|
|
// Simulate Kubernetes service-discovery and use subset of rules from typical Prometheus config.
|
|
|
|
cfgText := `
|
|
|
|
scrape_configs:
|
|
|
|
- job_name: job1
|
|
|
|
scrape_interval: 15s
|
|
|
|
scrape_timeout: 10s
|
|
|
|
relabel_configs:
|
|
|
|
- source_labels: [__meta_kubernetes_pod_container_port_name]
|
|
|
|
separator: ;
|
|
|
|
regex: .*-metrics
|
|
|
|
replacement: $1
|
|
|
|
action: keep
|
|
|
|
- source_labels: [__meta_kubernetes_pod_phase]
|
|
|
|
separator: ;
|
|
|
|
regex: Succeeded|Failed
|
|
|
|
replacement: $1
|
|
|
|
action: drop
|
|
|
|
- source_labels: [__meta_kubernetes_namespace, __meta_kubernetes_pod_label_name]
|
|
|
|
separator: /
|
|
|
|
regex: (.*)
|
|
|
|
target_label: job
|
|
|
|
replacement: $1
|
|
|
|
action: replace
|
|
|
|
- source_labels: [__meta_kubernetes_namespace]
|
|
|
|
separator: ;
|
|
|
|
regex: (.*)
|
|
|
|
target_label: namespace
|
|
|
|
replacement: $1
|
|
|
|
action: replace
|
|
|
|
- source_labels: [__meta_kubernetes_pod_name]
|
|
|
|
separator: ;
|
|
|
|
regex: (.*)
|
|
|
|
target_label: pod
|
|
|
|
replacement: $1
|
|
|
|
action: replace
|
|
|
|
- source_labels: [__meta_kubernetes_pod_container_name]
|
|
|
|
separator: ;
|
|
|
|
regex: (.*)
|
|
|
|
target_label: container
|
|
|
|
replacement: $1
|
|
|
|
action: replace
|
|
|
|
- source_labels: [__meta_kubernetes_pod_name, __meta_kubernetes_pod_container_name,
|
|
|
|
__meta_kubernetes_pod_container_port_name]
|
|
|
|
separator: ':'
|
|
|
|
regex: (.*)
|
|
|
|
target_label: instance
|
|
|
|
replacement: $1
|
|
|
|
action: replace
|
|
|
|
- separator: ;
|
|
|
|
regex: (.*)
|
|
|
|
target_label: cluster
|
|
|
|
replacement: dev-us-central-0
|
|
|
|
action: replace
|
|
|
|
`
|
|
|
|
config := loadConfiguration(b, cfgText)
|
|
|
|
for _, nTargets := range []int{1, 10, 100} {
|
|
|
|
b.Run(fmt.Sprintf("%d_targets", nTargets), func(b *testing.B) {
|
|
|
|
targets := []model.LabelSet{}
|
|
|
|
for i := 0; i < nTargets; i++ {
|
|
|
|
labels := model.LabelSet{
|
|
|
|
model.AddressLabel: model.LabelValue(fmt.Sprintf("localhost:%d", i)),
|
|
|
|
"__meta_kubernetes_namespace": "some_namespace",
|
|
|
|
"__meta_kubernetes_pod_container_name": "some_container",
|
|
|
|
"__meta_kubernetes_pod_container_port_name": "http-metrics",
|
|
|
|
"__meta_kubernetes_pod_container_port_number": "80",
|
|
|
|
"__meta_kubernetes_pod_label_name": "some_name",
|
|
|
|
"__meta_kubernetes_pod_name": "some_pod",
|
|
|
|
"__meta_kubernetes_pod_phase": "Running",
|
|
|
|
}
|
|
|
|
// Add some more labels, because Kubernetes SD generates a lot
|
|
|
|
for i := 0; i < 10; i++ {
|
|
|
|
labels[model.LabelName(fmt.Sprintf("__meta_kubernetes_pod_label_extra%d", i))] = "a_label_abcdefgh"
|
|
|
|
labels[model.LabelName(fmt.Sprintf("__meta_kubernetes_pod_labelpresent_extra%d", i))] = "true"
|
|
|
|
}
|
|
|
|
targets = append(targets, labels)
|
|
|
|
}
|
2023-03-07 01:23:34 -08:00
|
|
|
var tgets []*Target
|
|
|
|
lb := labels.NewBuilder(labels.EmptyLabels())
|
2023-02-28 08:12:27 -08:00
|
|
|
group := &targetgroup.Group{Targets: targets}
|
|
|
|
for i := 0; i < b.N; i++ {
|
2023-03-07 01:23:34 -08:00
|
|
|
tgets, _ = TargetsFromGroup(group, config.ScrapeConfigs[0], false, tgets, lb)
|
2023-02-28 08:12:27 -08:00
|
|
|
if len(targets) != nTargets {
|
|
|
|
b.Fatalf("Expected %d targets, got %d", nTargets, len(targets))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|