Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does second number in "POST /myfunction/ HTTP/1.1" 200 23" mean?

I am trying to debug my django code in pycharm3,

I notice that when I run a request I see the following in the run window:

Django version 1.6.1, using settings 'driver1.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
[19/Mar/2014 11:14:05] "POST /myfunction/ HTTP/1.1" 200 23

I know that 200 is the HTTP status code for 'OK', but what is '23'?

like image 496
user1592380 Avatar asked Mar 19 '14 15:03

user1592380


1 Answers

The second value describes the length in bytes your reponse had. Sometimes you'll see an third value - this is the total time in seconds your response took.

So your request to /myfunction/ responded an HTTP status 'OK' and the data returned had 23 byte in its length.

like image 72
kinkee Avatar answered Oct 03 '22 23:10

kinkee