mirror of
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git
synced 2025-10-14 05:11:19 -04:00
Merge remote-tracking branch 'gitlab/mr/423'
This commit is contained in:
commit
0e0ca8721e
1 changed files with 4 additions and 2 deletions
|
@ -86,8 +86,10 @@ type EventOnProxyStats struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (e EventOnProxyStats) String() string {
|
func (e EventOnProxyStats) String() string {
|
||||||
statString := fmt.Sprintf("In the last %v, there were %v completed connections. Traffic Relayed ↓ %v %v, ↑ %v %v.",
|
statString := fmt.Sprintf("In the last %v, there were %v completed connections. Traffic Relayed ↓ %v %v (%.2f %v%s), ↑ %v %v (%.2f %v%s).",
|
||||||
e.SummaryInterval.String(), e.ConnectionCount, e.InboundBytes, e.InboundUnit, e.OutboundBytes, e.OutboundUnit)
|
e.SummaryInterval.String(), e.ConnectionCount,
|
||||||
|
e.InboundBytes, e.InboundUnit, float64(e.InboundBytes)/e.SummaryInterval.Seconds(), e.InboundUnit, "/s",
|
||||||
|
e.OutboundBytes, e.OutboundUnit, float64(e.OutboundBytes)/e.SummaryInterval.Seconds(), e.OutboundUnit, "/s")
|
||||||
return statString
|
return statString
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue