Crew, I've got a logging question. I've searched high and low, and I can't figure out what the last field in the logfile is. What does that last number mean? Additionally, ogg stresms in reality are VBR...so I can't really use bytes transferred to determine the length of time a listener had been connected. Would it be feasible to make the log format customizable, ah-la-Apache, so that a field for "Seconds Connected" can be added for stream logs? Thanks! -I
Ian A. Underwood wrote:> Crew, > > I've got a logging question. I've searched high and low, and I can't > figure out what the last field in the logfile is. What does that last > number mean?It's the number of seconds a client was connected for :) (See /src/logging.h) Leo
Leo Currie wrote:> It's the number of seconds a client was connected for :) > (See /src/logging.h)THe reason I had to ask is that I thought this looked off. Here are a couple entries in the log: 68.x.x.x- - [14/May/2005:14:59:19 -0400] "GET /live.ogg HTTP/1.0" 200 19025645 "(null)" "-" 36295264 84.x.x.x- - [16/May/2005:04:02:22 -0400] "GET /live.ogg HTTP/1.0" 200 183200 "(null)" "-" 40372400 I'm running the v2.2 on Win32...and that last field looks very off for number of seconds. -I