Page 1 of 1

Logging the number of bytes from server to client

PostPosted: 21. February 2005 10:41
by peter_zandbergen
Dear all,

I want to test the performance of an application and relate the time it took to execute a request with the number of bytes sent from the server to the client.

I have seen the %b log option that gives me the number of bytes that went from the client to the server. Now I am looking for the other way around.

thanks for helping me.

Peter Zandbergen

PostPosted: 21. February 2005 12:20
by Wiedmann
I have seen the %b log option that gives me the number of bytes that went from the client to the server.

No.

%...b Size of response in bytes

That is for both ways, from server to client and client to server, depending upon the request method.

But, with mod_logio you have two additional flags:
%...I Bytes received
%...O Bytes sent

PostPosted: 21. February 2005 12:46
by peter_zandbergen
Thanks,
good advice, works perfectly.