App::FQStat - Interactive console front-end for Sun's grid engine


App-FQStat documentation Contained in the App-FQStat distribution.

Index


Code Index:

NAME

Top

App::FQStat - Interactive console front-end for Sun's grid engine

SYNOPSIS

Top

  Just run fqstat.pl

DESCRIPTION

Top

App::FQStat is the internal module that runs the fqstat.pl tool. fqstat is an interactive, console based front-end for Sun's Grid Engine (http://gridengine.sunsource.net/).

This has grown out of an in-house tool I wrote just for convenience, but I believe it may be useful to others who loathe the ugly and slow Java GUI qmon that comes with the grid engine software and who find the huge list of jobs coming out of qstat to be painful.

Usage of the tool is quite simple. Run it, it'll show all current jobs on the cluster. Hit "h" to get online-help or F10 to enter the menu.

fqstat was tested against a couple of versions of the grid engine software starting somewhere around 6.0. If you find an incompatibility, please let me know.

SEE ALSO

Top

http://gridengine.sunsource.net/

AUTHOR

Top

Steffen Mueller, <smueller@cpan.org>

COPYRIGHT AND LICENSE

Top


App-FQStat documentation Contained in the App-FQStat distribution.

package App::FQStat;
# App::FQStat is (c) 2007-2009 Steffen Mueller
#
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl itself.

our $VERSION = '6.3';

use strict;
use warnings;
use App::FQStat::Actions;
use App::FQStat::System;
use App::FQStat::Config;
use App::FQStat::Colors;
use App::FQStat::Scanner;
use App::FQStat::Input;
use App::FQStat::Drawing;
use App::FQStat::Menu;
use App::FQStat::PAR;
use App::FQStat::Debug ();

1;

__END__