-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcollector.go
52 lines (43 loc) · 1.16 KB
/
collector.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package main
import (
log "github.com/Sirupsen/logrus"
"github.com/mohabusama/nodnod/stats"
"time"
)
// Collect stats form all connected NodNod servers.
func collect() ([]stats.NodeStats, error) {
allStats := []stats.NodeStats{}
chStat := make(chan *stats.NodeStats, len(globalNodes))
for _, node := range globalNodes {
go func(node *Node) {
log.Debug("Stat for node: ", node.String())
if st, err := node.Stat(); err == nil {
log.Debug("Received stats from: ", node.String())
chStat <- st
} else {
log.Debug("Received error from: ", node.String())
chStat <- &stats.NodeStats{
Name: node.Name(),
Error: err.Error(),
}
}
}(node)
}
// All nodes stats should be available within 10 secs!
timeout := time.After(10 * time.Second)
statCount := len(globalNodes)
timeoutErr := false
for statCount > 0 && !timeoutErr {
select {
case nodeStat := <-chStat:
log.Debug("Received stat channel: ", nodeStat)
allStats = append(allStats, *nodeStat)
statCount--
log.Debug("Stats updated: ", allStats, statCount)
case <-timeout:
log.Warn("Get all stats timedout")
timeoutErr = true
}
}
return allStats, nil
}