On Mon, Aug 19, 2002 at 08:25:53AM +1000, Bojan Smojver wrote: > I'm playing around with a patch for mod_log_config that would enable > logging of the number bytes received per request. That kind of > information would then be very useful for determining input traffic per > virtual host, URL or whatever else, using regular web analysis tools, > e.g. webalizer. > > Does something like that sound like functionality that can be rolled > into Apache 1.3/2.0?
For 2.0, you only need to add an input filter at the network level (AP_FTYPE_NETWORK-1 priority) to track this data. Really easy to do. For 1.3, it's possible, but probably more complicated. -- justin
