Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/tcprtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def addrfilter(addr, src_or_dest):
print_header = "Local Address"
elif args.byraddr:
bpf_text = bpf_text.replace('STORE_HIST', 'key.addr = addr = daddr;')
print_header = "Remote Addres"
print_header = "Remote Address"
else:
bpf_text = bpf_text.replace('STORE_HIST', 'key.addr = addr = 0;')
print_header = "All Addresses"
Expand Down
8 changes: 4 additions & 4 deletions tools/tcprtt_example.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ For example, run tcprtt on a storage node to show initiators' rtt histogram:
Tracing TCP RTT... Hit Ctrl-C to end.


Remote Addres = 10.194.87.206 [AVG 170]
Remote Address = 10.194.87.206 [AVG 170]
usecs : count distribution
0 -> 1 : 0 | |
2 -> 3 : 0 | |
Expand All @@ -67,7 +67,7 @@ Remote Addres = 10.194.87.206 [AVG 170]
2048 -> 4095 : 14 | |
4096 -> 8191 : 10 | |

Remote Addres = 10.194.87.197 [AVG 4293]
Remote Address = 10.194.87.197 [AVG 4293]
usecs : count distribution
0 -> 1 : 0 | |
2 -> 3 : 0 | |
Expand All @@ -83,7 +83,7 @@ Remote Addres = 10.194.87.197 [AVG 4293]
2048 -> 4095 : 12 |********************************** |
4096 -> 8191 : 14 |****************************************|

Remote Addres = 10.194.88.148 [AVG 6215]
Remote Address = 10.194.88.148 [AVG 6215]
usecs : count distribution
0 -> 1 : 0 | |
2 -> 3 : 0 | |
Expand All @@ -99,7 +99,7 @@ Remote Addres = 10.194.88.148 [AVG 6215]
2048 -> 4095 : 0 | |
4096 -> 8191 : 2 |****************************************|

Remote Addres = 10.194.87.90 [AVG 2188]
Remote Address = 10.194.87.90 [AVG 2188]
usecs : count distribution
0 -> 1 : 0 | |
2 -> 3 : 0 | |
Expand Down
Loading