Skip to content

Instantly share code, notes, and snippets.

@kakugirai
Created July 23, 2018 07:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kakugirai/05c6695151c8adc529e391c4f93ce425 to your computer and use it in GitHub Desktop.
Save kakugirai/05c6695151c8adc529e391c4f93ce425 to your computer and use it in GitHub Desktop.
RSS PSS Ref tag queue
3.30 1.28 0.25 sender 1
2.30 0.27 0.24 receiver 1
4.46 2.34 0.27 sender 2
2.46 0.32 0.27 receiver 2
5.53 3.38 0.30 sender 3
2.57 0.37 0.29 receiver 3
6.62 4.44 0.31 sender 4
2.53 0.41 0.32 receiver 4
7.60 5.47 0.35 sender 5
2.66 0.46 0.34 receiver 5
@kakugirai
Copy link
Author

kakugirai commented Jul 23, 2018

Measure the Working Set Size

wss.pl can be found here

sudo ./wss.pl -C `pgrep -o pkt-gen` 1 # receiver
sudo ./wss.pl -C `pgrep -n pkt-gen` 1 # sender
  • RSS(MB): Resident Set Size (Mbytes). The main memory size.
  • PSS(MB): Proportional Set Size (Mbytes). Accounting for shared pages.
  • Ref(MB): Referenced (Mbytes) during the specified duration. This is the working set size metric.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment