forked from microsoft/ethr
-
Notifications
You must be signed in to change notification settings - Fork 11
/
stats.go
136 lines (116 loc) · 3.18 KB
/
stats.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
//-----------------------------------------------------------------------------
// Copyright (C) Microsoft. All rights reserved.
// Licensed under the MIT license.
// See LICENSE.txt file in the project root for full license information.
//-----------------------------------------------------------------------------
package main
import (
"sort"
"time"
"github.com/pkg/errors"
"github.com/microsoft/ethr-kai/internal/stats"
)
func getNetworkStats() (stats.EthrNetStats, error) {
osStats := stats.GetOSStats()
devStats, err := osStats.GetNetDevStats()
if err != nil {
return stats.EthrNetStats{}, errors.Wrap(err, "getNetworkStats: could not get net device stats")
}
sort.SliceStable(devStats, func(i, j int) bool {
return devStats[i].InterfaceName < devStats[j].InterfaceName
})
tcpStats, err := osStats.GetTCPStats()
if err != nil {
return stats.EthrNetStats{}, errors.Wrap(err, "getNetworkStats: could not get net TCP stats")
}
return stats.EthrNetStats{NetDevStats: devStats, TCPStats: tcpStats}, nil
}
func getNetDevStatDiff(curStats stats.EthrNetDevStat, prevNetStats stats.EthrNetStats, seconds uint64) stats.EthrNetDevStat {
for _, prevStats := range prevNetStats.NetDevStats {
if prevStats.InterfaceName != curStats.InterfaceName {
continue
}
if curStats.RxBytes >= prevStats.RxBytes {
curStats.RxBytes -= prevStats.RxBytes
} else {
curStats.RxBytes += (^uint64(0) - prevStats.RxBytes)
}
if curStats.TxBytes >= prevStats.TxBytes {
curStats.TxBytes -= prevStats.TxBytes
} else {
curStats.TxBytes += (^uint64(0) - prevStats.TxBytes)
}
if curStats.RxPkts >= prevStats.RxPkts {
curStats.RxPkts -= prevStats.RxPkts
} else {
curStats.RxPkts += (^uint64(0) - prevStats.RxPkts)
}
if curStats.TxPkts >= prevStats.TxPkts {
curStats.TxPkts -= prevStats.TxPkts
} else {
curStats.TxPkts += (^uint64(0) - prevStats.TxPkts)
}
break
}
curStats.RxBytes /= seconds
curStats.TxBytes /= seconds
curStats.RxPkts /= seconds
curStats.TxPkts /= seconds
return curStats
}
var statsEnabled bool
func startStatsTimer() {
if statsEnabled {
return
}
ticker := time.NewTicker(time.Second)
statsEnabled = true
go func() {
for statsEnabled {
select {
case <-ticker.C:
emitStats()
}
}
ticker.Stop()
return
}()
}
func stopStatsTimer() {
statsEnabled = false
}
var lastStatsTime time.Time = time.Now()
func timeToNextTick() time.Duration {
nextTick := lastStatsTime.Add(time.Second)
return time.Until(nextTick)
}
// emit stats info to configured ui
func emitStats() {
d := time.Since(lastStatsTime)
lastStatsTime = time.Now()
seconds := int64(d.Seconds())
if seconds < 1 {
seconds = 1
}
ui.emitTestResultBegin()
emitTestResults(uint64(seconds))
ui.emitTestResultEnd()
stats, err := getNetworkStats()
if err != nil {
ui.printErr("emitStats: could not get network stats: %v", err)
}
ui.emitStats(stats)
ui.paint(uint64(seconds))
}
func emitTestResults(s uint64) {
gSessionLock.RLock()
defer gSessionLock.RUnlock()
for _, k := range gSessionKeys {
v := gSessions[k]
ui.emitTestResult(v, TCP, s)
ui.emitTestResult(v, UDP, s)
ui.emitTestResult(v, HTTP, s)
ui.emitTestResult(v, HTTPS, s)
ui.emitTestResult(v, ICMP, s)
}
}