mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-09 23:24:05 -08:00
f1fc7d717a
This roughly comprises the following changes: - index target pools by job instead of scrape interval - make targets within a pool exchangable while preserving existing health state for targets - allow exchanging targets via HTTP API (PUT) - show target lists in /status (experimental, for own debug use)
102 lines
2.3 KiB
Go
102 lines
2.3 KiB
Go
// 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 (
|
|
"github.com/prometheus/prometheus/config"
|
|
"github.com/prometheus/prometheus/model"
|
|
"github.com/prometheus/prometheus/retrieval/format"
|
|
"github.com/prometheus/prometheus/utility/test"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
type fakeTarget struct {
|
|
scrapeCount int
|
|
schedules []time.Time
|
|
interval time.Duration
|
|
scheduleIndex int
|
|
}
|
|
|
|
func (t fakeTarget) Address() string {
|
|
return "fake"
|
|
}
|
|
|
|
func (t fakeTarget) BaseLabels() model.LabelSet {
|
|
return model.LabelSet{}
|
|
}
|
|
|
|
func (t fakeTarget) Interval() time.Duration {
|
|
return t.interval
|
|
}
|
|
|
|
func (t *fakeTarget) Scrape(e time.Time, r chan format.Result) error {
|
|
t.scrapeCount++
|
|
|
|
return nil
|
|
}
|
|
|
|
func (t fakeTarget) State() TargetState {
|
|
return ALIVE
|
|
}
|
|
|
|
func (t *fakeTarget) scheduledFor() (time time.Time) {
|
|
time = t.schedules[t.scheduleIndex]
|
|
t.scheduleIndex++
|
|
|
|
return
|
|
}
|
|
|
|
func (t *fakeTarget) Merge(newTarget Target) {}
|
|
|
|
func testTargetManager(t test.Tester) {
|
|
results := make(chan format.Result, 5)
|
|
targetManager := NewTargetManager(results, 3)
|
|
testJob1 := &config.JobConfig{
|
|
Name: "test_job1",
|
|
}
|
|
testJob2 := &config.JobConfig{
|
|
Name: "test_job2",
|
|
}
|
|
|
|
target1GroupA := &fakeTarget{
|
|
schedules: []time.Time{time.Now()},
|
|
interval: time.Minute,
|
|
}
|
|
target2GroupA := &fakeTarget{
|
|
schedules: []time.Time{time.Now()},
|
|
interval: time.Minute,
|
|
}
|
|
|
|
targetManager.AddTarget(testJob1, target1GroupA, 0)
|
|
targetManager.AddTarget(testJob1, target2GroupA, 0)
|
|
|
|
target1GroupB := &fakeTarget{
|
|
schedules: []time.Time{time.Now()},
|
|
interval: time.Minute * 2,
|
|
}
|
|
|
|
targetManager.AddTarget(testJob2, target1GroupB, 0)
|
|
}
|
|
|
|
func TestTargetManager(t *testing.T) {
|
|
testTargetManager(t)
|
|
}
|
|
|
|
func BenchmarkTargetManager(b *testing.B) {
|
|
for i := 0; i < b.N; i++ {
|
|
testTargetManager(b)
|
|
}
|
|
}
|