-
Notifications
You must be signed in to change notification settings - Fork 404
Expand file tree
/
Copy pathstats.go
More file actions
190 lines (162 loc) · 4.37 KB
/
stats.go
File metadata and controls
190 lines (162 loc) · 4.37 KB
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
//-----------------------------------------------------------------------------
// 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"
)
type ethrNetStat struct {
netDevStats []ethrNetDevStat
tcpStats ethrTCPStat
}
type ethrNetDevStat struct {
interfaceName string
rxBytes uint64
txBytes uint64
rxPkts uint64
txPkts uint64
}
type ethrTCPStat struct {
segRetrans uint64
}
func getNetworkStats() ethrNetStat {
stats := ðrNetStat{}
getNetDevStats(stats)
/*
devStats, err := osStats.GetNetDevStats()
if err != nil {
return stats.EthrNetStats{}, errors.Wrap(err, "getNetworkStats: could not get net device stats")
}
*/
sort.SliceStable(stats.netDevStats, func(i, j int) bool {
return stats.netDevStats[i].interfaceName < stats.netDevStats[j].interfaceName
})
getTCPStats(stats)
/*
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
*/
return *stats
}
func getNetDevStatDiff(curStats ethrNetDevStat, prevNetStats ethrNetStat, seconds uint64) 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
var statsTicker *time.Ticker
func startStatsTimer() {
if statsEnabled {
return
}
// Start stats at second boundary so that client can align to server's timing
SleepUntilNextWholeSecond()
lastStatsTime = time.Now()
statsTicker = time.NewTicker(time.Second)
statsEnabled = true
go func() {
for statsEnabled {
select {
case <-statsTicker.C:
emitStats()
}
}
statsTicker.Stop()
}()
}
// startStatsTimerAt starts the stats timer synchronized to a specific start time
// This is used when client and server have negotiated an exact start time
// Uses absolute time targets to prevent timer drift
func startStatsTimerAt(startTime time.Time) {
if statsEnabled {
return
}
// Set lastStatsTime to the synchronized start time
lastStatsTime = startTime
statsEnabled = true
// Run the timer in a goroutine so we don't block the caller
go func() {
// Use absolute time targets to prevent drift
// Each measurement happens at exactly startTime + N seconds
interval := 1
for statsEnabled {
// Calculate the exact target time for this interval
targetTime := startTime.Add(time.Duration(interval) * time.Second)
sleepDuration := time.Until(targetTime)
if sleepDuration > 0 {
time.Sleep(sleepDuration)
}
if !statsEnabled {
break
}
emitStats()
interval++
}
}()
}
func stopStatsTimer() {
statsEnabled = false
}
var lastStatsTime time.Time = time.Now()
func timeToNextTick() time.Duration {
nextTick := lastStatsTime.Add(time.Second)
return time.Until(nextTick)
}
func emitStats() {
d := time.Since(lastStatsTime)
lastStatsTime = time.Now()
// Use actual elapsed time for accurate rate calculations
seconds := d.Seconds()
if seconds < 1.0 {
seconds = 1.0
}
ui.emitTestResultBegin()
emitTestResults(seconds)
ui.emitTestResultEnd()
ui.emitStats(getNetworkStats())
ui.paint(uint64(seconds))
}
func emitTestResults(s float64) {
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, ICMP, s)
}
}