How can I find the response time of a HTTP request through a Socket - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T16:01:59Zhttp://stackoverflow.com/feeds/question/68999http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/68999/how-can-i-find-the-response-time-of-a-http-request-through-a-socket3How can I find the response time of a HTTP request through a SocketMartin Andersson2008-09-16T02:46:46Z2008-09-16T04:54:13Z
<p>I'm using a Java socket, connected to a server.
If I send a HEADER http request, how can I measure the response time from the server? Must I use a provided java timer, or is there an easier way?</p>
<p>I'm looking for a short answer, I don't want to use other protocols etc. Obviously do I neither want to have a solution that ties my application to a specific OS. Please people, IN-CODE solutions only. </p>
http://stackoverflow.com/questions/68999/how-can-i-find-the-response-time-of-a-http-request-through-a-socket/69008#69008-1Answer by Sijin for How can I find the response time of a HTTP request through a SocketSijin2008-09-16T02:48:54Z2008-09-16T02:48:54Z<p>Have you looked at <a href="http://www.wireshark.org/" rel="nofollow">WireShark</a>?</p>
http://stackoverflow.com/questions/68999/how-can-i-find-the-response-time-of-a-http-request-through-a-socket/69105#691052Answer by hoyhoy for How can I find the response time of a HTTP request through a Sockethoyhoy2008-09-16T03:11:13Z2008-09-16T03:11:13Z<p>You can use time and curl and time on the command-line. The -I argument for curl instructs it to only request the header.</p>
<pre><code>time curl -I 'http://server:3000'
</code></pre>
http://stackoverflow.com/questions/68999/how-can-i-find-the-response-time-of-a-http-request-through-a-socket/69195#691951Answer by Dave Cheney for How can I find the response time of a HTTP request through a SocketDave Cheney2008-09-16T03:38:21Z2008-09-16T03:38:21Z<p>Something like this might do the trick</p>
<pre>
import java.io.IOException;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpMethod;
import org.apache.commons.httpclient.URIException;
import org.apache.commons.httpclient.methods.HeadMethod;
import org.apache.commons.lang.time.StopWatch;
public class Main {
public static void main(String[] args) throws URIException {
StopWatch watch = new StopWatch();
HttpClient client = new HttpClient();
HttpMethod method = new HeadMethod("http://stackoverflow.com/");
try {
watch.start();
client.executeMethod(method);
} catch (IOException e) {
e.printStackTrace();
} finally {
watch.stop();
}
System.out.println(String.format("%s %s %d: %s", method.getName(), method.getURI(), method.getStatusCode(), watch.toString()));
}
}
</pre>
<pre>
HEAD http://stackoverflow.com/ 200: 0:00:00.404
</pre>
http://stackoverflow.com/questions/68999/how-can-i-find-the-response-time-of-a-http-request-through-a-socket/69210#692100Answer by Kevin Day for How can I find the response time of a HTTP request through a SocketKevin Day2008-09-16T03:41:14Z2008-09-16T03:41:14Z<p>Maybe I'm missing something, but why don't you just use:</p>
<pre><code>// open your connection
long start = System.currentTimeMillis();
// send request, wait for response (the simple socket calls are all blocking)
long end = System.currentTimeMillis();
System.out.println("Round trip response time = " + (end-start) + " millis";
</code></pre>
http://stackoverflow.com/questions/68999/how-can-i-find-the-response-time-of-a-http-request-through-a-socket/69223#692230Answer by Dave L. for How can I find the response time of a HTTP request through a SocketDave L.2008-09-16T03:44:09Z2008-09-16T03:44:09Z<p>I would say it depends on what exact interval you are trying measure, the amount of time from the last byte of the request that you send until the first byte of the response that you receive? Or until the entire response is received? Or are you trying to measure the server-side time only?</p>
<p>If you're trying to measure the server side processing time only, you're going to have a difficult time factoring out the amount of time spent in network transit for your request to arrive and the response to return. Otherwise, since you're managing the request yourself through a Socket, you can measure the elapsed time between any two moments by checking the System clock and computing the difference. For example:</p>
<pre><code>public void sendHttpRequest(byte[] requestData, Socket connection) {
long startTime = System.currentTimeMillis();
writeYourRequestData(connection.getOutputStream(), requestData);
byte[] responseData = readYourResponseData(connection.getInputStream());
long elapsedTime = System.currentTimeMillis() - startTime;
System.out.println("Total elapsed http request/response time in milliseconds: " + elapsedTime);
}
</code></pre>
<p>This code would measure the time from when you begin writing out your request to when you finish receiving the response, and print the result (assuming you have your specific read/write methods implemented).</p>
http://stackoverflow.com/questions/68999/how-can-i-find-the-response-time-of-a-http-request-through-a-socket/69488#694880Answer by Adi for How can I find the response time of a HTTP request through a SocketAdi2008-09-16T04:54:13Z2008-09-16T04:54:13Z<p>Use AOP to intercept calls to the socket and measure the response time.</p>