What mean a number after HTTP Status Code in tomcat 7.0 log file?

1

What mean a number after HTTP Status Code in tomcat 7.0 log file (e.g localhost_access_log.2016-10-27.txt)?

For example, 1147 after 404 in:

XXX.XXX.XXX.XXX - - [27/Oct/2016:11:47:03 +0300] "GET /XXX.jsp HTTP/1.1" 404 1147

valeryan

Posted 2016-10-28T12:12:39.590

Reputation: 11

2number of bytes transfered ? – Archemar – 2016-10-28T12:13:33.733

Yes! Looks like it is a number of bytes sent by tomcat. – valeryan – 2016-10-28T12:55:39.763

Answers

0

A number after HTTP Status Code in tomcat 7.0 log file is

a number of bytes sent by tomcat.

For example,

if 19327 bytes were sent by tomcat, then there will be written:

XXX.XXX.XXX.XXX - - [28/Oct/2016:15:56:35 +0300] "GET XXX HTTP/1.1" 200 19327

valeryan

Posted 2016-10-28T12:12:39.590

Reputation: 11

Answered by @Archemar (in comments). – valeryan – 2016-10-28T13:04:06.770