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 (
|
2015-03-14 19:36:15 -07:00
|
|
|
"errors"
|
2013-01-04 05:41:47 -08:00
|
|
|
"fmt"
|
2014-07-29 11:31:11 -07:00
|
|
|
"math/rand"
|
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
|
|
|
"os"
|
|
|
|
"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
|
|
|
|
2013-08-12 08:18:02 -07:00
|
|
|
"github.com/golang/glog"
|
2013-06-25 05:02:27 -07:00
|
|
|
"github.com/prometheus/client_golang/extraction"
|
2014-06-18 10:43:15 -07:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2013-06-25 05:02:27 -07:00
|
|
|
|
|
|
|
clientmodel "github.com/prometheus/client_golang/model"
|
2013-07-30 08:18:07 -07:00
|
|
|
|
2015-03-14 19:36:15 -07:00
|
|
|
"github.com/prometheus/prometheus/storage"
|
2013-07-30 08:18:07 -07:00
|
|
|
"github.com/prometheus/prometheus/utility"
|
2012-12-25 04:50:36 -08:00
|
|
|
)
|
|
|
|
|
2013-06-25 05:02:27 -07:00
|
|
|
const (
|
2014-12-10 07:16:49 -08:00
|
|
|
// InstanceLabel is the label value used for the instance label.
|
2013-06-25 05:02:27 -07:00
|
|
|
InstanceLabel clientmodel.LabelName = "instance"
|
2014-12-10 07:16:49 -08:00
|
|
|
// ScrapeHealthMetricName is the metric name for the synthetic health
|
|
|
|
// variable.
|
2014-12-26 04:37:30 -08:00
|
|
|
scrapeHealthMetricName clientmodel.LabelValue = "up"
|
|
|
|
// ScrapeTimeMetricName is the metric name for the synthetic scrape duration
|
|
|
|
// variable.
|
|
|
|
scrapeDurationMetricName clientmodel.LabelValue = "scrape_duration_seconds"
|
2015-03-14 19:36:15 -07:00
|
|
|
// Capacity of the channel to buffer samples during ingestion.
|
|
|
|
ingestedSamplesCap = 256
|
2014-06-18 10:43:15 -07:00
|
|
|
|
|
|
|
// Constants for instrumentation.
|
2014-07-23 10:55:33 -07:00
|
|
|
namespace = "prometheus"
|
2014-07-29 11:31:11 -07:00
|
|
|
interval = "interval"
|
2014-06-18 10:43:15 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2015-03-14 19:36:15 -07:00
|
|
|
errIngestChannelFull = errors.New("ingestion channel full")
|
|
|
|
|
2014-06-18 10:43:15 -07:00
|
|
|
localhostRepresentations = []string{"http://127.0.0.1", "http://localhost"}
|
|
|
|
|
2014-07-29 11:31:11 -07:00
|
|
|
targetIntervalLength = prometheus.NewSummaryVec(
|
|
|
|
prometheus.SummaryOpts{
|
|
|
|
Namespace: namespace,
|
|
|
|
Name: "target_interval_length_seconds",
|
|
|
|
Help: "Actual intervals between scrapes.",
|
2015-01-21 06:42:25 -08:00
|
|
|
Objectives: map[float64]float64{0.01: 0.001, 0.05: 0.005, 0.5: 0.05, 0.90: 0.01, 0.99: 0.001},
|
2014-07-29 11:31:11 -07:00
|
|
|
},
|
|
|
|
[]string{interval},
|
|
|
|
)
|
2013-04-10 05:26:07 -07:00
|
|
|
)
|
|
|
|
|
2014-06-18 10:43:15 -07:00
|
|
|
func init() {
|
2014-07-29 11:31:11 -07:00
|
|
|
prometheus.MustRegister(targetIntervalLength)
|
2014-06-18 10:43:15 -07:00
|
|
|
}
|
2013-06-25 05:02:27 -07:00
|
|
|
|
2014-12-10 07:16:49 -08:00
|
|
|
// TargetState describes the state of a Target.
|
2012-12-25 04:50:36 -08:00
|
|
|
type TargetState int
|
|
|
|
|
2013-03-21 03:52:42 -07:00
|
|
|
func (t TargetState) String() string {
|
|
|
|
switch t {
|
2014-12-10 07:16:49 -08:00
|
|
|
case Unknown:
|
2013-03-21 03:52:42 -07:00
|
|
|
return "UNKNOWN"
|
2015-03-07 12:50:02 -08:00
|
|
|
case Healthy:
|
|
|
|
return "HEALTHY"
|
|
|
|
case Unhealthy:
|
|
|
|
return "UNHEALTHY"
|
2013-03-21 03:52:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
panic("unknown state")
|
|
|
|
}
|
|
|
|
|
2012-12-25 04:50:36 -08:00
|
|
|
const (
|
2015-03-07 12:50:02 -08:00
|
|
|
// Unknown is the state of a Target before it is first scraped.
|
2014-12-10 07:16:49 -08:00
|
|
|
Unknown TargetState = iota
|
2015-03-07 12:50:02 -08:00
|
|
|
// Healthy is the state of a Target that has been successfully scraped.
|
|
|
|
Healthy
|
|
|
|
// Unhealthy is the state of a Target that was scraped unsuccessfully.
|
|
|
|
Unhealthy
|
2012-12-25 04:50:36 -08:00
|
|
|
)
|
|
|
|
|
2013-01-13 01:46:55 -08:00
|
|
|
// A Target represents an endpoint that should be interrogated for metrics.
|
|
|
|
//
|
|
|
|
// The protocol described by this type will likely change in future iterations,
|
|
|
|
// as it offers no good support for aggregated targets and fan out. Thusly,
|
|
|
|
// it is likely that the current Target and target uses will be
|
|
|
|
// wrapped with some resolver type.
|
|
|
|
//
|
|
|
|
// For the future, the Target protocol will abstract away the exact means that
|
|
|
|
// metrics are retrieved and deserialized from the given instance to which it
|
|
|
|
// refers.
|
2015-03-14 19:36:15 -07:00
|
|
|
//
|
|
|
|
// Target implements extraction.Ingester.
|
2013-01-13 01:46:55 -08:00
|
|
|
type Target interface {
|
2013-05-21 06:31:27 -07:00
|
|
|
// Return the last encountered scrape error, if any.
|
|
|
|
LastError() error
|
2014-07-29 09:28:48 -07:00
|
|
|
// Return the health of the target.
|
|
|
|
State() TargetState
|
|
|
|
// Return the last time a scrape was attempted.
|
|
|
|
LastScrape() time.Time
|
2014-12-17 10:40:59 -08:00
|
|
|
// The URL to which the Target corresponds. Out of all of the available
|
2013-01-13 01:46:55 -08:00
|
|
|
// points in this interface, this one is the best candidate to change given
|
|
|
|
// the ways to express the endpoint.
|
2014-12-17 10:40:59 -08:00
|
|
|
URL() string
|
2015-02-20 07:21:13 -08:00
|
|
|
// Used to populate the `instance` label in metrics.
|
|
|
|
InstanceIdentifier() string
|
2014-12-17 10:40:59 -08:00
|
|
|
// The URL as seen from other hosts. References to localhost are resolved
|
2013-04-10 05:26:07 -07:00
|
|
|
// to the address of the prometheus server.
|
2014-12-17 10:40:59 -08:00
|
|
|
GlobalURL() string
|
2013-02-22 12:07:35 -08:00
|
|
|
// Return the target's base labels.
|
2013-06-25 05:02:27 -07:00
|
|
|
BaseLabels() clientmodel.LabelSet
|
2015-03-18 10:53:43 -07:00
|
|
|
// Return the target's base labels without job and instance label. That's
|
|
|
|
// useful for display purposes.
|
|
|
|
BaseLabelsWithoutJobAndInstance() clientmodel.LabelSet
|
2014-10-09 06:59:47 -07:00
|
|
|
// SetBaseLabelsFrom queues a replacement of the current base labels by
|
|
|
|
// the labels of the given target. The method returns immediately after
|
|
|
|
// queuing. The actual replacement of the base labels happens
|
|
|
|
// asynchronously (but most likely before the next scrape for the target
|
|
|
|
// begins).
|
|
|
|
SetBaseLabelsFrom(Target)
|
2014-07-29 11:31:11 -07:00
|
|
|
// Scrape target at the specified interval.
|
2015-03-14 19:36:15 -07:00
|
|
|
RunScraper(storage.SampleAppender, time.Duration)
|
2014-07-29 11:31:11 -07:00
|
|
|
// Stop scraping, synchronous.
|
|
|
|
StopScraper()
|
2015-03-14 19:36:15 -07:00
|
|
|
// Ingest implements extraction.Ingester.
|
|
|
|
Ingest(clientmodel.Samples) error
|
2013-01-12 12:22:59 -08:00
|
|
|
}
|
2013-01-04 05:41:47 -08:00
|
|
|
|
2013-01-13 01:46:55 -08:00
|
|
|
// target is a Target that refers to a singular HTTP or HTTPS endpoint.
|
|
|
|
type target struct {
|
2013-05-21 06:31:27 -07:00
|
|
|
// The current health state of the target.
|
|
|
|
state TargetState
|
|
|
|
// The last encountered scrape error, if any.
|
|
|
|
lastError error
|
2014-07-29 09:28:48 -07:00
|
|
|
// The last time a scrape was attempted.
|
|
|
|
lastScrape time.Time
|
2014-12-03 09:07:23 -08:00
|
|
|
// Closing scraperStopping signals that scraping should stop.
|
|
|
|
scraperStopping chan struct{}
|
|
|
|
// Closing scraperStopped signals that scraping has been stopped.
|
|
|
|
scraperStopped chan struct{}
|
2014-10-09 06:59:47 -07:00
|
|
|
// Channel to queue base labels to be replaced.
|
|
|
|
newBaseLabels chan clientmodel.LabelSet
|
2015-03-14 19:36:15 -07:00
|
|
|
// Channel to buffer ingested samples.
|
|
|
|
ingestedSamples chan clientmodel.Samples
|
2013-01-04 03:17:31 -08:00
|
|
|
|
2014-12-17 10:40:59 -08:00
|
|
|
url string
|
2013-01-13 01:46:55 -08:00
|
|
|
// What is the deadline for the HTTP or HTTPS against this endpoint.
|
2015-03-14 19:36:15 -07:00
|
|
|
deadline time.Duration
|
2013-01-13 01:46:55 -08:00
|
|
|
// Any base labels that are added to this target and its metrics.
|
2013-06-25 05:02:27 -07:00
|
|
|
baseLabels clientmodel.LabelSet
|
2013-05-21 06:31:27 -07:00
|
|
|
// The HTTP client used to scrape the target's endpoint.
|
2013-08-09 10:32:55 -07:00
|
|
|
httpClient *http.Client
|
2014-12-03 09:07:23 -08:00
|
|
|
|
|
|
|
// Mutex protects lastError, lastScrape, state, and baseLabels. Writing
|
|
|
|
// the above must only happen in the goroutine running the RunScraper
|
|
|
|
// loop, and it must happen under the lock. In that way, no mutex lock
|
|
|
|
// is required for reading the above in the goroutine running the
|
|
|
|
// RunScraper loop, but only for reading in other goroutines.
|
|
|
|
sync.Mutex
|
2012-12-25 04:50:36 -08:00
|
|
|
}
|
|
|
|
|
2014-12-10 07:16:49 -08:00
|
|
|
// NewTarget creates a reasonably configured target for querying.
|
2014-12-17 10:40:59 -08:00
|
|
|
func NewTarget(url string, deadline time.Duration, baseLabels clientmodel.LabelSet) Target {
|
2015-03-14 19:36:15 -07:00
|
|
|
t := &target{
|
2014-12-17 10:40:59 -08:00
|
|
|
url: url,
|
2015-03-14 19:36:15 -07:00
|
|
|
deadline: deadline,
|
2014-12-03 09:07:23 -08:00
|
|
|
httpClient: utility.NewDeadlineClient(deadline),
|
|
|
|
scraperStopping: make(chan struct{}),
|
|
|
|
scraperStopped: make(chan struct{}),
|
|
|
|
newBaseLabels: make(chan clientmodel.LabelSet, 1),
|
2013-01-04 05:41:47 -08:00
|
|
|
}
|
2015-03-18 10:53:43 -07:00
|
|
|
t.baseLabels = clientmodel.LabelSet{InstanceLabel: clientmodel.LabelValue(t.InstanceIdentifier())}
|
2015-03-14 19:36:15 -07:00
|
|
|
for baseLabel, baseValue := range baseLabels {
|
2015-03-18 10:53:43 -07:00
|
|
|
t.baseLabels[baseLabel] = baseValue
|
2013-04-16 08:22:10 -07:00
|
|
|
}
|
2015-03-14 19:36:15 -07:00
|
|
|
return t
|
|
|
|
}
|
2013-04-16 08:22:10 -07:00
|
|
|
|
2015-03-14 19:36:15 -07:00
|
|
|
// Ingest implements Target and extraction.Ingester.
|
|
|
|
func (t *target) Ingest(s clientmodel.Samples) error {
|
|
|
|
// Since the regular case is that ingestedSamples is ready to receive,
|
|
|
|
// first try without setting a timeout so that we don't need to allocate
|
|
|
|
// a timer most of the time.
|
|
|
|
select {
|
|
|
|
case t.ingestedSamples <- s:
|
|
|
|
return nil
|
|
|
|
default:
|
|
|
|
select {
|
|
|
|
case t.ingestedSamples <- s:
|
|
|
|
return nil
|
|
|
|
case <-time.After(t.deadline / 10):
|
|
|
|
return errIngestChannelFull
|
|
|
|
}
|
2014-12-26 04:37:30 -08:00
|
|
|
}
|
2013-04-16 08:22:10 -07:00
|
|
|
}
|
|
|
|
|
2014-10-09 06:59:47 -07:00
|
|
|
// RunScraper implements Target.
|
2015-03-14 19:36:15 -07:00
|
|
|
func (t *target) RunScraper(sampleAppender storage.SampleAppender, interval time.Duration) {
|
2014-11-11 07:41:20 -08:00
|
|
|
defer func() {
|
|
|
|
// Need to drain t.newBaseLabels to not make senders block during shutdown.
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-t.newBaseLabels:
|
|
|
|
// Do nothing.
|
|
|
|
default:
|
2014-12-03 09:07:23 -08:00
|
|
|
close(t.scraperStopped)
|
2014-11-11 07:41:20 -08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2014-07-29 11:31:11 -07:00
|
|
|
jitterTimer := time.NewTimer(time.Duration(float64(interval) * rand.Float64()))
|
|
|
|
select {
|
|
|
|
case <-jitterTimer.C:
|
2014-12-03 09:07:23 -08:00
|
|
|
case <-t.scraperStopping:
|
2014-11-11 15:38:28 -08:00
|
|
|
jitterTimer.Stop()
|
2014-07-29 11:31:11 -07:00
|
|
|
return
|
2013-04-26 08:26:52 -07:00
|
|
|
}
|
2014-07-29 11:31:11 -07:00
|
|
|
jitterTimer.Stop()
|
|
|
|
|
|
|
|
ticker := time.NewTicker(interval)
|
|
|
|
defer ticker.Stop()
|
|
|
|
|
2014-12-03 09:07:23 -08:00
|
|
|
t.Lock() // Writing t.lastScrape requires the lock.
|
2014-07-29 09:28:48 -07:00
|
|
|
t.lastScrape = time.Now()
|
2014-12-03 09:07:23 -08:00
|
|
|
t.Unlock()
|
2015-03-14 19:36:15 -07:00
|
|
|
t.scrape(sampleAppender)
|
2014-11-11 15:38:28 -08:00
|
|
|
|
|
|
|
// Explanation of the contraption below:
|
|
|
|
//
|
2014-12-03 09:07:23 -08:00
|
|
|
// In case t.newBaseLabels or t.scraperStopping have something to receive,
|
2014-11-11 15:38:28 -08:00
|
|
|
// we want to read from those channels rather than starting a new scrape
|
|
|
|
// (which might take very long). That's why the outer select has no
|
2014-12-03 09:07:23 -08:00
|
|
|
// ticker.C. Should neither t.newBaseLabels nor t.scraperStopping have
|
2014-11-11 15:38:28 -08:00
|
|
|
// anything to receive, we go into the inner select, where ticker.C is
|
|
|
|
// in the mix.
|
2014-07-29 11:31:11 -07:00
|
|
|
for {
|
|
|
|
select {
|
2014-10-09 06:59:47 -07:00
|
|
|
case newBaseLabels := <-t.newBaseLabels:
|
2014-12-03 09:07:23 -08:00
|
|
|
t.Lock() // Writing t.baseLabels requires the lock.
|
2014-10-09 06:59:47 -07:00
|
|
|
t.baseLabels = newBaseLabels
|
2014-12-03 09:07:23 -08:00
|
|
|
t.Unlock()
|
|
|
|
case <-t.scraperStopping:
|
2014-07-29 11:31:11 -07:00
|
|
|
return
|
2014-11-11 15:38:28 -08:00
|
|
|
default:
|
|
|
|
select {
|
|
|
|
case newBaseLabels := <-t.newBaseLabels:
|
2014-12-03 09:07:23 -08:00
|
|
|
t.Lock() // Writing t.baseLabels requires the lock.
|
2014-11-11 15:38:28 -08:00
|
|
|
t.baseLabels = newBaseLabels
|
2014-12-03 09:07:23 -08:00
|
|
|
t.Unlock()
|
|
|
|
case <-t.scraperStopping:
|
2014-11-11 15:38:28 -08:00
|
|
|
return
|
|
|
|
case <-ticker.C:
|
2015-02-06 07:44:56 -08:00
|
|
|
took := time.Since(t.lastScrape)
|
2014-12-03 09:07:23 -08:00
|
|
|
t.Lock() // Write t.lastScrape requires locking.
|
2014-11-11 15:38:28 -08:00
|
|
|
t.lastScrape = time.Now()
|
2014-12-03 09:07:23 -08:00
|
|
|
t.Unlock()
|
2015-02-06 07:44:56 -08:00
|
|
|
targetIntervalLength.WithLabelValues(interval.String()).Observe(
|
|
|
|
float64(took) / float64(time.Second), // Sub-second precision.
|
|
|
|
)
|
2015-03-14 19:36:15 -07:00
|
|
|
t.scrape(sampleAppender)
|
2014-11-11 15:38:28 -08:00
|
|
|
}
|
2014-07-29 11:31:11 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-09 06:59:47 -07:00
|
|
|
// StopScraper implements Target.
|
2014-07-29 11:31:11 -07:00
|
|
|
func (t *target) StopScraper() {
|
2014-12-03 09:07:23 -08:00
|
|
|
close(t.scraperStopping)
|
|
|
|
<-t.scraperStopped
|
2013-04-26 08:26:52 -07:00
|
|
|
}
|
2013-01-22 09:37:01 -08:00
|
|
|
|
2014-09-03 07:46:29 -07:00
|
|
|
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`
|
2013-06-27 09:32:05 -07:00
|
|
|
|
2015-03-14 19:36:15 -07:00
|
|
|
func (t *target) scrape(sampleAppender storage.SampleAppender) (err error) {
|
2014-07-29 11:31:11 -07:00
|
|
|
timestamp := clientmodel.Now()
|
2013-04-26 08:26:52 -07:00
|
|
|
defer func(start time.Time) {
|
2014-12-03 09:07:23 -08:00
|
|
|
t.Lock() // Writing t.state and t.lastError requires the lock.
|
2014-07-29 11:31:11 -07:00
|
|
|
if err == nil {
|
2015-03-07 12:50:02 -08:00
|
|
|
t.state = Healthy
|
2014-07-29 11:31:11 -07:00
|
|
|
} else {
|
2015-03-07 12:50:02 -08:00
|
|
|
t.state = Unhealthy
|
2012-12-25 04:50:36 -08:00
|
|
|
}
|
2014-07-29 11:31:11 -07:00
|
|
|
t.lastError = err
|
2014-12-03 09:07:23 -08:00
|
|
|
t.Unlock()
|
2015-03-14 19:36:15 -07:00
|
|
|
t.recordScrapeHealth(sampleAppender, timestamp, err == nil, time.Since(start))
|
2013-04-26 08:26:52 -07:00
|
|
|
}(time.Now())
|
2013-01-04 05:41:47 -08:00
|
|
|
|
2014-12-17 10:40:59 -08:00
|
|
|
req, err := http.NewRequest("GET", t.URL(), nil)
|
2013-06-27 09:32:05 -07:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
req.Header.Add("Accept", acceptHeader)
|
|
|
|
|
2013-08-09 10:32:55 -07:00
|
|
|
resp, err := t.httpClient.Do(req)
|
2013-04-26 08:26:52 -07:00
|
|
|
if err != nil {
|
2013-05-15 22:38:31 -07:00
|
|
|
return err
|
2013-04-26 08:26:52 -07:00
|
|
|
}
|
2014-07-26 14:41:05 -07:00
|
|
|
defer resp.Body.Close()
|
2014-06-16 08:04:08 -07:00
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
return fmt.Errorf("server returned HTTP status %s", resp.Status)
|
|
|
|
}
|
2013-01-04 05:41:47 -08:00
|
|
|
|
2013-06-25 05:02:27 -07:00
|
|
|
processor, err := extraction.ProcessorForRequestHeader(resp.Header)
|
2013-04-26 08:26:52 -07:00
|
|
|
if err != nil {
|
2013-05-15 22:38:31 -07:00
|
|
|
return err
|
2013-04-26 08:26:52 -07:00
|
|
|
}
|
2013-01-04 05:41:47 -08:00
|
|
|
|
2015-03-14 19:36:15 -07:00
|
|
|
t.ingestedSamples = make(chan clientmodel.Samples, ingestedSamplesCap)
|
2013-08-10 08:02:28 -07:00
|
|
|
|
2013-08-12 06:15:41 -07:00
|
|
|
processOptions := &extraction.ProcessOptions{
|
2013-08-10 08:02:28 -07:00
|
|
|
Timestamp: timestamp,
|
2013-08-12 06:15:41 -07:00
|
|
|
}
|
2015-03-14 19:36:15 -07:00
|
|
|
go func() {
|
|
|
|
err = processor.ProcessSingle(resp.Body, t, processOptions)
|
|
|
|
close(t.ingestedSamples)
|
|
|
|
}()
|
|
|
|
|
|
|
|
for samples := range t.ingestedSamples {
|
|
|
|
for _, s := range samples {
|
|
|
|
s.Metric.MergeFromLabelSet(t.baseLabels, clientmodel.ExporterLabelPrefix)
|
|
|
|
sampleAppender.Append(s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return err
|
2012-12-25 04:50:36 -08:00
|
|
|
}
|
2013-01-12 12:22:59 -08:00
|
|
|
|
2014-10-09 06:59:47 -07:00
|
|
|
// LastError implements Target.
|
2014-07-29 09:28:48 -07:00
|
|
|
func (t *target) LastError() error {
|
2014-12-03 09:07:23 -08:00
|
|
|
t.Lock()
|
|
|
|
defer t.Unlock()
|
2014-07-29 09:28:48 -07:00
|
|
|
return t.lastError
|
2013-01-12 12:22:59 -08:00
|
|
|
}
|
2013-01-13 01:46:55 -08:00
|
|
|
|
2014-10-09 06:59:47 -07:00
|
|
|
// State implements Target.
|
2014-07-29 09:28:48 -07:00
|
|
|
func (t *target) State() TargetState {
|
2014-12-03 09:07:23 -08:00
|
|
|
t.Lock()
|
|
|
|
defer t.Unlock()
|
2014-07-29 09:28:48 -07:00
|
|
|
return t.state
|
2013-07-15 06:11:41 -07:00
|
|
|
}
|
|
|
|
|
2014-10-09 06:59:47 -07:00
|
|
|
// LastScrape implements Target.
|
2014-07-29 09:28:48 -07:00
|
|
|
func (t *target) LastScrape() time.Time {
|
2014-12-03 09:07:23 -08:00
|
|
|
t.Lock()
|
|
|
|
defer t.Unlock()
|
2014-07-29 09:28:48 -07:00
|
|
|
return t.lastScrape
|
2013-05-21 06:31:27 -07:00
|
|
|
}
|
|
|
|
|
2014-12-17 10:40:59 -08:00
|
|
|
// URL implements Target.
|
|
|
|
func (t *target) URL() string {
|
|
|
|
return t.url
|
2013-01-13 01:46:55 -08:00
|
|
|
}
|
|
|
|
|
2015-02-20 07:21:13 -08:00
|
|
|
// InstanceIdentifier implements Target.
|
|
|
|
func (t *target) InstanceIdentifier() string {
|
2015-02-19 09:58:47 -08:00
|
|
|
u, err := url.Parse(t.url)
|
|
|
|
if err != nil {
|
2015-02-20 07:21:13 -08:00
|
|
|
glog.Warningf("Could not parse instance URL when generating identifier, using raw URL: %s", err)
|
2015-02-19 09:58:47 -08:00
|
|
|
return t.url
|
|
|
|
}
|
2015-02-20 07:21:13 -08:00
|
|
|
// If we are given a port in the host port, use that.
|
|
|
|
if strings.Contains(u.Host, ":") {
|
|
|
|
return u.Host
|
|
|
|
}
|
|
|
|
// Otherwise, deduce port based on protocol.
|
|
|
|
if u.Scheme == "http" {
|
|
|
|
return fmt.Sprintf("%s:80", u.Host)
|
|
|
|
} else if u.Scheme == "https" {
|
|
|
|
return fmt.Sprintf("%s:443", u.Host)
|
|
|
|
}
|
|
|
|
|
|
|
|
glog.Warningf("Unknown scheme %s when generating identifier, using raw URL.", u.Scheme)
|
|
|
|
return t.url
|
2015-02-19 09:58:47 -08:00
|
|
|
}
|
|
|
|
|
2014-12-17 10:40:59 -08:00
|
|
|
// GlobalURL implements Target.
|
|
|
|
func (t *target) GlobalURL() string {
|
|
|
|
url := t.url
|
2013-04-10 05:26:07 -07:00
|
|
|
hostname, err := os.Hostname()
|
|
|
|
if err != nil {
|
2014-12-17 10:40:59 -08:00
|
|
|
glog.Warningf("Couldn't get hostname: %s, returning target.URL()", err)
|
|
|
|
return url
|
2013-04-10 05:26:07 -07:00
|
|
|
}
|
|
|
|
for _, localhostRepresentation := range localhostRepresentations {
|
2014-12-17 10:40:59 -08:00
|
|
|
url = strings.Replace(url, localhostRepresentation, fmt.Sprintf("http://%s", hostname), -1)
|
2013-04-10 05:26:07 -07:00
|
|
|
}
|
2014-12-17 10:40:59 -08:00
|
|
|
return url
|
2013-04-10 05:26:07 -07:00
|
|
|
}
|
|
|
|
|
2014-10-09 06:59:47 -07:00
|
|
|
// BaseLabels implements Target.
|
2013-07-14 09:48:03 -07:00
|
|
|
func (t *target) BaseLabels() clientmodel.LabelSet {
|
2014-12-03 09:07:23 -08:00
|
|
|
t.Lock()
|
|
|
|
defer t.Unlock()
|
2013-02-22 12:07:35 -08:00
|
|
|
return t.baseLabels
|
|
|
|
}
|
|
|
|
|
2015-03-18 10:53:43 -07:00
|
|
|
// BaseLabelsWithoutJobAndInstance implements Target.
|
|
|
|
func (t *target) BaseLabelsWithoutJobAndInstance() clientmodel.LabelSet {
|
|
|
|
ls := clientmodel.LabelSet{}
|
|
|
|
for ln, lv := range t.BaseLabels() {
|
|
|
|
if ln != clientmodel.JobLabel && ln != InstanceLabel {
|
|
|
|
ls[ln] = lv
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return ls
|
|
|
|
}
|
|
|
|
|
2014-10-09 06:59:47 -07:00
|
|
|
// SetBaseLabelsFrom implements Target.
|
|
|
|
func (t *target) SetBaseLabelsFrom(newTarget Target) {
|
2014-12-17 10:40:59 -08:00
|
|
|
if t.URL() != newTarget.URL() {
|
2013-02-22 12:07:35 -08:00
|
|
|
panic("targets don't refer to the same endpoint")
|
|
|
|
}
|
2014-10-09 06:59:47 -07:00
|
|
|
t.newBaseLabels <- newTarget.BaseLabels()
|
2013-01-13 01:46:55 -08:00
|
|
|
}
|
2015-03-14 19:36:15 -07:00
|
|
|
|
|
|
|
func (t *target) recordScrapeHealth(sampleAppender storage.SampleAppender, timestamp clientmodel.Timestamp, healthy bool, scrapeDuration time.Duration) {
|
|
|
|
healthMetric := clientmodel.Metric{}
|
|
|
|
durationMetric := clientmodel.Metric{}
|
|
|
|
for label, value := range t.baseLabels {
|
|
|
|
healthMetric[label] = value
|
|
|
|
durationMetric[label] = value
|
|
|
|
}
|
|
|
|
healthMetric[clientmodel.MetricNameLabel] = clientmodel.LabelValue(scrapeHealthMetricName)
|
|
|
|
durationMetric[clientmodel.MetricNameLabel] = clientmodel.LabelValue(scrapeDurationMetricName)
|
|
|
|
|
|
|
|
healthValue := clientmodel.SampleValue(0)
|
|
|
|
if healthy {
|
|
|
|
healthValue = clientmodel.SampleValue(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
healthSample := &clientmodel.Sample{
|
|
|
|
Metric: healthMetric,
|
|
|
|
Timestamp: timestamp,
|
|
|
|
Value: healthValue,
|
|
|
|
}
|
|
|
|
durationSample := &clientmodel.Sample{
|
|
|
|
Metric: durationMetric,
|
|
|
|
Timestamp: timestamp,
|
|
|
|
Value: clientmodel.SampleValue(float64(scrapeDuration) / float64(time.Second)),
|
|
|
|
}
|
|
|
|
|
|
|
|
sampleAppender.Append(healthSample)
|
|
|
|
sampleAppender.Append(durationSample)
|
|
|
|
}
|