2013-01-04 13:41:47 +00:00
|
|
|
// Copyright 2013 Prometheus Team
|
|
|
|
// 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 retrieval
|
|
|
|
|
|
|
|
import (
|
2013-08-12 15:18:02 +00:00
|
|
|
"github.com/golang/glog"
|
2013-06-25 12:02:27 +00:00
|
|
|
"github.com/prometheus/client_golang/extraction"
|
2013-08-12 15:18:02 +00:00
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
clientmodel "github.com/prometheus/client_golang/model"
|
|
|
|
|
|
|
|
"github.com/prometheus/prometheus/config"
|
2013-01-04 13:41:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type TargetManager interface {
|
2013-06-11 15:54:58 +00:00
|
|
|
AddTarget(job config.JobConfig, t Target)
|
|
|
|
ReplaceTargets(job config.JobConfig, newTargets []Target)
|
2013-01-13 09:46:55 +00:00
|
|
|
Remove(t Target)
|
2013-04-30 18:20:14 +00:00
|
|
|
AddTargetsFromConfig(config config.Config)
|
2013-12-11 14:30:27 +00:00
|
|
|
Stop()
|
2013-02-22 20:07:35 +00:00
|
|
|
Pools() map[string]*TargetPool
|
2013-01-04 13:41:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type targetManager struct {
|
2014-07-29 18:31:11 +00:00
|
|
|
poolsByJob map[string]*TargetPool
|
|
|
|
ingester extraction.Ingester
|
2013-01-04 13:41:47 +00:00
|
|
|
}
|
|
|
|
|
2014-07-29 18:31:11 +00:00
|
|
|
func NewTargetManager(ingester extraction.Ingester) TargetManager {
|
2013-01-15 16:06:17 +00:00
|
|
|
return &targetManager{
|
2014-07-29 18:31:11 +00:00
|
|
|
ingester: ingester,
|
|
|
|
poolsByJob: make(map[string]*TargetPool),
|
2013-01-04 13:41:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-11 15:54:58 +00:00
|
|
|
func (m *targetManager) TargetPoolForJob(job config.JobConfig) *TargetPool {
|
2013-04-30 18:20:14 +00:00
|
|
|
targetPool, ok := m.poolsByJob[job.GetName()]
|
2013-01-04 13:41:47 +00:00
|
|
|
|
|
|
|
if !ok {
|
2013-06-11 20:59:27 +00:00
|
|
|
var provider TargetProvider = nil
|
|
|
|
if job.SdName != nil {
|
|
|
|
provider = NewSdTargetProvider(job)
|
|
|
|
}
|
|
|
|
|
2014-07-29 18:31:11 +00:00
|
|
|
interval := job.ScrapeInterval()
|
|
|
|
targetPool = NewTargetPool(m, provider, m.ingester, interval)
|
2013-08-12 15:18:02 +00:00
|
|
|
glog.Infof("Pool for job %s does not exist; creating and starting...", job.GetName())
|
2013-02-22 20:07:35 +00:00
|
|
|
|
2013-04-30 18:20:14 +00:00
|
|
|
m.poolsByJob[job.GetName()] = targetPool
|
2013-05-16 05:38:31 +00:00
|
|
|
// BUG(all): Investigate whether this auto-goroutine creation is desired.
|
2014-07-29 18:31:11 +00:00
|
|
|
go targetPool.Run()
|
2013-01-04 13:41:47 +00:00
|
|
|
}
|
2013-05-16 05:38:31 +00:00
|
|
|
|
|
|
|
return targetPool
|
2013-02-22 20:07:35 +00:00
|
|
|
}
|
|
|
|
|
2013-06-11 15:54:58 +00:00
|
|
|
func (m *targetManager) AddTarget(job config.JobConfig, t Target) {
|
|
|
|
targetPool := m.TargetPoolForJob(job)
|
2013-02-22 20:07:35 +00:00
|
|
|
targetPool.AddTarget(t)
|
2013-04-30 18:20:14 +00:00
|
|
|
m.poolsByJob[job.GetName()] = targetPool
|
2013-02-22 20:07:35 +00:00
|
|
|
}
|
2013-01-04 13:41:47 +00:00
|
|
|
|
2013-06-11 15:54:58 +00:00
|
|
|
func (m *targetManager) ReplaceTargets(job config.JobConfig, newTargets []Target) {
|
|
|
|
targetPool := m.TargetPoolForJob(job)
|
2014-07-29 18:31:11 +00:00
|
|
|
targetPool.ReplaceTargets(newTargets)
|
2013-01-04 13:41:47 +00:00
|
|
|
}
|
|
|
|
|
2013-01-13 09:46:55 +00:00
|
|
|
func (m targetManager) Remove(t Target) {
|
2013-01-04 13:41:47 +00:00
|
|
|
panic("not implemented")
|
|
|
|
}
|
2013-01-07 22:24:26 +00:00
|
|
|
|
2013-04-30 18:20:14 +00:00
|
|
|
func (m *targetManager) AddTargetsFromConfig(config config.Config) {
|
|
|
|
for _, job := range config.Jobs() {
|
2013-06-11 20:59:27 +00:00
|
|
|
if job.SdName != nil {
|
|
|
|
m.TargetPoolForJob(job)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2013-04-30 18:20:14 +00:00
|
|
|
for _, targetGroup := range job.TargetGroup {
|
2013-06-25 12:02:27 +00:00
|
|
|
baseLabels := clientmodel.LabelSet{
|
|
|
|
clientmodel.JobLabel: clientmodel.LabelValue(job.GetName()),
|
2013-01-07 22:24:26 +00:00
|
|
|
}
|
2013-04-30 18:20:14 +00:00
|
|
|
if targetGroup.Labels != nil {
|
|
|
|
for _, label := range targetGroup.Labels.Label {
|
2013-06-25 12:02:27 +00:00
|
|
|
baseLabels[clientmodel.LabelName(label.GetName())] = clientmodel.LabelValue(label.GetValue())
|
2013-04-30 18:20:14 +00:00
|
|
|
}
|
2013-01-07 22:24:26 +00:00
|
|
|
}
|
|
|
|
|
2013-04-30 18:20:14 +00:00
|
|
|
for _, endpoint := range targetGroup.Target {
|
2013-08-16 16:17:48 +00:00
|
|
|
target := NewTarget(endpoint, job.ScrapeTimeout(), baseLabels)
|
2013-06-11 15:54:58 +00:00
|
|
|
m.AddTarget(job, target)
|
2013-01-07 22:24:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-02-22 20:07:35 +00:00
|
|
|
|
2013-12-11 14:30:27 +00:00
|
|
|
func (m *targetManager) Stop() {
|
|
|
|
glog.Info("Target manager exiting...")
|
|
|
|
for _, p := range m.poolsByJob {
|
|
|
|
p.Stop()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-22 20:07:35 +00:00
|
|
|
// XXX: Not really thread-safe. Only used in /status page for now.
|
|
|
|
func (m *targetManager) Pools() map[string]*TargetPool {
|
|
|
|
return m.poolsByJob
|
|
|
|
}
|