mirror of
https://github.com/prometheus/prometheus.git
synced 2025-02-02 08:31:11 -08:00
Sort targets on the status page.
Change-Id: I6b59c97ab50093c50b608e29be2304475bc5d9f6
This commit is contained in:
parent
cc27fb8aab
commit
89c43dd0d7
|
@ -14,6 +14,7 @@
|
||||||
package retrieval
|
package retrieval
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"sort"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -137,14 +138,27 @@ func (p *TargetPool) ReplaceTargets(newTargets []Target) {
|
||||||
wg.Wait()
|
wg.Wait()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Targets returns a copy of the current target list.
|
type targetsByURL []Target
|
||||||
|
|
||||||
|
func (s targetsByURL) Len() int {
|
||||||
|
return len(s)
|
||||||
|
}
|
||||||
|
func (s targetsByURL) Swap(i, j int) {
|
||||||
|
s[i], s[j] = s[j], s[i]
|
||||||
|
}
|
||||||
|
func (s targetsByURL) Less(i, j int) bool {
|
||||||
|
return s[i].URL() < s[j].URL()
|
||||||
|
}
|
||||||
|
|
||||||
|
// Targets returns a sorted copy of the current target list.
|
||||||
func (p *TargetPool) Targets() []Target {
|
func (p *TargetPool) Targets() []Target {
|
||||||
p.RLock()
|
p.RLock()
|
||||||
defer p.RUnlock()
|
defer p.RUnlock()
|
||||||
|
|
||||||
targets := make([]Target, 0, len(p.targetsByURL))
|
targets := make(targetsByURL, 0, len(p.targetsByURL))
|
||||||
for _, v := range p.targetsByURL {
|
for _, v := range p.targetsByURL {
|
||||||
targets = append(targets, v)
|
targets = append(targets, v)
|
||||||
}
|
}
|
||||||
|
sort.Sort(targets)
|
||||||
return targets
|
return targets
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue