aboutsummaryrefslogtreecommitdiff
path: root/devel/p5-Proc-ProcessTable/pkg-descr
blob: 2857d6c313f72848d7bad691ad098b78b3efb664 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
DESCRIPTION
===========
This module is a first crack at providing a consistent interface to
Unix (and maybe other multitasking OS's) process table information.
The impetus for this came about with my frustration at having to parse
the output of various systems' ps commands to check whether specific
processes were running on different boxes at a larged mixed Unix site.
The output format of ps was different on each OS, and sometimes
changed with each new release of an OS. Also, running a ps subprocess
from within a perl or shell script and parsing the output was not a
very efficient or aesthetic way to do things.

With this module, you can do things like this:

        # kill memory pigs 
        use Proc::ProcessTable;

        $t = new Proc::ProcessTable;
        foreach $p ( @{$t->table} ){    
          if( $p->pctmem > 95 ){
            $p->kill(9);
          }             
        }

WWW: http://search.cpan.org/dist/Proc-ProcessTable/