Home
last modified time | relevance | path

Searched full:tcprtt (Results 1 – 11 of 11) sorted by relevance

/external/bcc/tools/
Dtcprtt_example.txt1 Demonstrations of tcprtt, the Linux eBPF/bcc version.
23 During wrk testing, run tcprtt:
24 # ./tcprtt -i 1 -d 10 -m
38 The wrk output shows that the latency of web service is not stable, and tcprtt
45 # ./tcprtt -i 1 -d 10 -m -a 192.168.122.200 -A 192.168.122.100 -P 80
49 For example, run tcprtt on a storage node to show initiators' rtt histogram:
50 # ./tcprtt -i 1 --lport 3260 --byraddr -e
122 # ./tcprtt -i 1 -e
144 # ./tcprtt -h
145 usage: tcprtt [-h] [-i INTERVAL] [-d DURATION] [-T] [-m] [-p LPORT]
[all …]
Dtcprtt.py4 # tcprtt Summarize TCP RTT as a histogram. For Linux, uses BCC, eBPF.
6 # USAGE: tcprtt [-h] [-T] [-D] [-m] [-i INTERVAL] [-d DURATION]
25 ./tcprtt # summarize TCP RTT
26 ./tcprtt -i 1 -d 10 # print 1 second summaries, 10 times
27 ./tcprtt -m -T # summarize in millisecond, and timestamps
28 ./tcprtt -p # filter for local port
29 ./tcprtt -P # filter for remote port
30 ./tcprtt -a # filter for local address
31 ./tcprtt -A # filter for remote address
32 ./tcprtt -b # show sockets histogram by local address
[all …]
/external/bcc/man/man8/
Dtcprtt.81 .TH tcprtt 8 "2020-08-23" "USER COMMANDS"
3 tcprtt \- Trace TCP RTT of established connections. Uses Linux eBPF/bcc.
5 .B tcprtt [\-h] [\-T] [\-D] [\-m] [\-p LPORT] [\-P RPORT] [\-a LADDR] [\-A RADDR] [\-i INTERVAL] [\…
64 .B tcprtt \-i 1 \-d 10
68 .B tcprtt \-m \-T
72 .B tcprtt \-i 1 \-d 10 \-A 192.168.1.100 \-P 80
76 .B tcprtt \-i 3 --lport 80 --byraddr
80 .B tcprtt \-4
84 .B tcprtt \-6
/external/bcc/libbpf-tools/
Dtcprtt.c4 // Based on tcprtt(8) from BCC by zhenwei pi.
15 #include "tcprtt.h"
16 #include "tcprtt.skel.h"
40 const char *argp_program_version = "tcprtt 0.1";
49 " tcprtt # summarize TCP RTT\n"
50 " tcprtt -i 1 -d 10 # print 1 second summaries, 10 times\n"
51 " tcprtt -m -T # summarize in millisecond, and timestamps\n"
52 " tcprtt -p # filter for local port\n"
53 " tcprtt -P # filter for remote port\n"
54 " tcprtt -a # filter for local address\n"
[all …]
DAndroid.bp546 name: "tcprtt.bpf.o",
547 srcs: ["tcprtt.bpf.c"],
552 name: "tcprtt.skel.h",
553 srcs: [":tcprtt.bpf.o"],
554 out: ["tcprtt.skel.h"],
559 name: "tcprtt",
560 srcs: ["tcprtt.c"],
561 generated_headers: ["tcprtt.skel.h"],
D.gitignore58 /tcprtt
Dtcprtt.bpf.c8 #include "tcprtt.h"
DMakefile85 tcprtt \
/external/bcc/debian/
Dchangelog6 * libbpf tool update: memleak, tcprtt, tcpconnlat, funclatency, syscount, cpufreq, biosnoop.
94 * new libbpf-tools: filetop, exitsnoop, tcprtt
160 * new bcc tools: tcprtt, netqtop, swapin, tcpsynbl, threadsnoop
/external/bcc/snap/
Dsnapcraft.yaml311 tcprtt:
312 command: bcc-wrapper tcprtt
/external/bcc/
DREADME.md166 - tools/[tcprtt](tools/tcprtt.py): Trace TCP round trip time. [Examples](tools/tcprtt_example.txt).