• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

inc/My/H27-Nov-2009-4936

lib/H27-Nov-2009-28154

t/H27-Nov-2009-8868

ChangesH A D27-Nov-2009504 1613

MANIFESTH A D27-Nov-2009384 1716

MANIFEST.SKIPH A D27-Nov-2009523 3328

META.ymlH A D27-Nov-2009872 3130

Makefile.PLH A D27-Nov-20091.6 KiB6552

READMEH A D27-Nov-20091.1 KiB4729

SIGNATUREH A D27-Nov-20091.6 KiB3932

README

1Apache::Profiler is Copyright (C) 2009, Michael Schout.
2
3WHAT IS THIS?
4
5Apache::Profiler is a mod_perl init (and cleanup) handler to profile time
6taken to process one request. Profiled data is reported to the Apache Log
7file. It’d be useful to profile some heavy application taking a long time to
8proceed.
9
10
11INSTALLATION
12
13To install this module type the following:
14
15    perl Makefile.PL
16    make
17    make test
18    make install
19
20If perl Makefile.PL fails because it cannot find apxs, you can specify the path
21to it via the -apxs parameter:
22
23    perl Makefile.PL -apxs /path/to/apxs
24
25
26DEPENDENCIES
27
28This module requires these other CPAN modules:
29
30    Test::More 0.32 or later
31    Apache::Test 1.26 or later
32    Time::HiRes
33    mod_perl or mod_perl2
34
35COPYRIGHT AND LICENCE
36
37   Copyright (C) 2009 Michael Schout.
38
39   This program is free software; you can redistribute it and/or modify it
40   under the terms of either:
41
42   *   the GNU General Public License as published by the Free Software
43       Foundation; either version 1, or (at your option) any later
44       version, or
45
46   *   the Artistic License version 2.0.
47