Metadata-Version: 1.0
Name: gperf
Version: 0.1dev
Summary: Graphing from sysstat sar data into time-based graph
Home-page: https://github.com/sakti/gperf
Author: Sakti Dwi Cahyono
Author-email: 54krpl at gmail dot com
License: BSD
Description: =====
        GPerf
        =====
        
        Graphing performance or system activity information.
        
        using the output of ``sar`` tools.
        
        
        
        Requirements
        ============
        
        - matplotlib
        
        
        How to use
        ==========
        
        ::
        
            Usage: gperf.py [options]
        
            Options:
              -h, --help            show this help message and exit
              -i INPUT_FILE, --input=INPUT_FILE
              -o OUTPUT_DIR, --ouput=OUTPUT_DIR
              --csv                 
              --stat                
              --minor               
              --height=HEIGHT       
              --width=WIDTH   
        
        
        Recording all system activity.
        ::
            
            $ sar -A -o [output filename] [interval]
        
            $ sar -A -o activity_result 1
        
        
        Convert result format into csv.
        ::
            
            $ sadf -d -- -A [output filename] > [csv filename]
        
            $ sadf -d -- -A activity_result > activity_result.csv
        
        Create graph form ``-d`` format form sadf.
        ::
        
            $ python gperf.py -i activity_result.csv -o output_dir
        
            or
        
            $ python gperf.py --input activity_result.csv --output output_dir
        
Keywords: sar sysstat time-based graph
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Multimedia :: Graphics :: Graphics Conversion
