Metadata-Version: 1.1
Name: ioprobe
Version: 0.1
Summary: Observation tool for I/O per process
Home-page: https://github.com/masu-mi/
Author: Masumi Kanai
Author-email: masumi.net@gmail.com
License: The BSD 3-Clause License
Description-Content-Type: UNKNOWN
Description: ioprobe
        ================
        Ioprobe offers observability of process's I/O througput.
        This Package requires `/proc/[pid]/io`, so does'nt work in OSX and Windows.
        
        Usage
        ----------
        
        .. code-block:: bash
        
          $ ioprobe -h
          usage: ioprobe [-h] [--json] pid
        
          I/O probe for process.
        
          positional arguments:
            pid         target process's pid.
        
          optional arguments:
            -h, --help  show this help message and exit
            --json      change command's output to JSON.
        
        Sample
        ----------
        
        .. code-block:: bash
        
          $ sudo ioprobe [pid]
          date    rchar/s wchar/s syscr/s syscw/s read_bytes/s    write_bytes/s   cancelled_write_bytes/s
          2015-02-28 00:11:36     0       0       0       0       0       0       0
          2015-02-28 00:11:37     0       0       0       0       0       0       0
        
          $ sudo ioprobe --json [pid]
          {'write_bytes': 0, 'cancelled_write_bytes': 0, 'read_bytes': 0, 'date': '2015-02-28 00:12:15', 'syscr': 0, 'wchar': 0, 'rchar': 0, 'syscw': 0}
          {'write_bytes': 0, 'cancelled_write_bytes': 0, 'read_bytes': 0, 'date': '2015-02-28 00:12:16', 'syscr': 0, 'wchar': 0, 'rchar': 0, 'syscw': 0}
        
        
        Credits
        ----------
        
        - Distribute_
        - Buildout_
        - modern-package-template_
        
        .. _Distribute: http://pypi.python.org/pypi/distribute
        .. _Buildout: http://www.buildout.org/
        .. _modern-package-template: http://pypi.python.org/pypi/modern-package-template
        
        
        News
        ====
        
        0.1
        ---
        
        *Create date: 2017-09-12*
        
        * arrange package directory
        
        
Keywords: proc system process io
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries
Classifier: Environment :: Console
Classifier: Topic :: Utilities
