2017-04-10 18:54:12 +02:00
|
|
|
package runtime
|
2016-12-15 11:10:09 +01:00
|
|
|
|
2017-11-21 15:12:06 +01:00
|
|
|
const (
|
|
|
|
DISABLED_AUTOUPDATER = "disabled"
|
|
|
|
GLOBAL_SITE = "global"
|
|
|
|
)
|
2017-11-14 19:33:50 +01:00
|
|
|
|
2017-01-20 22:27:44 +01:00
|
|
|
// CounterMap to manage multiple values
|
2016-12-15 11:10:09 +01:00
|
|
|
type CounterMap map[string]uint32
|
|
|
|
|
2017-01-20 22:27:44 +01:00
|
|
|
// GlobalStats struct
|
2016-12-15 11:10:09 +01:00
|
|
|
type GlobalStats struct {
|
|
|
|
Clients uint32
|
|
|
|
ClientsWifi uint32
|
|
|
|
ClientsWifi24 uint32
|
|
|
|
ClientsWifi5 uint32
|
|
|
|
Gateways uint32
|
|
|
|
Nodes uint32
|
|
|
|
|
2017-11-14 19:33:50 +01:00
|
|
|
Firmwares CounterMap
|
|
|
|
Models CounterMap
|
|
|
|
Autoupdater CounterMap
|
2016-12-15 11:10:09 +01:00
|
|
|
}
|
|
|
|
|
2017-01-20 22:27:44 +01:00
|
|
|
//NewGlobalStats returns global statistics for InfluxDB
|
2017-11-21 15:12:06 +01:00
|
|
|
func NewGlobalStats(nodes *Nodes, sites []string) (result map[string]*GlobalStats) {
|
|
|
|
result = make(map[string]*GlobalStats)
|
|
|
|
|
|
|
|
result[GLOBAL_SITE] = &GlobalStats{
|
2017-11-14 19:33:50 +01:00
|
|
|
Firmwares: make(CounterMap),
|
|
|
|
Models: make(CounterMap),
|
|
|
|
Autoupdater: make(CounterMap),
|
2016-12-15 11:10:09 +01:00
|
|
|
}
|
|
|
|
|
2017-11-21 15:12:06 +01:00
|
|
|
for _, site := range sites {
|
|
|
|
result[site] = &GlobalStats{
|
|
|
|
Firmwares: make(CounterMap),
|
|
|
|
Models: make(CounterMap),
|
|
|
|
Autoupdater: make(CounterMap),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-20 14:46:29 +02:00
|
|
|
nodes.RLock()
|
2016-12-15 11:10:09 +01:00
|
|
|
for _, node := range nodes.List {
|
2017-04-10 18:54:12 +02:00
|
|
|
if node.Online {
|
2017-11-21 15:12:06 +01:00
|
|
|
result[GLOBAL_SITE].Add(node)
|
|
|
|
|
2016-12-15 11:10:09 +01:00
|
|
|
if info := node.Nodeinfo; info != nil {
|
2017-11-21 15:12:06 +01:00
|
|
|
site := info.System.SiteCode
|
|
|
|
if _, exist := result[site]; exist {
|
|
|
|
result[site].Add(node)
|
2017-11-14 19:33:50 +01:00
|
|
|
}
|
2016-12-15 11:10:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-20 14:46:29 +02:00
|
|
|
nodes.RUnlock()
|
2016-12-15 11:10:09 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-11-21 15:12:06 +01:00
|
|
|
// Add values to GlobalStats
|
|
|
|
// if node is online
|
|
|
|
func (s *GlobalStats) Add(node *Node) {
|
|
|
|
s.Nodes++
|
|
|
|
if stats := node.Statistics; stats != nil {
|
|
|
|
s.Clients += stats.Clients.Total
|
|
|
|
s.ClientsWifi24 += stats.Clients.Wifi24
|
|
|
|
s.ClientsWifi5 += stats.Clients.Wifi5
|
|
|
|
s.ClientsWifi += stats.Clients.Wifi
|
|
|
|
}
|
|
|
|
if node.IsGateway() {
|
|
|
|
s.Gateways++
|
|
|
|
}
|
|
|
|
if info := node.Nodeinfo; info != nil {
|
|
|
|
s.Models.Increment(info.Hardware.Model)
|
|
|
|
s.Firmwares.Increment(info.Software.Firmware.Release)
|
|
|
|
if info.Software.Autoupdater.Enabled {
|
|
|
|
s.Autoupdater.Increment(info.Software.Autoupdater.Branch)
|
|
|
|
} else {
|
|
|
|
s.Autoupdater.Increment(DISABLED_AUTOUPDATER)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-15 11:10:09 +01:00
|
|
|
// Increment counter in the map by one
|
|
|
|
// if the value is not empty
|
|
|
|
func (m CounterMap) Increment(key string) {
|
|
|
|
if key != "" {
|
2017-04-17 20:42:06 +02:00
|
|
|
m[key]++
|
2016-12-15 11:10:09 +01:00
|
|
|
}
|
|
|
|
}
|