praveenbankbazaar / httparchive

Automatically exported from code.google.com/p/httparchive
0 stars 0 forks source link

New Interesting Stat #406

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Here's an interesting stat I'd like to see:

I believe you already have the avg. number of HTTP request but I would love to 
also see the biggest amount of HTTP requests made (e.g. top 10-20 sites with 
most requests). Also what's the biggest amount of HTTP request made by a site?

Stats like that can help you understand the worst case scenarios a network tool 
could face when profiling web sites.

Thanks!

Original issue reported on code.google.com by josue.r...@gmail.com on 16 Oct 2013 at 10:05

GoogleCodeExporter commented 9 years ago
We used to do this but it didn't get much attention. It's interesting but IMO 
not actionable. I think it's better to leave this to BigQuery, for example: 

SELECT rank, reqTotal, url
FROM httparchive:runs.latest_pages
ORDER BY reqTotal desc
LIMIT 10

https://bigquery.cloud.google.com/

Original comment by stevesou...@gmail.com on 24 Oct 2013 at 5:08