Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any tool for monitoring HTTP response? [closed]

Are there any tool for monitoring HTTP responses? so open such tool up. give it URL. And it goes to it and brings you back not only body of http response but all http response.

like image 385
Rella Avatar asked Apr 28 '10 13:04

Rella


People also ask

What is the tool used for URL monitoring?

Dynatrace [freemium: free trial available] Dynatrace offers three types of synthetic monitors. The first one is a single-URL browser monitor that acts as a simulated user visiting your app or website and can be configured to work from any of their available locations with a frequency of 5 or more minutes.

What is an HTTP monitor?

The HTTP monitor emulates a web browser that supports the HTTP/1.0 protocol. To test the web server, the monitor sends it a request for a web page using any of the following HTTP request types: HEAD. The HEAD command attempts to access a web page and return the HTTP header.

What are the monitoring tools?

Monitoring tools are used to continuously keep track of the status of the system in use, in order to have the earliest warning of failures, defects or problems and to improve them. There are monitoring tools for servers, networks, databases, security, performance, website and internet usage, and applications.

Does HTTP response have body?

An HTTP response has both a header and a body. The header info tells the browser about the protocol being used, whether the request was successful, and what kind of content is included in the body. The body contains the contents (for example, HTML) for the browser to display.


2 Answers

Fiddler2

http://www.fiddlertool.com/fiddler2/version.asp

Fiddler acts as an http proxy, it lets you examine outgoing requests and incoming responses (raw headers, data, everything). It also lets you change requests, resend them and manipulate them directly. It is invaluable.

alt text
(source: fiddler2.com)

like image 83
vfilby Avatar answered Oct 16 '22 04:10

vfilby


Use Firebug,if you're using FireFox.

alt text
(source: getfirebug.com)

Examine HTTP Headers

alt text
(source: getfirebug.com)

XMLHttpRequest monitoring

alt text
(source: getfirebug.com)

Also checkout the light version Firebug Light which works on all the browsers out of the box. no setup required. Firebug Lite does show Http Response headers and network monitoring but it's good enough to play around with the DOM.

like image 22
this. __curious_geek Avatar answered Oct 16 '22 04:10

this. __curious_geek