2015-01-21 11:07:45 -08:00
|
|
|
// Copyright 2013 The Prometheus Authors
|
2013-01-04 03:17:31 -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.
|
2013-07-14 14:03:56 -07:00
|
|
|
|
2012-12-25 04:50:36 -08:00
|
|
|
package retrieval
|
|
|
|
|
|
|
|
import (
|
2017-01-13 05:48:01 -08:00
|
|
|
"errors"
|
2013-01-04 05:41:47 -08:00
|
|
|
"fmt"
|
2016-02-28 10:56:18 -08:00
|
|
|
"hash/fnv"
|
2015-07-22 08:48:22 -07:00
|
|
|
"io/ioutil"
|
2016-11-22 03:48:30 -08:00
|
|
|
"net"
|
2013-01-04 05:41:47 -08:00
|
|
|
"net/http"
|
2015-02-19 09:58:47 -08:00
|
|
|
"net/url"
|
2013-04-10 05:26:07 -07:00
|
|
|
"strings"
|
2014-12-03 09:07:23 -08:00
|
|
|
"sync"
|
2012-12-25 04:50:36 -08:00
|
|
|
"time"
|
2013-06-25 05:02:27 -07:00
|
|
|
|
2015-08-20 08:18:46 -07:00
|
|
|
"github.com/prometheus/common/model"
|
2013-07-30 08:18:07 -07:00
|
|
|
|
2015-04-20 03:24:25 -07:00
|
|
|
"github.com/prometheus/prometheus/config"
|
2016-12-29 00:27:30 -08:00
|
|
|
"github.com/prometheus/prometheus/pkg/labels"
|
|
|
|
"github.com/prometheus/prometheus/pkg/relabel"
|
2015-03-14 19:36:15 -07:00
|
|
|
"github.com/prometheus/prometheus/storage"
|
2015-05-29 04:30:30 -07:00
|
|
|
"github.com/prometheus/prometheus/util/httputil"
|
2012-12-25 04:50:36 -08:00
|
|
|
)
|
|
|
|
|
2015-05-18 04:14:41 -07:00
|
|
|
// TargetHealth describes the health state of a target.
|
2016-02-28 11:23:26 -08:00
|
|
|
type TargetHealth string
|
2015-08-21 14:01:08 -07:00
|
|
|
|
2016-02-28 11:23:26 -08:00
|
|
|
// The possible health states of a target based on the last performed scrape.
|
2012-12-25 04:50:36 -08:00
|
|
|
const (
|
2016-02-28 11:23:26 -08:00
|
|
|
HealthUnknown TargetHealth = "unknown"
|
|
|
|
HealthGood TargetHealth = "up"
|
|
|
|
HealthBad TargetHealth = "down"
|
2012-12-25 04:50:36 -08:00
|
|
|
)
|
|
|
|
|
2015-05-18 04:14:41 -07:00
|
|
|
// Target refers to a singular HTTP or HTTPS endpoint.
|
|
|
|
type Target struct {
|
2015-06-05 13:42:39 -07:00
|
|
|
// Labels before any processing.
|
2016-12-29 00:27:30 -08:00
|
|
|
discoveredLabels labels.Labels
|
2016-02-15 01:31:38 -08:00
|
|
|
// Any labels that are added to this target and its metrics.
|
2016-12-29 00:27:30 -08:00
|
|
|
labels labels.Labels
|
2016-02-28 10:56:18 -08:00
|
|
|
// Additional URL parmeters that are part of the target URL.
|
|
|
|
params url.Values
|
2016-02-28 11:23:26 -08:00
|
|
|
|
|
|
|
mtx sync.RWMutex
|
|
|
|
lastError error
|
|
|
|
lastScrape time.Time
|
|
|
|
health TargetHealth
|
2012-12-25 04:50:36 -08:00
|
|
|
}
|
|
|
|
|
2014-12-10 07:16:49 -08:00
|
|
|
// NewTarget creates a reasonably configured target for querying.
|
2016-12-29 00:27:30 -08:00
|
|
|
func NewTarget(labels, discoveredLabels labels.Labels, params url.Values) *Target {
|
2016-02-28 10:21:50 -08:00
|
|
|
return &Target{
|
2016-12-02 04:31:43 -08:00
|
|
|
labels: labels,
|
|
|
|
discoveredLabels: discoveredLabels,
|
|
|
|
params: params,
|
|
|
|
health: HealthUnknown,
|
2013-01-04 05:41:47 -08:00
|
|
|
}
|
2015-03-14 19:36:15 -07:00
|
|
|
}
|
2013-04-16 08:22:10 -07:00
|
|
|
|
2016-09-05 07:44:40 -07:00
|
|
|
// NewHTTPClient returns a new HTTP client configured for the given scrape configuration.
|
2016-11-23 03:41:19 -08:00
|
|
|
func NewHTTPClient(cfg config.HTTPClientConfig) (*http.Client, error) {
|
2016-09-19 13:47:51 -07:00
|
|
|
tlsConfig, err := httputil.NewTLSConfig(cfg.TLSConfig)
|
2015-09-06 16:07:44 -07:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2015-07-22 08:48:22 -07:00
|
|
|
}
|
2016-02-16 02:44:42 -08:00
|
|
|
// The only timeout we care about is the configured scrape timeout.
|
|
|
|
// It is applied on request. So we leave out any timings here.
|
|
|
|
var rt http.RoundTripper = &http.Transport{
|
2017-01-19 02:29:00 -08:00
|
|
|
Proxy: http.ProxyURL(cfg.ProxyURL.URL),
|
|
|
|
MaxIdleConns: 10000,
|
|
|
|
TLSClientConfig: tlsConfig,
|
2016-02-16 02:44:42 -08:00
|
|
|
}
|
2015-07-22 08:48:22 -07:00
|
|
|
|
|
|
|
// If a bearer token is provided, create a round tripper that will set the
|
|
|
|
// Authorization header correctly on each request.
|
|
|
|
bearerToken := cfg.BearerToken
|
|
|
|
if len(bearerToken) == 0 && len(cfg.BearerTokenFile) > 0 {
|
2015-08-24 06:07:27 -07:00
|
|
|
b, err := ioutil.ReadFile(cfg.BearerTokenFile)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("unable to read bearer token file %s: %s", cfg.BearerTokenFile, err)
|
2015-07-22 08:48:22 -07:00
|
|
|
}
|
2016-08-17 06:16:24 -07:00
|
|
|
bearerToken = strings.TrimSpace(string(b))
|
2015-07-22 08:48:22 -07:00
|
|
|
}
|
2015-08-24 06:07:27 -07:00
|
|
|
|
2015-07-22 08:48:22 -07:00
|
|
|
if len(bearerToken) > 0 {
|
|
|
|
rt = httputil.NewBearerAuthRoundTripper(bearerToken, rt)
|
|
|
|
}
|
|
|
|
|
2015-07-18 14:23:58 -07:00
|
|
|
if cfg.BasicAuth != nil {
|
|
|
|
rt = httputil.NewBasicAuthRoundTripper(cfg.BasicAuth.Username, cfg.BasicAuth.Password, rt)
|
|
|
|
}
|
|
|
|
|
2015-07-22 08:48:22 -07:00
|
|
|
// Return a new client with the configured round tripper.
|
|
|
|
return httputil.NewClient(rt), nil
|
|
|
|
}
|
|
|
|
|
2015-05-18 04:14:41 -07:00
|
|
|
func (t *Target) String() string {
|
2016-02-28 10:56:18 -08:00
|
|
|
return t.URL().String()
|
2016-02-12 06:43:27 -08:00
|
|
|
}
|
|
|
|
|
2016-02-28 10:56:18 -08:00
|
|
|
// hash returns an identifying hash for the target.
|
|
|
|
func (t *Target) hash() uint64 {
|
|
|
|
h := fnv.New64a()
|
2016-12-29 00:27:30 -08:00
|
|
|
h.Write([]byte(fmt.Sprintf("%016d", t.labels.Hash())))
|
2016-02-28 10:56:18 -08:00
|
|
|
h.Write([]byte(t.URL().String()))
|
2016-02-15 06:22:57 -08:00
|
|
|
|
2016-02-28 10:56:18 -08:00
|
|
|
return h.Sum64()
|
2016-02-15 06:22:57 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// offset returns the time until the next scrape cycle for the target.
|
|
|
|
func (t *Target) offset(interval time.Duration) time.Duration {
|
|
|
|
now := time.Now().UnixNano()
|
|
|
|
|
|
|
|
var (
|
|
|
|
base = now % int64(interval)
|
2016-02-28 10:56:18 -08:00
|
|
|
offset = t.hash() % uint64(interval)
|
2016-02-15 06:22:57 -08:00
|
|
|
next = base + int64(offset)
|
|
|
|
)
|
|
|
|
|
|
|
|
if next > int64(interval) {
|
|
|
|
next -= int64(interval)
|
|
|
|
}
|
|
|
|
return time.Duration(next)
|
|
|
|
}
|
|
|
|
|
2016-02-28 10:56:18 -08:00
|
|
|
// Labels returns a copy of the set of all public labels of the target.
|
2016-12-29 00:27:30 -08:00
|
|
|
func (t *Target) Labels() labels.Labels {
|
|
|
|
lset := make(labels.Labels, 0, len(t.labels))
|
|
|
|
for _, l := range t.labels {
|
|
|
|
if !strings.HasPrefix(l.Name, model.ReservedLabelPrefix) {
|
|
|
|
lset = append(lset, l)
|
2016-02-28 10:56:18 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return lset
|
2016-02-12 06:43:27 -08:00
|
|
|
}
|
|
|
|
|
2016-12-02 04:31:43 -08:00
|
|
|
// DiscoveredLabels returns a copy of the target's labels before any processing.
|
2016-12-29 00:27:30 -08:00
|
|
|
func (t *Target) DiscoveredLabels() labels.Labels {
|
|
|
|
lset := make(labels.Labels, len(t.discoveredLabels))
|
|
|
|
copy(lset, t.discoveredLabels)
|
|
|
|
return lset
|
2016-02-12 06:43:27 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// URL returns a copy of the target's URL.
|
|
|
|
func (t *Target) URL() *url.URL {
|
|
|
|
params := url.Values{}
|
|
|
|
|
2016-02-28 10:56:18 -08:00
|
|
|
for k, v := range t.params {
|
2016-02-12 06:43:27 -08:00
|
|
|
params[k] = make([]string, len(v))
|
|
|
|
copy(params[k], v)
|
|
|
|
}
|
2016-12-29 00:27:30 -08:00
|
|
|
for _, l := range t.labels {
|
|
|
|
if !strings.HasPrefix(l.Name, model.ParamLabelPrefix) {
|
2016-02-12 06:43:27 -08:00
|
|
|
continue
|
|
|
|
}
|
2016-12-29 00:27:30 -08:00
|
|
|
ks := l.Name[len(model.ParamLabelPrefix):]
|
2016-02-12 06:43:27 -08:00
|
|
|
|
|
|
|
if len(params[ks]) > 0 {
|
2016-12-29 00:27:30 -08:00
|
|
|
params[ks][0] = string(l.Value)
|
2016-02-12 06:43:27 -08:00
|
|
|
} else {
|
2016-12-29 00:27:30 -08:00
|
|
|
params[ks] = []string{l.Value}
|
2016-02-12 06:43:27 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &url.URL{
|
2016-12-29 00:27:30 -08:00
|
|
|
Scheme: string(t.labels.Get(model.SchemeLabel)),
|
|
|
|
Host: string(t.labels.Get(model.AddressLabel)),
|
|
|
|
Path: string(t.labels.Get(model.MetricsPathLabel)),
|
2016-02-12 06:43:27 -08:00
|
|
|
RawQuery: params.Encode(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-22 07:46:55 -08:00
|
|
|
func (t *Target) report(start time.Time, dur time.Duration, err error) {
|
2016-02-28 11:23:26 -08:00
|
|
|
t.mtx.Lock()
|
|
|
|
defer t.mtx.Unlock()
|
|
|
|
|
|
|
|
if err == nil {
|
|
|
|
t.health = HealthGood
|
|
|
|
} else {
|
|
|
|
t.health = HealthBad
|
|
|
|
}
|
|
|
|
|
|
|
|
t.lastError = err
|
|
|
|
t.lastScrape = start
|
|
|
|
}
|
|
|
|
|
|
|
|
// LastError returns the error encountered during the last scrape.
|
|
|
|
func (t *Target) LastError() error {
|
|
|
|
t.mtx.RLock()
|
|
|
|
defer t.mtx.RUnlock()
|
|
|
|
|
|
|
|
return t.lastError
|
|
|
|
}
|
|
|
|
|
|
|
|
// LastScrape returns the time of the last scrape.
|
|
|
|
func (t *Target) LastScrape() time.Time {
|
|
|
|
t.mtx.RLock()
|
|
|
|
defer t.mtx.RUnlock()
|
|
|
|
|
|
|
|
return t.lastScrape
|
|
|
|
}
|
|
|
|
|
|
|
|
// Health returns the last known health state of the target.
|
|
|
|
func (t *Target) Health() TargetHealth {
|
|
|
|
t.mtx.RLock()
|
|
|
|
defer t.mtx.RUnlock()
|
|
|
|
|
|
|
|
return t.health
|
2016-02-15 07:21:03 -08:00
|
|
|
}
|
|
|
|
|
2016-03-02 00:10:20 -08:00
|
|
|
// Targets is a sortable list of targets.
|
|
|
|
type Targets []*Target
|
|
|
|
|
|
|
|
func (ts Targets) Len() int { return len(ts) }
|
|
|
|
func (ts Targets) Less(i, j int) bool { return ts[i].URL().String() < ts[j].URL().String() }
|
|
|
|
func (ts Targets) Swap(i, j int) { ts[i], ts[j] = ts[j], ts[i] }
|
|
|
|
|
2017-01-30 08:30:28 -08:00
|
|
|
// limitAppender limits the number of total appended samples in a batch.
|
|
|
|
type limitAppender struct {
|
|
|
|
storage.Appender
|
|
|
|
|
|
|
|
limit int
|
|
|
|
i int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *limitAppender) Add(ref uint64, t int64, v float64) error {
|
|
|
|
if app.i+1 > app.limit {
|
|
|
|
return errors.New("sample limit exceeded")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := app.Appender.Add(ref, t, v); err != nil {
|
|
|
|
return fmt.Errorf("sample limit of %d exceeded", app.limit)
|
|
|
|
}
|
|
|
|
app.i++
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-08-21 14:34:51 -07:00
|
|
|
// Merges the ingested sample's metric with the label set. On a collision the
|
|
|
|
// value of the ingested label is stored in a label prefixed with 'exported_'.
|
|
|
|
type ruleLabelsAppender struct {
|
2016-12-29 00:27:30 -08:00
|
|
|
storage.Appender
|
|
|
|
labels labels.Labels
|
2015-08-21 14:34:51 -07:00
|
|
|
}
|
|
|
|
|
2017-01-13 05:48:01 -08:00
|
|
|
func (app ruleLabelsAppender) SetSeries(lset labels.Labels) (uint64, error) {
|
2016-12-29 00:27:30 -08:00
|
|
|
lb := labels.NewBuilder(lset)
|
|
|
|
|
|
|
|
for _, l := range app.labels {
|
|
|
|
lv := lset.Get(l.Name)
|
|
|
|
if lv != "" {
|
|
|
|
lb.Set(model.ExportedLabelPrefix+l.Name, lv)
|
2015-08-21 14:34:51 -07:00
|
|
|
}
|
2016-12-29 00:27:30 -08:00
|
|
|
lb.Set(l.Name, l.Value)
|
2015-08-21 14:34:51 -07:00
|
|
|
}
|
|
|
|
|
2017-01-13 05:48:01 -08:00
|
|
|
return app.Appender.SetSeries(lb.Labels())
|
2015-08-21 14:34:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
type honorLabelsAppender struct {
|
2016-12-29 00:27:30 -08:00
|
|
|
storage.Appender
|
|
|
|
labels labels.Labels
|
2015-08-21 14:34:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Merges the sample's metric with the given labels if the label is not
|
|
|
|
// already present in the metric.
|
|
|
|
// This also considers labels explicitly set to the empty string.
|
2017-01-13 05:48:01 -08:00
|
|
|
func (app honorLabelsAppender) SetSeries(lset labels.Labels) (uint64, error) {
|
2016-12-29 00:27:30 -08:00
|
|
|
lb := labels.NewBuilder(lset)
|
|
|
|
|
|
|
|
for _, l := range app.labels {
|
|
|
|
if lv := lset.Get(l.Name); lv == "" {
|
|
|
|
lb.Set(l.Name, l.Value)
|
2015-08-21 14:34:51 -07:00
|
|
|
}
|
|
|
|
}
|
2017-01-13 05:48:01 -08:00
|
|
|
return app.Appender.SetSeries(lb.Labels())
|
2015-08-21 14:34:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// Applies a set of relabel configurations to the sample's metric
|
|
|
|
// before actually appending it.
|
|
|
|
type relabelAppender struct {
|
2016-12-29 00:27:30 -08:00
|
|
|
storage.Appender
|
2015-08-21 14:34:51 -07:00
|
|
|
relabelings []*config.RelabelConfig
|
|
|
|
}
|
|
|
|
|
2017-01-13 05:48:01 -08:00
|
|
|
var errSeriesDropped = errors.New("series dropped")
|
2016-08-09 03:36:23 -07:00
|
|
|
|
2017-01-13 05:48:01 -08:00
|
|
|
func (app relabelAppender) SetSeries(lset labels.Labels) (uint64, error) {
|
|
|
|
lset = relabel.Process(lset, app.relabelings...)
|
2016-12-29 00:27:30 -08:00
|
|
|
if lset == nil {
|
2017-01-13 05:48:01 -08:00
|
|
|
return 0, errSeriesDropped
|
2015-08-21 14:34:51 -07:00
|
|
|
}
|
2017-01-13 05:48:01 -08:00
|
|
|
return app.Appender.SetSeries(lset)
|
2015-08-21 14:34:51 -07:00
|
|
|
}
|
2016-11-22 03:48:30 -08:00
|
|
|
|
|
|
|
// populateLabels builds a label set from the given label set and scrape configuration.
|
|
|
|
// It returns a label set before relabeling was applied as the second return value.
|
|
|
|
// Returns a nil label set if the target is dropped during relabeling.
|
2016-12-29 00:27:30 -08:00
|
|
|
func populateLabels(lset labels.Labels, cfg *config.ScrapeConfig) (res, orig labels.Labels, err error) {
|
|
|
|
if v := lset.Get(model.AddressLabel); v == "" {
|
2016-11-22 03:48:30 -08:00
|
|
|
return nil, nil, fmt.Errorf("no address")
|
|
|
|
}
|
2016-12-29 00:27:30 -08:00
|
|
|
// Copy labels into the labelset for the target if they are not set already.
|
|
|
|
scrapeLabels := []labels.Label{
|
|
|
|
{Name: model.JobLabel, Value: cfg.JobName},
|
|
|
|
{Name: model.MetricsPathLabel, Value: cfg.MetricsPath},
|
|
|
|
{Name: model.SchemeLabel, Value: cfg.Scheme},
|
2016-11-22 03:48:30 -08:00
|
|
|
}
|
2016-12-29 00:27:30 -08:00
|
|
|
lb := labels.NewBuilder(lset)
|
|
|
|
|
|
|
|
for _, l := range scrapeLabels {
|
|
|
|
if lv := lset.Get(l.Name); lv == "" {
|
|
|
|
lb.Set(l.Name, l.Value)
|
2016-11-22 03:48:30 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// Encode scrape query parameters as labels.
|
|
|
|
for k, v := range cfg.Params {
|
|
|
|
if len(v) > 0 {
|
2016-12-29 00:27:30 -08:00
|
|
|
lb.Set(model.ParamLabelPrefix+k, v[0])
|
2016-11-22 03:48:30 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-29 00:27:30 -08:00
|
|
|
preRelabelLabels := lb.Labels()
|
|
|
|
lset = relabel.Process(preRelabelLabels, cfg.RelabelConfigs...)
|
2016-11-22 03:48:30 -08:00
|
|
|
|
|
|
|
// Check if the target was dropped.
|
|
|
|
if lset == nil {
|
|
|
|
return nil, nil, nil
|
|
|
|
}
|
|
|
|
|
2016-12-29 00:27:30 -08:00
|
|
|
lb = labels.NewBuilder(lset)
|
|
|
|
|
2016-11-22 03:48:30 -08:00
|
|
|
// addPort checks whether we should add a default port to the address.
|
|
|
|
// If the address is not valid, we don't append a port either.
|
|
|
|
addPort := func(s string) bool {
|
|
|
|
// If we can split, a port exists and we don't have to add one.
|
|
|
|
if _, _, err := net.SplitHostPort(s); err == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
// If adding a port makes it valid, the previous error
|
|
|
|
// was not due to an invalid address and we can append a port.
|
|
|
|
_, _, err := net.SplitHostPort(s + ":1234")
|
|
|
|
return err == nil
|
|
|
|
}
|
2016-12-29 00:27:30 -08:00
|
|
|
addr := lset.Get(model.AddressLabel)
|
2016-11-22 03:48:30 -08:00
|
|
|
// If it's an address with no trailing port, infer it based on the used scheme.
|
2016-12-29 00:27:30 -08:00
|
|
|
if addPort(addr) {
|
2016-11-22 03:48:30 -08:00
|
|
|
// Addresses reaching this point are already wrapped in [] if necessary.
|
2016-12-29 00:27:30 -08:00
|
|
|
switch lset.Get(model.SchemeLabel) {
|
2016-11-22 03:48:30 -08:00
|
|
|
case "http", "":
|
|
|
|
addr = addr + ":80"
|
|
|
|
case "https":
|
|
|
|
addr = addr + ":443"
|
|
|
|
default:
|
|
|
|
return nil, nil, fmt.Errorf("invalid scheme: %q", cfg.Scheme)
|
|
|
|
}
|
2016-12-29 00:27:30 -08:00
|
|
|
lb.Set(model.AddressLabel, addr)
|
2016-11-22 03:48:30 -08:00
|
|
|
}
|
2016-12-29 00:27:30 -08:00
|
|
|
|
|
|
|
if err := config.CheckTargetAddress(model.LabelValue(addr)); err != nil {
|
2016-11-22 03:48:30 -08:00
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Meta labels are deleted after relabelling. Other internal labels propagate to
|
|
|
|
// the target which decides whether they will be part of their label set.
|
2016-12-29 00:27:30 -08:00
|
|
|
for _, l := range lset {
|
|
|
|
if strings.HasPrefix(l.Name, model.MetaLabelPrefix) {
|
|
|
|
lb.Del(l.Name)
|
2016-11-22 03:48:30 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Default the instance label to the target address.
|
2016-12-29 00:27:30 -08:00
|
|
|
if v := lset.Get(model.InstanceLabel); v == "" {
|
|
|
|
lb.Set(model.InstanceLabel, addr)
|
2016-11-22 03:48:30 -08:00
|
|
|
}
|
2016-12-29 00:27:30 -08:00
|
|
|
return lb.Labels(), preRelabelLabels, nil
|
2016-11-22 03:48:30 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// targetsFromGroup builds targets based on the given TargetGroup and config.
|
|
|
|
func targetsFromGroup(tg *config.TargetGroup, cfg *config.ScrapeConfig) ([]*Target, error) {
|
|
|
|
targets := make([]*Target, 0, len(tg.Targets))
|
|
|
|
|
2016-12-29 00:27:30 -08:00
|
|
|
for i, tlset := range tg.Targets {
|
|
|
|
lbls := make([]labels.Label, 0, len(tlset)+len(tg.Labels))
|
|
|
|
|
|
|
|
for ln, lv := range tlset {
|
|
|
|
lbls = append(lbls, labels.Label{Name: string(ln), Value: string(lv)})
|
|
|
|
}
|
2016-11-22 03:48:30 -08:00
|
|
|
for ln, lv := range tg.Labels {
|
2016-12-29 00:27:30 -08:00
|
|
|
if _, ok := tlset[ln]; !ok {
|
|
|
|
lbls = append(lbls, labels.Label{Name: string(ln), Value: string(lv)})
|
2016-11-22 03:48:30 -08:00
|
|
|
}
|
|
|
|
}
|
2016-12-29 00:27:30 -08:00
|
|
|
|
|
|
|
lset := labels.New(lbls...)
|
|
|
|
|
|
|
|
lbls, origLabels, err := populateLabels(lset, cfg)
|
2016-11-22 03:48:30 -08:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("instance %d in group %s: %s", i, tg, err)
|
|
|
|
}
|
2016-12-29 00:27:30 -08:00
|
|
|
if lbls != nil {
|
|
|
|
targets = append(targets, NewTarget(lbls, origLabels, cfg.Params))
|
2016-11-22 03:48:30 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return targets, nil
|
|
|
|
}
|