NAME

App::Iops - Show process I/O operations

VERSION

version 0.006

SYNOPSIS

iops [options]

    --pid [pid]
    --help

DESCRIPTION

Summarize a process's I/O operations in real time.

Attach to an existing process:

$ iops -p 3251
read /dev/random...............................
write /var/log/message..
close /dev/random

API

Methods are still subject to change.

new

Returns a new object.

help
use App::Iops;
App::Iops->new( 'help' )->run;

Prints the help and exits. This is very side-effectful. This might throw exceptions.

pid => $pid
use App::Iops;
App::Iops->new( pid => $a_pid )->run;

Associates a process id to attach to.

run

Actually executes whatever action was requested.

THANKS TO

Thanks to the following people:

Alan Haggai Alavi