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
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
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
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
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
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
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
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