Advertisement
Guest User

Untitled

a guest
Jan 27th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. Measure response time of PR server for a full build and histogram:
  2.  
  3. $ cut -d":" -f3 ../../prserv-full-build-1.log | cut -d" " -f2 | cut -c -4 | sort |uniq -c
  4. 14 0.02
  5. 26 0.03
  6. 22 0.04
  7. 20 0.05
  8. 24 0.06
  9. 8 0.07
  10. 4 0.08
  11. 2 0.09
  12. 2 0.11
  13. 2 0.12
  14. 2 0.34
  15.  
  16. for a simple build adding "stress -c 24" to run in parallel, adds 0.02 sec to the average PR server response time.
  17.  
  18. $ cat prserv-idle.log | cut -d":" -f3 | cut -d" " -f2 | st --avg --sd
  19. mean stddev
  20. 0.0566617 0.0230208
  21.  
  22. $ cat prserv-idle-2.log | cut -d":" -f3 | cut -d" " -f2 | st --avg --sd
  23. mean stddev
  24. 0.0544475 0.0211526
  25.  
  26. $ cat prserv-cpu-24-3.log | cut -d":" -f3 | cut -d" " -f2 | st --avg --sd
  27. mean stddev
  28. 0.0769975 0.0240502
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement