Metadata-Version: 1.0
Name: monitcall
Version: 0.2
Summary: Call and monitor executables
Home-page: http://github.com/tomgross/monitcall
Author: Tom Gross
Author-email: itconsense@gmail.com
License: ZPL 2.1
Description: ================
        Monitcall README
        ================
        
        Monitcall is a small script to run executeables and
        watch for deadlocks in the process.
        
        Usage: monitcall [-h] [-a ARGS] [-t CYCLES] [-l LIMIT] [-s SIGNAL]
        [-d DEBUGLOG] [-v] cmd
        
        The script will call the given command (CMD) together with the
        given arguments (ARGS). If the CPU usage of the command is higher
        than the given limit (LIMIT) for more than CYCLES cycles
        the command is killed with the signal SIGNAL.
        
        Example:
        monitcall wvWare -a '-c utf-8 --nographics mydocument.doc'
        
        Extracts the contents of the MS-Word document `mydocument.doc` to
        an utf-8 text printed on stdout.
        
        Known issues:
        - The option string must not start with `-a`. Like this:
        
        ... -a '-a 4 -c utf-8 ...'
        This seems to be a bug in the argparse module
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
