mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-12 16:44:05 -08:00
Merge pull request #1385 from prometheus/scraperef
Cleanup target internals
This commit is contained in:
commit
70336c6f5b
|
@ -119,6 +119,7 @@ type TargetStatus struct {
|
||||||
func (ts *TargetStatus) LastError() error {
|
func (ts *TargetStatus) LastError() error {
|
||||||
ts.mu.RLock()
|
ts.mu.RLock()
|
||||||
defer ts.mu.RUnlock()
|
defer ts.mu.RUnlock()
|
||||||
|
|
||||||
return ts.lastError
|
return ts.lastError
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -126,6 +127,7 @@ func (ts *TargetStatus) LastError() error {
|
||||||
func (ts *TargetStatus) LastScrape() time.Time {
|
func (ts *TargetStatus) LastScrape() time.Time {
|
||||||
ts.mu.RLock()
|
ts.mu.RLock()
|
||||||
defer ts.mu.RUnlock()
|
defer ts.mu.RUnlock()
|
||||||
|
|
||||||
return ts.lastScrape
|
return ts.lastScrape
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -133,18 +135,21 @@ func (ts *TargetStatus) LastScrape() time.Time {
|
||||||
func (ts *TargetStatus) Health() TargetHealth {
|
func (ts *TargetStatus) Health() TargetHealth {
|
||||||
ts.mu.RLock()
|
ts.mu.RLock()
|
||||||
defer ts.mu.RUnlock()
|
defer ts.mu.RUnlock()
|
||||||
|
|
||||||
return ts.health
|
return ts.health
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ts *TargetStatus) setLastScrape(t time.Time) {
|
func (ts *TargetStatus) setLastScrape(t time.Time) {
|
||||||
ts.mu.Lock()
|
ts.mu.Lock()
|
||||||
defer ts.mu.Unlock()
|
defer ts.mu.Unlock()
|
||||||
|
|
||||||
ts.lastScrape = t
|
ts.lastScrape = t
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ts *TargetStatus) setLastError(err error) {
|
func (ts *TargetStatus) setLastError(err error) {
|
||||||
ts.mu.Lock()
|
ts.mu.Lock()
|
||||||
defer ts.mu.Unlock()
|
defer ts.mu.Unlock()
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
ts.health = HealthGood
|
ts.health = HealthGood
|
||||||
} else {
|
} else {
|
||||||
|
@ -164,37 +169,26 @@ type Target struct {
|
||||||
|
|
||||||
// Mutex protects the members below.
|
// Mutex protects the members below.
|
||||||
sync.RWMutex
|
sync.RWMutex
|
||||||
// The HTTP client used to scrape the target's endpoint.
|
|
||||||
httpClient *http.Client
|
scrapeConfig *config.ScrapeConfig
|
||||||
// url is the URL to be scraped. Its host is immutable.
|
|
||||||
url *url.URL
|
|
||||||
// Labels before any processing.
|
// Labels before any processing.
|
||||||
metaLabels model.LabelSet
|
metaLabels model.LabelSet
|
||||||
// Any base labels that are added to this target and its metrics.
|
// Any labels that are added to this target and its metrics.
|
||||||
baseLabels model.LabelSet
|
labels model.LabelSet
|
||||||
// Internal labels, such as scheme.
|
|
||||||
internalLabels model.LabelSet
|
// The HTTP client used to scrape the target's endpoint.
|
||||||
// The time between two scrapes.
|
httpClient *http.Client
|
||||||
scrapeInterval time.Duration
|
|
||||||
// Whether the target's labels have precedence over the base labels
|
|
||||||
// assigned by the scraping instance.
|
|
||||||
honorLabels bool
|
|
||||||
// Metric relabel configuration.
|
|
||||||
metricRelabelConfigs []*config.RelabelConfig
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewTarget creates a reasonably configured target for querying.
|
// NewTarget creates a reasonably configured target for querying.
|
||||||
func NewTarget(cfg *config.ScrapeConfig, baseLabels, metaLabels model.LabelSet) (*Target, error) {
|
func NewTarget(cfg *config.ScrapeConfig, labels, metaLabels model.LabelSet) (*Target, error) {
|
||||||
t := &Target{
|
t := &Target{
|
||||||
url: &url.URL{
|
|
||||||
Scheme: string(baseLabels[model.SchemeLabel]),
|
|
||||||
Host: string(baseLabels[model.AddressLabel]),
|
|
||||||
},
|
|
||||||
status: &TargetStatus{},
|
status: &TargetStatus{},
|
||||||
scraperStopping: make(chan struct{}),
|
scraperStopping: make(chan struct{}),
|
||||||
scraperStopped: make(chan struct{}),
|
scraperStopped: make(chan struct{}),
|
||||||
}
|
}
|
||||||
err := t.Update(cfg, baseLabels, metaLabels)
|
err := t.Update(cfg, labels, metaLabels)
|
||||||
return t, err
|
return t, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -205,57 +199,23 @@ func (t *Target) Status() *TargetStatus {
|
||||||
|
|
||||||
// Update overwrites settings in the target that are derived from the job config
|
// Update overwrites settings in the target that are derived from the job config
|
||||||
// it belongs to.
|
// it belongs to.
|
||||||
func (t *Target) Update(cfg *config.ScrapeConfig, baseLabels, metaLabels model.LabelSet) error {
|
func (t *Target) Update(cfg *config.ScrapeConfig, labels, metaLabels model.LabelSet) error {
|
||||||
t.Lock()
|
t.Lock()
|
||||||
defer t.Unlock()
|
|
||||||
|
|
||||||
httpClient, err := newHTTPClient(cfg)
|
t.scrapeConfig = cfg
|
||||||
if err != nil {
|
t.labels = labels
|
||||||
return fmt.Errorf("cannot create HTTP client: %v", err)
|
|
||||||
}
|
|
||||||
t.httpClient = httpClient
|
|
||||||
|
|
||||||
t.url.Scheme = string(baseLabels[model.SchemeLabel])
|
|
||||||
t.url.Path = string(baseLabels[model.MetricsPathLabel])
|
|
||||||
|
|
||||||
t.internalLabels = model.LabelSet{}
|
|
||||||
t.internalLabels[model.SchemeLabel] = baseLabels[model.SchemeLabel]
|
|
||||||
t.internalLabels[model.MetricsPathLabel] = baseLabels[model.MetricsPathLabel]
|
|
||||||
t.internalLabels[model.AddressLabel] = model.LabelValue(t.url.Host)
|
|
||||||
|
|
||||||
params := url.Values{}
|
|
||||||
|
|
||||||
for k, v := range cfg.Params {
|
|
||||||
params[k] = make([]string, len(v))
|
|
||||||
copy(params[k], v)
|
|
||||||
}
|
|
||||||
for k, v := range baseLabels {
|
|
||||||
if strings.HasPrefix(string(k), model.ParamLabelPrefix) {
|
|
||||||
if len(params[string(k[len(model.ParamLabelPrefix):])]) > 0 {
|
|
||||||
params[string(k[len(model.ParamLabelPrefix):])][0] = string(v)
|
|
||||||
} else {
|
|
||||||
params[string(k[len(model.ParamLabelPrefix):])] = []string{string(v)}
|
|
||||||
}
|
|
||||||
t.internalLabels[model.ParamLabelPrefix+k[len(model.ParamLabelPrefix):]] = v
|
|
||||||
}
|
|
||||||
}
|
|
||||||
t.url.RawQuery = params.Encode()
|
|
||||||
|
|
||||||
t.scrapeInterval = time.Duration(cfg.ScrapeInterval)
|
|
||||||
|
|
||||||
t.honorLabels = cfg.HonorLabels
|
|
||||||
t.metaLabels = metaLabels
|
t.metaLabels = metaLabels
|
||||||
t.baseLabels = model.LabelSet{}
|
|
||||||
// All remaining internal labels will not be part of the label set.
|
t.Unlock()
|
||||||
for name, val := range baseLabels {
|
|
||||||
if !strings.HasPrefix(string(name), model.ReservedLabelPrefix) {
|
httpClient, err := t.client()
|
||||||
t.baseLabels[name] = val
|
if err != nil {
|
||||||
}
|
return fmt.Errorf("cannot create HTTP client: %s", err)
|
||||||
}
|
}
|
||||||
if _, ok := t.baseLabels[model.InstanceLabel]; !ok {
|
t.Lock()
|
||||||
t.baseLabels[model.InstanceLabel] = model.LabelValue(t.InstanceIdentifier())
|
t.httpClient = httpClient
|
||||||
}
|
t.Unlock()
|
||||||
t.metricRelabelConfigs = cfg.MetricRelabelConfigs
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -304,16 +264,105 @@ func newHTTPClient(cfg *config.ScrapeConfig) (*http.Client, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *Target) String() string {
|
func (t *Target) String() string {
|
||||||
return t.url.Host
|
return t.host()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *Target) client() (*http.Client, error) {
|
||||||
|
t.RLock()
|
||||||
|
defer t.RUnlock()
|
||||||
|
|
||||||
|
return newHTTPClient(t.scrapeConfig)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *Target) interval() time.Duration {
|
||||||
|
t.RLock()
|
||||||
|
defer t.RUnlock()
|
||||||
|
|
||||||
|
return time.Duration(t.scrapeConfig.ScrapeInterval)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *Target) timeout() time.Duration {
|
||||||
|
t.RLock()
|
||||||
|
defer t.RUnlock()
|
||||||
|
|
||||||
|
return time.Duration(t.scrapeConfig.ScrapeTimeout)
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *Target) scheme() string {
|
||||||
|
t.RLock()
|
||||||
|
defer t.RUnlock()
|
||||||
|
|
||||||
|
return string(t.labels[model.SchemeLabel])
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *Target) host() string {
|
||||||
|
t.RLock()
|
||||||
|
defer t.RUnlock()
|
||||||
|
|
||||||
|
return string(t.labels[model.AddressLabel])
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *Target) path() string {
|
||||||
|
t.RLock()
|
||||||
|
defer t.RUnlock()
|
||||||
|
|
||||||
|
return string(t.labels[model.MetricsPathLabel])
|
||||||
|
}
|
||||||
|
|
||||||
|
// URL returns a copy of the target's URL.
|
||||||
|
func (t *Target) URL() *url.URL {
|
||||||
|
t.RLock()
|
||||||
|
defer t.RUnlock()
|
||||||
|
|
||||||
|
params := url.Values{}
|
||||||
|
|
||||||
|
for k, v := range t.scrapeConfig.Params {
|
||||||
|
params[k] = make([]string, len(v))
|
||||||
|
copy(params[k], v)
|
||||||
|
}
|
||||||
|
for k, v := range t.labels {
|
||||||
|
if !strings.HasPrefix(string(k), model.ParamLabelPrefix) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
ks := string(k[len(model.ParamLabelPrefix):])
|
||||||
|
|
||||||
|
if len(params[ks]) > 0 {
|
||||||
|
params[ks][0] = string(v)
|
||||||
|
} else {
|
||||||
|
params[ks] = []string{string(v)}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return &url.URL{
|
||||||
|
Scheme: string(t.labels[model.SchemeLabel]),
|
||||||
|
Host: string(t.labels[model.AddressLabel]),
|
||||||
|
Path: string(t.labels[model.MetricsPathLabel]),
|
||||||
|
RawQuery: params.Encode(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// InstanceIdentifier returns the identifier for the target.
|
||||||
|
func (t *Target) InstanceIdentifier() string {
|
||||||
|
return t.host()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (t *Target) fullLabels() model.LabelSet {
|
||||||
|
t.RLock()
|
||||||
|
defer t.RUnlock()
|
||||||
|
|
||||||
|
lset := t.labels.Clone()
|
||||||
|
|
||||||
|
if _, ok := lset[model.InstanceLabel]; !ok {
|
||||||
|
lset[model.InstanceLabel] = t.labels[model.AddressLabel]
|
||||||
|
}
|
||||||
|
return lset
|
||||||
}
|
}
|
||||||
|
|
||||||
// RunScraper implements Target.
|
// RunScraper implements Target.
|
||||||
func (t *Target) RunScraper(sampleAppender storage.SampleAppender) {
|
func (t *Target) RunScraper(sampleAppender storage.SampleAppender) {
|
||||||
defer close(t.scraperStopped)
|
defer close(t.scraperStopped)
|
||||||
|
|
||||||
t.RLock()
|
lastScrapeInterval := t.interval()
|
||||||
lastScrapeInterval := t.scrapeInterval
|
|
||||||
t.RUnlock()
|
|
||||||
|
|
||||||
log.Debugf("Starting scraper for target %v...", t)
|
log.Debugf("Starting scraper for target %v...", t)
|
||||||
|
|
||||||
|
@ -353,15 +402,13 @@ func (t *Target) RunScraper(sampleAppender storage.SampleAppender) {
|
||||||
|
|
||||||
intervalStr := lastScrapeInterval.String()
|
intervalStr := lastScrapeInterval.String()
|
||||||
|
|
||||||
t.RLock()
|
|
||||||
// On changed scrape interval the new interval becomes effective
|
// On changed scrape interval the new interval becomes effective
|
||||||
// after the next scrape.
|
// after the next scrape.
|
||||||
if lastScrapeInterval != t.scrapeInterval {
|
if iv := t.interval(); iv != lastScrapeInterval {
|
||||||
ticker.Stop()
|
ticker.Stop()
|
||||||
ticker = time.NewTicker(t.scrapeInterval)
|
ticker = time.NewTicker(iv)
|
||||||
lastScrapeInterval = t.scrapeInterval
|
lastScrapeInterval = iv
|
||||||
}
|
}
|
||||||
t.RUnlock()
|
|
||||||
|
|
||||||
targetIntervalLength.WithLabelValues(intervalStr).Observe(
|
targetIntervalLength.WithLabelValues(intervalStr).Observe(
|
||||||
float64(took) / float64(time.Second), // Sub-second precision.
|
float64(took) / float64(time.Second), // Sub-second precision.
|
||||||
|
@ -389,40 +436,40 @@ func (t *Target) StopScraper() {
|
||||||
|
|
||||||
const acceptHeader = `application/vnd.google.protobuf;proto=io.prometheus.client.MetricFamily;encoding=delimited;q=0.7,text/plain;version=0.0.4;q=0.3,application/json;schema="prometheus/telemetry";version=0.0.2;q=0.2,*/*;q=0.1`
|
const acceptHeader = `application/vnd.google.protobuf;proto=io.prometheus.client.MetricFamily;encoding=delimited;q=0.7,text/plain;version=0.0.4;q=0.3,application/json;schema="prometheus/telemetry";version=0.0.2;q=0.2,*/*;q=0.1`
|
||||||
|
|
||||||
func (t *Target) scrape(appender storage.SampleAppender) (err error) {
|
func (t *Target) scrape(appender storage.SampleAppender) error {
|
||||||
start := time.Now()
|
var (
|
||||||
baseLabels := t.BaseLabels()
|
err error
|
||||||
|
start = time.Now()
|
||||||
|
labels = t.Labels()
|
||||||
|
)
|
||||||
defer func(appender storage.SampleAppender) {
|
defer func(appender storage.SampleAppender) {
|
||||||
t.status.setLastError(err)
|
t.status.setLastError(err)
|
||||||
recordScrapeHealth(appender, start, baseLabels, t.status.Health(), time.Since(start))
|
recordScrapeHealth(appender, start, labels, t.status.Health(), time.Since(start))
|
||||||
}(appender)
|
}(appender)
|
||||||
|
|
||||||
t.RLock()
|
t.RLock()
|
||||||
|
|
||||||
// The relabelAppender has to be inside the label-modifying appenders
|
// The relabelAppender has to be inside the label-modifying appenders
|
||||||
// so the relabeling rules are applied to the correct label set.
|
// so the relabeling rules are applied to the correct label set.
|
||||||
if len(t.metricRelabelConfigs) > 0 {
|
if len(t.scrapeConfig.MetricRelabelConfigs) > 0 {
|
||||||
appender = relabelAppender{
|
appender = relabelAppender{
|
||||||
SampleAppender: appender,
|
SampleAppender: appender,
|
||||||
relabelings: t.metricRelabelConfigs,
|
relabelings: t.scrapeConfig.MetricRelabelConfigs,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if t.honorLabels {
|
if t.scrapeConfig.HonorLabels {
|
||||||
appender = honorLabelsAppender{
|
appender = honorLabelsAppender{
|
||||||
SampleAppender: appender,
|
SampleAppender: appender,
|
||||||
labels: baseLabels,
|
labels: labels,
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
appender = ruleLabelsAppender{
|
appender = ruleLabelsAppender{
|
||||||
SampleAppender: appender,
|
SampleAppender: appender,
|
||||||
labels: baseLabels,
|
labels: labels,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
httpClient := t.httpClient
|
httpClient := t.httpClient
|
||||||
|
|
||||||
t.RUnlock()
|
t.RUnlock()
|
||||||
|
|
||||||
req, err := http.NewRequest("GET", t.URL().String(), nil)
|
req, err := http.NewRequest("GET", t.URL().String(), nil)
|
||||||
|
@ -538,43 +585,22 @@ func (app relabelAppender) Append(s *model.Sample) error {
|
||||||
return app.SampleAppender.Append(s)
|
return app.SampleAppender.Append(s)
|
||||||
}
|
}
|
||||||
|
|
||||||
// URL returns a copy of the target's URL.
|
// Labels returns a copy of the set of all public labels of the target.
|
||||||
func (t *Target) URL() *url.URL {
|
func (t *Target) Labels() model.LabelSet {
|
||||||
t.RLock()
|
t.RLock()
|
||||||
defer t.RUnlock()
|
defer t.RUnlock()
|
||||||
|
|
||||||
u := &url.URL{}
|
lset := make(model.LabelSet, len(t.labels))
|
||||||
*u = *t.url
|
for ln, lv := range t.labels {
|
||||||
return u
|
if !strings.HasPrefix(string(ln), model.ReservedLabelPrefix) {
|
||||||
}
|
lset[ln] = lv
|
||||||
|
}
|
||||||
// InstanceIdentifier returns the identifier for the target.
|
|
||||||
func (t *Target) InstanceIdentifier() string {
|
|
||||||
return t.url.Host
|
|
||||||
}
|
|
||||||
|
|
||||||
// fullLabels returns the base labels plus internal labels defining the target.
|
|
||||||
func (t *Target) fullLabels() model.LabelSet {
|
|
||||||
t.RLock()
|
|
||||||
defer t.RUnlock()
|
|
||||||
lset := make(model.LabelSet, len(t.baseLabels)+len(t.internalLabels))
|
|
||||||
for ln, lv := range t.baseLabels {
|
|
||||||
lset[ln] = lv
|
|
||||||
}
|
}
|
||||||
for k, v := range t.internalLabels {
|
|
||||||
lset[k] = v
|
|
||||||
}
|
|
||||||
return lset
|
|
||||||
}
|
|
||||||
|
|
||||||
// BaseLabels returns a copy of the target's base labels.
|
if _, ok := lset[model.InstanceLabel]; !ok {
|
||||||
func (t *Target) BaseLabels() model.LabelSet {
|
lset[model.InstanceLabel] = t.labels[model.AddressLabel]
|
||||||
t.RLock()
|
|
||||||
defer t.RUnlock()
|
|
||||||
lset := make(model.LabelSet, len(t.baseLabels))
|
|
||||||
for ln, lv := range t.baseLabels {
|
|
||||||
lset[ln] = lv
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return lset
|
return lset
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -582,27 +608,24 @@ func (t *Target) BaseLabels() model.LabelSet {
|
||||||
func (t *Target) MetaLabels() model.LabelSet {
|
func (t *Target) MetaLabels() model.LabelSet {
|
||||||
t.RLock()
|
t.RLock()
|
||||||
defer t.RUnlock()
|
defer t.RUnlock()
|
||||||
lset := make(model.LabelSet, len(t.metaLabels))
|
|
||||||
for ln, lv := range t.metaLabels {
|
return t.metaLabels.Clone()
|
||||||
lset[ln] = lv
|
|
||||||
}
|
|
||||||
return lset
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func recordScrapeHealth(
|
func recordScrapeHealth(
|
||||||
sampleAppender storage.SampleAppender,
|
sampleAppender storage.SampleAppender,
|
||||||
timestamp time.Time,
|
timestamp time.Time,
|
||||||
baseLabels model.LabelSet,
|
labels model.LabelSet,
|
||||||
health TargetHealth,
|
health TargetHealth,
|
||||||
scrapeDuration time.Duration,
|
scrapeDuration time.Duration,
|
||||||
) {
|
) {
|
||||||
healthMetric := make(model.Metric, len(baseLabels)+1)
|
healthMetric := make(model.Metric, len(labels)+1)
|
||||||
durationMetric := make(model.Metric, len(baseLabels)+1)
|
durationMetric := make(model.Metric, len(labels)+1)
|
||||||
|
|
||||||
healthMetric[model.MetricNameLabel] = scrapeHealthMetricName
|
healthMetric[model.MetricNameLabel] = scrapeHealthMetricName
|
||||||
durationMetric[model.MetricNameLabel] = scrapeDurationMetricName
|
durationMetric[model.MetricNameLabel] = scrapeDurationMetricName
|
||||||
|
|
||||||
for ln, lv := range baseLabels {
|
for ln, lv := range labels {
|
||||||
healthMetric[ln] = lv
|
healthMetric[ln] = lv
|
||||||
durationMetric[ln] = lv
|
durationMetric[ln] = lv
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,14 +32,14 @@ import (
|
||||||
"github.com/prometheus/prometheus/config"
|
"github.com/prometheus/prometheus/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestBaseLabels(t *testing.T) {
|
func TestTargetLabels(t *testing.T) {
|
||||||
target := newTestTarget("example.com:80", 0, model.LabelSet{"job": "some_job", "foo": "bar"})
|
target := newTestTarget("example.com:80", 0, model.LabelSet{"job": "some_job", "foo": "bar"})
|
||||||
want := model.LabelSet{
|
want := model.LabelSet{
|
||||||
model.JobLabel: "some_job",
|
model.JobLabel: "some_job",
|
||||||
model.InstanceLabel: "example.com:80",
|
model.InstanceLabel: "example.com:80",
|
||||||
"foo": "bar",
|
"foo": "bar",
|
||||||
}
|
}
|
||||||
got := target.BaseLabels()
|
got := target.Labels()
|
||||||
if !reflect.DeepEqual(want, got) {
|
if !reflect.DeepEqual(want, got) {
|
||||||
t.Errorf("want base labels %v, got %v", want, got)
|
t.Errorf("want base labels %v, got %v", want, got)
|
||||||
}
|
}
|
||||||
|
@ -105,7 +105,7 @@ func TestOverwriteLabels(t *testing.T) {
|
||||||
|
|
||||||
target := newTestTarget(server.URL, time.Second, nil)
|
target := newTestTarget(server.URL, time.Second, nil)
|
||||||
|
|
||||||
target.honorLabels = false
|
target.scrapeConfig.HonorLabels = false
|
||||||
app := &collectResultAppender{}
|
app := &collectResultAppender{}
|
||||||
if err := target.scrape(app); err != nil {
|
if err := target.scrape(app); err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
|
@ -117,7 +117,7 @@ func TestOverwriteLabels(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
target.honorLabels = true
|
target.scrapeConfig.HonorLabels = true
|
||||||
app = &collectResultAppender{}
|
app = &collectResultAppender{}
|
||||||
if err := target.scrape(app); err != nil {
|
if err := target.scrape(app); err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
|
@ -185,7 +185,7 @@ func TestTargetScrapeMetricRelabelConfigs(t *testing.T) {
|
||||||
)
|
)
|
||||||
defer server.Close()
|
defer server.Close()
|
||||||
testTarget := newTestTarget(server.URL, time.Second, model.LabelSet{})
|
testTarget := newTestTarget(server.URL, time.Second, model.LabelSet{})
|
||||||
testTarget.metricRelabelConfigs = []*config.RelabelConfig{
|
testTarget.scrapeConfig.MetricRelabelConfigs = []*config.RelabelConfig{
|
||||||
{
|
{
|
||||||
SourceLabels: model.LabelNames{"__name__"},
|
SourceLabels: model.LabelNames{"__name__"},
|
||||||
Regex: config.MustNewRegexp(".*drop.*"),
|
Regex: config.MustNewRegexp(".*drop.*"),
|
||||||
|
@ -216,7 +216,7 @@ func TestTargetScrapeMetricRelabelConfigs(t *testing.T) {
|
||||||
Metric: model.Metric{
|
Metric: model.Metric{
|
||||||
model.MetricNameLabel: "test_metric_relabel",
|
model.MetricNameLabel: "test_metric_relabel",
|
||||||
"foo": "bar",
|
"foo": "bar",
|
||||||
model.InstanceLabel: model.LabelValue(testTarget.url.Host),
|
model.InstanceLabel: model.LabelValue(testTarget.host()),
|
||||||
},
|
},
|
||||||
Timestamp: 0,
|
Timestamp: 0,
|
||||||
Value: 0,
|
Value: 0,
|
||||||
|
@ -225,7 +225,7 @@ func TestTargetScrapeMetricRelabelConfigs(t *testing.T) {
|
||||||
{
|
{
|
||||||
Metric: model.Metric{
|
Metric: model.Metric{
|
||||||
model.MetricNameLabel: scrapeHealthMetricName,
|
model.MetricNameLabel: scrapeHealthMetricName,
|
||||||
model.InstanceLabel: model.LabelValue(testTarget.url.Host),
|
model.InstanceLabel: model.LabelValue(testTarget.host()),
|
||||||
},
|
},
|
||||||
Timestamp: 0,
|
Timestamp: 0,
|
||||||
Value: 0,
|
Value: 0,
|
||||||
|
@ -233,7 +233,7 @@ func TestTargetScrapeMetricRelabelConfigs(t *testing.T) {
|
||||||
{
|
{
|
||||||
Metric: model.Metric{
|
Metric: model.Metric{
|
||||||
model.MetricNameLabel: scrapeDurationMetricName,
|
model.MetricNameLabel: scrapeDurationMetricName,
|
||||||
model.InstanceLabel: model.LabelValue(testTarget.url.Host),
|
model.InstanceLabel: model.LabelValue(testTarget.host()),
|
||||||
},
|
},
|
||||||
Timestamp: 0,
|
Timestamp: 0,
|
||||||
Value: 0,
|
Value: 0,
|
||||||
|
@ -252,7 +252,7 @@ func TestTargetRecordScrapeHealth(t *testing.T) {
|
||||||
now := model.Now()
|
now := model.Now()
|
||||||
appender := &collectResultAppender{}
|
appender := &collectResultAppender{}
|
||||||
testTarget.status.setLastError(nil)
|
testTarget.status.setLastError(nil)
|
||||||
recordScrapeHealth(appender, now.Time(), testTarget.BaseLabels(), testTarget.status.Health(), 2*time.Second)
|
recordScrapeHealth(appender, now.Time(), testTarget.Labels(), testTarget.status.Health(), 2*time.Second)
|
||||||
|
|
||||||
result := appender.result
|
result := appender.result
|
||||||
|
|
||||||
|
@ -438,7 +438,8 @@ func TestURLParams(t *testing.T) {
|
||||||
model.AddressLabel: model.LabelValue(serverURL.Host),
|
model.AddressLabel: model.LabelValue(serverURL.Host),
|
||||||
"__param_foo": "bar",
|
"__param_foo": "bar",
|
||||||
},
|
},
|
||||||
nil)
|
nil,
|
||||||
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
@ -448,29 +449,28 @@ func TestURLParams(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTestTarget(targetURL string, deadline time.Duration, baseLabels model.LabelSet) *Target {
|
func newTestTarget(targetURL string, deadline time.Duration, labels model.LabelSet) *Target {
|
||||||
cfg := &config.ScrapeConfig{
|
labels = labels.Clone()
|
||||||
ScrapeTimeout: model.Duration(deadline),
|
labels[model.SchemeLabel] = "http"
|
||||||
}
|
labels[model.AddressLabel] = model.LabelValue(strings.TrimLeft(targetURL, "http://"))
|
||||||
c, _ := newHTTPClient(cfg)
|
labels[model.MetricsPathLabel] = "/metrics"
|
||||||
|
|
||||||
t := &Target{
|
t := &Target{
|
||||||
url: &url.URL{
|
scrapeConfig: &config.ScrapeConfig{
|
||||||
Scheme: "http",
|
ScrapeInterval: model.Duration(time.Millisecond),
|
||||||
Host: strings.TrimLeft(targetURL, "http://"),
|
ScrapeTimeout: model.Duration(deadline),
|
||||||
Path: "/metrics",
|
|
||||||
},
|
},
|
||||||
|
labels: labels,
|
||||||
status: &TargetStatus{},
|
status: &TargetStatus{},
|
||||||
scrapeInterval: 1 * time.Millisecond,
|
|
||||||
httpClient: c,
|
|
||||||
scraperStopping: make(chan struct{}),
|
scraperStopping: make(chan struct{}),
|
||||||
scraperStopped: make(chan struct{}),
|
scraperStopped: make(chan struct{}),
|
||||||
}
|
}
|
||||||
t.baseLabels = model.LabelSet{
|
|
||||||
model.InstanceLabel: model.LabelValue(t.InstanceIdentifier()),
|
var err error
|
||||||
}
|
if t.httpClient, err = t.client(); err != nil {
|
||||||
for baseLabel, baseValue := range baseLabels {
|
panic(err)
|
||||||
t.baseLabels[baseLabel] = baseValue
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return t
|
return t
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -323,7 +323,7 @@ func (tm *TargetManager) Pools() map[string][]*Target {
|
||||||
|
|
||||||
for _, ts := range tm.targets {
|
for _, ts := range tm.targets {
|
||||||
for _, t := range ts {
|
for _, t := range ts {
|
||||||
job := string(t.BaseLabels()[model.JobLabel])
|
job := string(t.Labels()[model.JobLabel])
|
||||||
pools[job] = append(pools[job], t)
|
pools[job] = append(pools[job], t)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -188,7 +188,7 @@ func TestTargetManagerChan(t *testing.T) {
|
||||||
for _, expt := range expTargets {
|
for _, expt := range expTargets {
|
||||||
found := false
|
found := false
|
||||||
for _, actt := range actTargets {
|
for _, actt := range actTargets {
|
||||||
if reflect.DeepEqual(expt, actt.BaseLabels()) {
|
if reflect.DeepEqual(expt, actt.Labels()) {
|
||||||
found = true
|
found = true
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
|
@ -313,44 +313,109 @@ func TestTargetManagerConfigUpdate(t *testing.T) {
|
||||||
scrapeConfigs: []*config.ScrapeConfig{testJob1},
|
scrapeConfigs: []*config.ScrapeConfig{testJob1},
|
||||||
expected: map[string][]model.LabelSet{
|
expected: map[string][]model.LabelSet{
|
||||||
"test_job1:static:0:0": {
|
"test_job1:static:0:0": {
|
||||||
{model.JobLabel: "test_job1", model.InstanceLabel: "example.org:80", "testParam": "paramValue",
|
{
|
||||||
model.SchemeLabel: "", model.MetricsPathLabel: "", model.AddressLabel: "example.org:80", model.ParamLabelPrefix + "testParam": "paramValue"},
|
model.JobLabel: "test_job1",
|
||||||
{model.JobLabel: "test_job1", model.InstanceLabel: "example.com:80", "testParam": "paramValue",
|
model.InstanceLabel: "example.org:80",
|
||||||
model.SchemeLabel: "", model.MetricsPathLabel: "", model.AddressLabel: "example.com:80", model.ParamLabelPrefix + "testParam": "paramValue"},
|
"testParam": "paramValue",
|
||||||
|
model.SchemeLabel: "",
|
||||||
|
model.MetricsPathLabel: "",
|
||||||
|
model.AddressLabel: "example.org:80",
|
||||||
|
model.ParamLabelPrefix + "testParam": "paramValue",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
model.JobLabel: "test_job1",
|
||||||
|
model.InstanceLabel: "example.com:80",
|
||||||
|
"testParam": "paramValue",
|
||||||
|
model.SchemeLabel: "",
|
||||||
|
model.MetricsPathLabel: "",
|
||||||
|
model.AddressLabel: "example.com:80",
|
||||||
|
model.ParamLabelPrefix + "testParam": "paramValue"},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}, {
|
}, {
|
||||||
scrapeConfigs: []*config.ScrapeConfig{testJob1},
|
scrapeConfigs: []*config.ScrapeConfig{testJob1},
|
||||||
expected: map[string][]model.LabelSet{
|
expected: map[string][]model.LabelSet{
|
||||||
"test_job1:static:0:0": {
|
"test_job1:static:0:0": {
|
||||||
{model.JobLabel: "test_job1", model.InstanceLabel: "example.org:80", "testParam": "paramValue",
|
{
|
||||||
model.SchemeLabel: "", model.MetricsPathLabel: "", model.AddressLabel: "example.org:80", model.ParamLabelPrefix + "testParam": "paramValue"},
|
model.JobLabel: "test_job1",
|
||||||
{model.JobLabel: "test_job1", model.InstanceLabel: "example.com:80", "testParam": "paramValue",
|
model.InstanceLabel: "example.org:80",
|
||||||
model.SchemeLabel: "", model.MetricsPathLabel: "", model.AddressLabel: "example.com:80", model.ParamLabelPrefix + "testParam": "paramValue"},
|
"testParam": "paramValue",
|
||||||
|
model.SchemeLabel: "",
|
||||||
|
model.MetricsPathLabel: "",
|
||||||
|
model.AddressLabel: "example.org:80",
|
||||||
|
model.ParamLabelPrefix + "testParam": "paramValue",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
model.JobLabel: "test_job1",
|
||||||
|
model.InstanceLabel: "example.com:80",
|
||||||
|
"testParam": "paramValue",
|
||||||
|
model.SchemeLabel: "",
|
||||||
|
model.MetricsPathLabel: "",
|
||||||
|
model.AddressLabel: "example.com:80",
|
||||||
|
model.ParamLabelPrefix + "testParam": "paramValue",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}, {
|
}, {
|
||||||
scrapeConfigs: []*config.ScrapeConfig{testJob1, testJob2},
|
scrapeConfigs: []*config.ScrapeConfig{testJob1, testJob2},
|
||||||
expected: map[string][]model.LabelSet{
|
expected: map[string][]model.LabelSet{
|
||||||
"test_job1:static:0:0": {
|
"test_job1:static:0:0": {
|
||||||
{model.JobLabel: "test_job1", model.InstanceLabel: "example.org:80", "testParam": "paramValue",
|
{
|
||||||
model.SchemeLabel: "", model.MetricsPathLabel: "", model.AddressLabel: "example.org:80", model.ParamLabelPrefix + "testParam": "paramValue"},
|
model.JobLabel: "test_job1",
|
||||||
{model.JobLabel: "test_job1", model.InstanceLabel: "example.com:80", "testParam": "paramValue",
|
model.InstanceLabel: "example.org:80",
|
||||||
model.SchemeLabel: "", model.MetricsPathLabel: "", model.AddressLabel: "example.com:80", model.ParamLabelPrefix + "testParam": "paramValue"},
|
"testParam": "paramValue",
|
||||||
|
model.SchemeLabel: "",
|
||||||
|
model.MetricsPathLabel: "",
|
||||||
|
model.AddressLabel: "example.org:80",
|
||||||
|
model.ParamLabelPrefix + "testParam": "paramValue",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
model.JobLabel: "test_job1",
|
||||||
|
model.InstanceLabel: "example.com:80",
|
||||||
|
"testParam": "paramValue",
|
||||||
|
model.SchemeLabel: "",
|
||||||
|
model.MetricsPathLabel: "",
|
||||||
|
model.AddressLabel: "example.com:80",
|
||||||
|
model.ParamLabelPrefix + "testParam": "paramValue",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
"test_job2:static:0:0": {
|
"test_job2:static:0:0": {
|
||||||
{model.JobLabel: "test_job2", model.InstanceLabel: "example.org:8080", "foo": "bar", "new": "ox-ba",
|
{
|
||||||
model.SchemeLabel: "", model.MetricsPathLabel: "", model.AddressLabel: "example.org:8080"},
|
model.JobLabel: "test_job2",
|
||||||
{model.JobLabel: "test_job2", model.InstanceLabel: "example.com:8081", "foo": "bar", "new": "ox-ba",
|
model.InstanceLabel: "example.org:8080",
|
||||||
model.SchemeLabel: "", model.MetricsPathLabel: "", model.AddressLabel: "example.com:8081"},
|
"foo": "bar",
|
||||||
|
"new": "ox-ba",
|
||||||
|
model.SchemeLabel: "",
|
||||||
|
model.MetricsPathLabel: "",
|
||||||
|
model.AddressLabel: "example.org:8080",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
model.JobLabel: "test_job2",
|
||||||
|
model.InstanceLabel: "example.com:8081",
|
||||||
|
"foo": "bar",
|
||||||
|
"new": "ox-ba",
|
||||||
|
model.SchemeLabel: "",
|
||||||
|
model.MetricsPathLabel: "",
|
||||||
|
model.AddressLabel: "example.com:8081",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
"test_job2:static:0:1": {
|
"test_job2:static:0:1": {
|
||||||
{model.JobLabel: "test_job2", model.InstanceLabel: "foo.com:1234",
|
{
|
||||||
model.SchemeLabel: "", model.MetricsPathLabel: "", model.AddressLabel: "foo.com:1234"},
|
model.JobLabel: "test_job2",
|
||||||
|
model.InstanceLabel: "foo.com:1234",
|
||||||
|
model.SchemeLabel: "",
|
||||||
|
model.MetricsPathLabel: "",
|
||||||
|
model.AddressLabel: "foo.com:1234",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
"test_job2:static:0:2": {
|
"test_job2:static:0:2": {
|
||||||
{model.JobLabel: "test_job2", model.InstanceLabel: "fixed",
|
{
|
||||||
model.SchemeLabel: "", model.MetricsPathLabel: "", model.AddressLabel: "foo.com:1235"},
|
model.JobLabel: "test_job2",
|
||||||
|
model.InstanceLabel: "fixed",
|
||||||
|
model.SchemeLabel: "",
|
||||||
|
model.MetricsPathLabel: "",
|
||||||
|
model.AddressLabel: "foo.com:1235",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}, {
|
}, {
|
||||||
|
@ -360,18 +425,41 @@ func TestTargetManagerConfigUpdate(t *testing.T) {
|
||||||
scrapeConfigs: []*config.ScrapeConfig{testJob2},
|
scrapeConfigs: []*config.ScrapeConfig{testJob2},
|
||||||
expected: map[string][]model.LabelSet{
|
expected: map[string][]model.LabelSet{
|
||||||
"test_job2:static:0:0": {
|
"test_job2:static:0:0": {
|
||||||
{model.JobLabel: "test_job2", model.InstanceLabel: "example.org:8080", "foo": "bar", "new": "ox-ba",
|
{
|
||||||
model.SchemeLabel: "", model.MetricsPathLabel: "", model.AddressLabel: "example.org:8080"},
|
model.JobLabel: "test_job2",
|
||||||
{model.JobLabel: "test_job2", model.InstanceLabel: "example.com:8081", "foo": "bar", "new": "ox-ba",
|
model.InstanceLabel: "example.org:8080",
|
||||||
model.SchemeLabel: "", model.MetricsPathLabel: "", model.AddressLabel: "example.com:8081"},
|
"foo": "bar",
|
||||||
|
"new": "ox-ba",
|
||||||
|
model.SchemeLabel: "",
|
||||||
|
model.MetricsPathLabel: "",
|
||||||
|
model.AddressLabel: "example.org:8080"},
|
||||||
|
{
|
||||||
|
model.JobLabel: "test_job2",
|
||||||
|
model.InstanceLabel: "example.com:8081",
|
||||||
|
"foo": "bar",
|
||||||
|
"new": "ox-ba",
|
||||||
|
model.SchemeLabel: "",
|
||||||
|
model.MetricsPathLabel: "",
|
||||||
|
model.AddressLabel: "example.com:8081",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
"test_job2:static:0:1": {
|
"test_job2:static:0:1": {
|
||||||
{model.JobLabel: "test_job2", model.InstanceLabel: "foo.com:1234",
|
{
|
||||||
model.SchemeLabel: "", model.MetricsPathLabel: "", model.AddressLabel: "foo.com:1234"},
|
model.JobLabel: "test_job2",
|
||||||
|
model.InstanceLabel: "foo.com:1234",
|
||||||
|
model.SchemeLabel: "",
|
||||||
|
model.MetricsPathLabel: "",
|
||||||
|
model.AddressLabel: "foo.com:1234",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
"test_job2:static:0:2": {
|
"test_job2:static:0:2": {
|
||||||
{model.JobLabel: "test_job2", model.InstanceLabel: "fixed",
|
{
|
||||||
model.SchemeLabel: "", model.MetricsPathLabel: "", model.AddressLabel: "foo.com:1235"},
|
model.JobLabel: "test_job2",
|
||||||
|
model.InstanceLabel: "fixed",
|
||||||
|
model.SchemeLabel: "",
|
||||||
|
model.MetricsPathLabel: "",
|
||||||
|
model.AddressLabel: "foo.com:1235",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}, {
|
}, {
|
||||||
|
|
Loading…
Reference in a new issue