I just realized that the key to the solution is sort + dedup. sort alone would not fix the problem; in fact, sort 10 could misfire in some datasets, and by host is not a useful addition to sort. So, the solution should be | sort -Requests
| dedup 10 host
... View more