Re: Apache2::Status "Memory Usage" fails on Debian

2006-12-02 Thread Philip M. Gollucci
David Scott wrote: The following patch makes life a lot easier: in B::TerseSize: 631c631 < my $script = $q->script_name; --- > my $script = ( defined $q && $q ) ? $q->script_name : $r->uri; The problem is, the Apache 2 API doesn't use CGI query objects at all so you can't use the scr

Re: Apache2::Status "Memory Usage" fails on Debian

2006-12-01 Thread David Scott
The following patch makes life a lot easier: in B::TerseSize: 631c631 < my $script = $q->script_name; --- > my $script = ( defined $q && $q ) ? $q->script_name : $r->uri; The problem is, the Apache 2 API doesn't use CGI query objects at all so you can't use the script name. d Jonath

Re: Apache2::Status "Memory Usage" fails on Debian

2006-11-30 Thread Jonathan
On Nov 30, 2006, at 5:58 PM, David Scott wrote: This is not a good Apache day. I already sent out a message regarding an Apache::Scoreboard problem, and now Apache2::Status doesn't work either. it's a bug, but i think its platform specific/ odd i ran into the same thing a while back che

Re: Apache2::Status memory usage fails

2006-01-10 Thread Francesc Guasch
En/na Stas Bekman ha escrit: > Francesc Guasch wrote: > >> Hi. I have a leak somewhere and I'm trying to find it >> using Apache2::Status. Individual usage of memory in > Francesc, try to bracket your handlers for memory usage using this > approach: > http://svn.apache.org/viewcvs.cgi/perl/modper

Re: Apache2::Status memory usage fails

2006-01-05 Thread Francesc Guasch
En/na Philip M. Gollucci ha escrit: Francesc Guasch wrote: So I'm trying to use Apache2::Status "Memory Usage", but It won't work with my MP2, look: install the latest of all of the following modules from CPAN. B::Graph B::TerseSize (particulary this one ... the mp2 api change needs th

Re: Apache2::Status memory usage fails

2005-12-23 Thread Philip M. Gollucci
Stas Bekman wrote: > You also need to be aware that shared memory reporting on linux 2.6 > kernel is invalid. I don't know if it was fixed in the most recent > kernel releases. 2.6.14+ fixes this -- "Love is not the o

Re: Apache2::Status memory usage fails

2005-12-23 Thread Stas Bekman
Francesc Guasch wrote: Hi. I have a leak somewhere and I'm trying to find it using Apache2::Status. Individual usage of memory in the packages and functions doesn't grow, and I'm unable to use the "memory usage" of Apache2::Status, so I can see further. Francesc, try to bracket your handlers fo

Re: Apache2::Status memory usage fails

2005-12-23 Thread Philip M. Gollucci
Francesc Guasch wrote: > So I'm trying to use Apache2::Status "Memory Usage", but It > won't work with my MP2, look: install the latest of all of the following modules from CPAN. B::Graph B::TerseSize (particulary this one ... the mp2 api change needs the latest) B::LexInfo Devel::Symdum