Skip to content

Commit

Permalink
skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
ruz committed Oct 21, 2009
1 parent 52c014e commit 96bbf7c
Show file tree
Hide file tree
Showing 15 changed files with 2,000 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
@@ -0,0 +1,3 @@
Makefile
blib/
pm_to_blib
15 changes: 15 additions & 0 deletions MANIFEST
@@ -0,0 +1,15 @@
inc/Module/Install.pm
inc/Module/Install/Base.pm
inc/Module/Install/Can.pm
inc/Module/Install/Fetch.pm
inc/Module/Install/Makefile.pm
inc/Module/Install/Metadata.pm
inc/Module/Install/ReadmeFromPod.pm
inc/Module/Install/RTx.pm
inc/Module/Install/Win32.pm
inc/Module/Install/WriteAll.pm
lib/RT/Extension/Log/MemoryUsage.pm
Makefile.PL
MANIFEST This list of files
META.yml
README
23 changes: 23 additions & 0 deletions META.yml
@@ -0,0 +1,23 @@
---
abstract: 'log information about memory used by RT processes'
author:
- 'Ruslan Zakirov <ruz@bestpractical.com>'
build_requires:
ExtUtils::MakeMaker: 6.42
configure_requires:
ExtUtils::MakeMaker: 6.42
distribution_type: module
generated_by: 'Module::Install version 0.91'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
version: 1.4
name: RT-Extension-Log-MemoryUsage
no_index:
directory:
- inc
requires:
perl: 5.8.3
resources:
license: http://dev.perl.org/licenses/
version: 0.01
6 changes: 6 additions & 0 deletions Makefile.PL
@@ -0,0 +1,6 @@
use inc::Module::Install;
RTx('RT-Extension-Log-MemoryUsage');
all_from 'lib/RT/Extension/Log/MemoryUsage.pm';
readme_from 'lib/RT/Extension/Log/MemoryUsage.pm';

WriteAll();
19 changes: 19 additions & 0 deletions README
@@ -0,0 +1,19 @@
NAME
RT::Extension::Log::MemoryUsage - log information about memory used by
RT processes

DESCRIPTION
RT is a big application with many modules, extensions and different ways
to run system. As well, there are tons of ways to screw up memory usage.
It's hard to detect memory leaks and not only them, but just places in
code that like to eat lots of memory.

Purpose of this extension is to help identify requests that cause a
memory usage spikes.

AUTHOR
Ruslan Zakirov <ruz@bestpractical.com>

LICENSE
Under the same terms as perl itself.

0 comments on commit 96bbf7c

Please sign in to comment.