The following query would return the top MIME types seen on HTTPArchive
select count(requestid) as ct, mimeType
FROM [httparchive:runs.latest_requests]
group by mimeType
having ct > 10000
order by ct desc;
same for mobile
select count(requestid) as ct, mimeType
FROM [httparchive:runs.latest_requests_mobile]
group by mimeType
having ct > 10000
order by ct desc;
Just wanted to see if I am missing anything above? Also isnt MIME type the same as response Content-Type. If not the same queries would be
select count(requestid) as ct, resp_content_type
FROM [httparchive:runs.latest_requests]
group by resp_content_type
having ct > 10000
order by ct desc;
Same for mobile
select count(requestid) as ct, resp_content_type
FROM [httparchive:runs.latest_requests_mobile]
group by resp_content_type
having ct > 10000
order by ct desc;
Just wondering how does the community go about solving such issues and if what I did was valid?