Difference: MonitorDotPm (1 vs. 2)

Revision 22013-10-14 - TWikiContributor

Line: 1 to 1
Changed:
<
<

Package =

>
>

Package =Monitor

 
Deleted:
<
<
 Monitoring package. Instrument the code like this:

use Monitor;

Line: 29 to 28
  NOTE: it uses /proc - so its linux specific...
Added:
>
>

Revision 12008-01-22 - TWikiContributor

Line: 1 to 1
Added:
>
>

Package =

Monitoring package. Instrument the code like this:

use Monitor; Monitor::MARK("Description of event"); Monitor::MARK("Another event");

or, to monitor all the calls to a module

use Monitor; Monitor::MonitorMethod('TWiki::Users');

or a function

use Monitor; Monitor::MonitorMethod('TWiki::Users', 'getCanonicalUserID');

Then set the environment variable TWIKI_MONITOR to a perl true value, and run the script from the command line e.g: $ cd bin $ ./view -topic Myweb/MyTestTopic

The results will be printed to STDERR at the end of the run. Two times are shown, a time relative to the last MARK and a time relative to the first MARK (which is always set the first time this package is used). The final column is total memory.

NOTE: it uses /proc - so its linux specific...

 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 1999-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback
Note: Please contribute updates to this topic on TWiki.org at TWiki:TWiki.MonitorDotPm.