mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 03:25:35 +00:00
9cb332f0e2
Uses the hooks added by tailscale/go#45 to instrument the reads and writes on the major code paths that do network I/O in the client. The convention is to use "<package>.<type>:<label>" as the annotation for the responsible code path. Enabled on iOS, macOS and Android only, since mobile platforms are the ones we're most interested in, and we are less sensitive to any throughput degradation due to the per-I/O callback overhead (macOS is also enabled for ease of testing during development). For now just exposed as counters on a /v0/sockstats PeerAPI endpoint. We also keep track of the current interface so that we can break out the stats by interface. Updates tailscale/corp#9230 Updates #3363 Signed-off-by: Mihai Parparita <mihai@tailscale.com>
40 lines
873 B
Go
40 lines
873 B
Go
// Copyright (c) Tailscale Inc & AUTHORS
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
// Package sockstats collects statistics about network sockets used by
|
|
// the Tailscale client. The context where sockets are used must be
|
|
// instrumented with the WithSockStats() function.
|
|
//
|
|
// Only available on POSIX platforms when built with Tailscale's fork of Go.
|
|
package sockstats
|
|
|
|
import (
|
|
"context"
|
|
|
|
"tailscale.com/wgengine/monitor"
|
|
)
|
|
|
|
type SockStats struct {
|
|
Stats map[string]SockStat
|
|
Interfaces []string
|
|
}
|
|
|
|
type SockStat struct {
|
|
TxBytes int64
|
|
RxBytes int64
|
|
TxBytesByInterface map[string]int64
|
|
RxBytesByInterface map[string]int64
|
|
}
|
|
|
|
func WithSockStats(ctx context.Context, label string) context.Context {
|
|
return withSockStats(ctx, label)
|
|
}
|
|
|
|
func Get() *SockStats {
|
|
return get()
|
|
}
|
|
|
|
func SetLinkMonitor(lm *monitor.Mon) {
|
|
setLinkMonitor(lm)
|
|
}
|