vote up 7 vote down star
3

How do you know if the HTTP Compression setup is working? Is there any tool I can use to see the compressed page before it is uncompressed by the browser? are there any tools to measure the amount compressed and response speed?

flag

9 Answers

vote up 9 vote down

For Windows, I highly recommend Fiddler, which is a client-side tool that proxies your web traffic and lets you examine it. It will show you if compression is on and working. It is also useful for many other client-side HTTP-related debugging and diagnosis tasks.

link|flag
I don't think it acts a proxy; I thought it tapped into the TCP/IP stack and <a href="msdn.microsoft.com/en-us/library/…; into transmissions. No? – Chris Oct 2 '08 at 3:04
LOL, never mind—it says right on the site that it's a proxy! – Chris Oct 2 '08 at 3:05
Yeah, it's a proxy. As long as the browser is well behaved and follows the usual mechanisms to determine what proxy to use, no special hooking is required. – Tim Farley Oct 2 '08 at 3:06
vote up 6 vote down

Wireshark, former Etherial has proved to be the most valuable tool for me.
Just choose a network adapter (if there are many), type "tcp port 80" into the filter field, press Capture - and you're all set.

link|flag
vote up 4 vote down

As well as something like Fiddler to look at the HTTP-level traffic, you can use Firefox with the Firebug and YSlow add-ons. YSlow gives you a lot of useful analysis about why your page might be slow - among these, it gives you the size of the various assets that your request downloads (HTML, CSS, JavaScript, images and other media etc). You can compare the size of pages with and without compression - if the HTML is smaller with the compression turned on, you know it's working. It will also give you values with an empty cache and a primed cache, allowing you to see how much you're saving for both new visitors and returning visitors.

link|flag
Another vote for YSlow here. It will warn you if any of your assets aren't gzipped. – Bob Somers Oct 3 '08 at 1:14
vote up 2 vote down

You can use this website: http://whatsmyip.org/mod_gzip_test/

link|flag
vote up 2 vote down

If you want to go really low tech, you can telnet to the http port (80?) on the target server and type in the request manually. If you get plain text back, then it's not gzipped, but if you get gibberish then you're onto something. If you need to see the structure of the headers you can copy them from Firefox using something like the livehttpheaders extension.

link|flag
vote up 2 vote down

For Firefox have a look at these add-ons:

  1. Firebug
  2. HttpFox

Both can be used to monitor your traffic to/from the browser (You can see the size of each response). I especially like Httpfox, a really nice add-on I use everyday.

link|flag
vote up 0 vote down

Use Fiddler to spy on your HTTP transmissions.

"Build Request" (create an HTTP GET) and check the "Content-Encoding" header of the HTTP response for your uncompressed page, and check its "Content-Length". Compare those to the same values for your compressed page.

"Content-Encoding" should be something like "gzip" for compressed responses, and your "Content-Length" should be shorter. You can use the "Content-Length" fields from both to determine the compression ratio.

link|flag
vote up 0 vote down

Thanks :) All your responses are helpful.

link|flag
vote up 0 vote down

We searched around a bit apparently there are a lot of sites which can verify that our pages are compressed.

link|flag
wanna share those links? – nickf Oct 3 '08 at 6:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.