Lines Matching full:tcpconnlat
1 Demonstrations of tcpconnlat, the Linux eBPF/bcc version.
9 # ./tcpconnlat
30 tcpconnlat measures the time from any connection to the response packet, even
36 # ./tcpconnlat -h
37 usage: tcpconnlat [-h] [-t] [-p PID] [-L] [-4 | -6] [-v] [duration_ms]
54 ./tcpconnlat # trace all TCP connect()s
55 ./tcpconnlat 1 # trace connection latency slower than 1 ms
56 ./tcpconnlat 0.1 # trace connection latency slower than 100 us
57 ./tcpconnlat -t # include timestamps
58 ./tcpconnlat -p 181 # only trace PID 181
59 ./tcpconnlat -L # include LPORT while printing outputs
60 ./tcpconnlat -4 # trace IPv4 family only
61 ./tcpconnlat -6 # trace IPv6 family only