2021-11-01 06:42:12 -07:00
|
|
|
// Copyright 2021 The Prometheus Authors
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/prometheus/common/model"
|
2021-10-22 01:19:38 -07:00
|
|
|
|
2021-11-01 06:42:12 -07:00
|
|
|
"github.com/prometheus/prometheus/config"
|
|
|
|
"github.com/prometheus/prometheus/discovery/targetgroup"
|
|
|
|
"github.com/prometheus/prometheus/pkg/labels"
|
|
|
|
"github.com/prometheus/prometheus/pkg/relabel"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSDCheckResult(t *testing.T) {
|
|
|
|
targetGroups := []*targetgroup.Group{{
|
|
|
|
Targets: []model.LabelSet{
|
|
|
|
map[model.LabelName]model.LabelValue{"__address__": "localhost:8080", "foo": "bar"},
|
|
|
|
},
|
|
|
|
}}
|
|
|
|
|
|
|
|
reg, err := relabel.NewRegexp("(.*)")
|
|
|
|
require.Nil(t, err)
|
|
|
|
|
|
|
|
scrapeConfig := &config.ScrapeConfig{
|
|
|
|
RelabelConfigs: []*relabel.Config{{
|
|
|
|
SourceLabels: model.LabelNames{"foo"},
|
|
|
|
Action: relabel.Replace,
|
|
|
|
TargetLabel: "newfoo",
|
|
|
|
Regex: reg,
|
|
|
|
Replacement: "$1",
|
|
|
|
}},
|
|
|
|
}
|
|
|
|
|
|
|
|
expectedSDCheckResult := []sdCheckResult{
|
2021-10-22 01:06:44 -07:00
|
|
|
{
|
2021-11-01 06:42:12 -07:00
|
|
|
DiscoveredLabels: labels.Labels{
|
|
|
|
labels.Label{Name: "__address__", Value: "localhost:8080"},
|
|
|
|
labels.Label{Name: "__scrape_interval__", Value: "0s"},
|
|
|
|
labels.Label{Name: "__scrape_timeout__", Value: "0s"},
|
2021-10-22 01:06:44 -07:00
|
|
|
labels.Label{Name: "foo", Value: "bar"},
|
|
|
|
},
|
2021-11-01 06:42:12 -07:00
|
|
|
Labels: labels.Labels{
|
|
|
|
labels.Label{Name: "__address__", Value: "localhost:8080"},
|
|
|
|
labels.Label{Name: "__scrape_interval__", Value: "0s"},
|
|
|
|
labels.Label{Name: "__scrape_timeout__", Value: "0s"},
|
|
|
|
labels.Label{Name: "foo", Value: "bar"},
|
|
|
|
labels.Label{Name: "instance", Value: "localhost:8080"},
|
2021-10-22 01:06:44 -07:00
|
|
|
labels.Label{Name: "newfoo", Value: "bar"},
|
|
|
|
},
|
2021-11-01 06:42:12 -07:00
|
|
|
Error: nil,
|
2021-10-22 01:06:44 -07:00
|
|
|
},
|
|
|
|
}
|
2021-11-01 06:42:12 -07:00
|
|
|
|
|
|
|
require.Equal(t, expectedSDCheckResult, getSDCheckResult(targetGroups, scrapeConfig))
|
|
|
|
}
|