mirror of
				https://github.com/prometheus/prometheus.git
				synced 2025-10-31 08:21:16 +01:00 
			
		
		
		
	Until now, targets pointing to localhost in the status view are linked to localhost, so you can't follow those links by clicking on them. This change converts the links to point to the hostname of the prometheus server. Before: <a href="http://localhost:9090/metrics.json">http://localhost:9090/metrics.json</a> After: <a href="http://hostname-of-prometheus-server:9090/metrics.json">http://localhost:9090/metrics.json</a>
		
			
				
	
	
		
			106 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			106 lines
		
	
	
		
			2.4 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) GlobalAddress() string {
 | |
| 	return t.Address()
 | |
| }
 | |
| 
 | |
| 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)
 | |
| 	}
 | |
| }
 |