browsing access logs, sometimes I see
"POST / HTTP/1.0" 200
which should be OK
but other times I see
"POST / HTTP/1.0" 200 172
What does the 172 next to 200 mean?
Also, I see a few with 7250, or 44
|
feedback
|
This question came from our site for professional and enthusiast programmers.
|
That is a post to the access log, which by default is formatted like this:
Where %b is your elusive '172', the size of the response in bytes. see this site. | |||
|
feedback
|
From: http://httpd.apache.org/docs/2.2/logs.html#accesslog, Section Common Log Format | |||
|
feedback
|
|
According to Ken Quon at this link:
| |||
|
feedback
|