8000 chore: add additional network telemetry stats & events by ethanndickson · Pull Request #13800 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

chore: add additional network telemetry stats & events #13800

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Jul 10, 2024
Merged
Prev Previous commit
Next Next commit
fix race
  • Loading branch information
ethanndickson committed Jul 9, 2024
commit 6214e2a47860a46c3a027659f26dcdede58b9913
3 changes: 2 additions & 1 deletion tailnet/telemetry.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,9 @@ func (b *TelemetryStore) pingPeer(conn *Conn) {
if b.connectedIP == nil {
return
}
ip := *b.connectedIP
go func() {
_, _, _, _ = conn.Ping(conn.watchCtx, *b.connectedIP)
_, _, _, _ = conn.Ping(conn.watchCtx, ip)
}()
}

Expand Down
Loading
0