GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Proc::ProcessTable::InfoString(3) User Contributed Perl Documentation Proc::ProcessTable::InfoString(3)

Proc::ProcessTable::InfoString - Greats a PS like stat string showing various symbolic represenation of various flags/state as well as the wchan.

Version 0.0.1

Quick summary of what the module does.

Perhaps a little code snippet.

    use Proc::ProcessTable::InfoString;
    use Proc::ProcessTable;

    my $is = Proc::ProcessTable::InfoString->new();

    my $p = Proc::ProcessTable->new( 'cache_ttys' => 1 );
    my $pt = $p->table;

    foreach my $proc ( @{ $pt } ){
        print $proc->pid.' '.$is->info( $proc )."\n";
    }

The mapping for the left side of the output is as below.

   States  Description
   Z       Zombie
   S       Sleep
   W       Wait
   R       Run

   Flags   Description
   O       Swapped Output
   E       Exiting
   s       Session Leader
   L       POSIX lock advisory
   +       has controlling terminal
   X       traced by a debugger
   F       being forked

This initiates the object.

One argument is taken and that is a optional hash reference.

args hash

This will be passed to Term::ANSIColor.

If not specified, no ANSI color codes are used.

The return string is terminated by a ANSI color reset character.

flags_color

The color to use for the flags section of the string.

wchan_color

The color to use for the wait channel section of the string.

Zane C. Bowers-Hadley, "<vvelox at vvelox.net>"

Please report any bugs or feature requests to "bug-proc-processtable-infostring at rt.cpan.org", or through the web interface at <https://rt.cpan.org/NoAuth/ReportBug.html?Queue=Proc-ProcessTable-InfoString>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

You can find documentation for this module with the perldoc command.

    perldoc Proc::ProcessTable::InfoString

You can also look for information at:

  • RT: CPAN's request tracker (report bugs here)

    <https://rt.cpan.org/NoAuth/Bugs.html?Dist=Proc-ProcessTable-InfoString>

  • AnnoCPAN: Annotated CPAN documentation

    <http://annocpan.org/dist/Proc-ProcessTable-InfoString>

  • CPAN Ratings

    <https://cpanratings.perl.org/d/Proc-ProcessTable-InfoString>

  • Search CPAN

    <https://metacpan.org/release/Proc-ProcessTable-InfoString>

  • Repository

    <https://gitea.eesdp.org/vvelox/Proc-ProcessTable-InfoString>

This software is Copyright (c) 2019 by Zane C. Bowers-Hadley.

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)
2019-08-28 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.