[Zope] Re: raw trace log format

2006-02-03 Thread Florent Guillaume
It's the size of the POST, and 0 for a GET. Basically the size of received data (appart from the request headers). Florent Dennis Allison wrote: I gleened what I could from the requestrofiler code, but teh meaning of the desc field for I is not described in the comments. A quick check of the

[Zope] Re: raw trace log format

2006-02-02 Thread Tres Seaver
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dennis Allison wrote: generally it's code id fromepoch desc The desc field is B request (e.g. 'GET /') I ??? A status_code bytes E The desc for E is normally empty. The desc for I is

Re: [Zope] Re: raw trace log format

2006-02-02 Thread Dennis Allison
I gleened what I could from the requestrofiler code, but teh meaning of the desc field for I is not described in the comments. A quick check of the code did not help either. On Thu, 2 Feb 2006, Tres Seaver wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dennis Allison wrote:

Re: [Zope] Re: raw trace log format

2006-02-02 Thread Chris McDonough
This little bit of code has some clues: def put(self, code, t, desc): if code not in ('A', 'B', 'I', 'E'): raise unknown request code %s % code if code == 'B': self.start = t self.method, self.url = desc.strip().split() elif code ==