Procpath


NameProcpath JSON
Version 1.9.1 PyPI version JSON
download
home_pagehttps://heptapod.host/saajns/procpath
SummaryProcpath is a process tree analysis workbench
upload_time2024-02-15 20:23:44
maintainer
docs_urlNone
authorsaaj
requires_python>= 3.8
licenseLGPL-3.0-only
keywords procfs jsonpath sqlite plotting
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://img.shields.io/pypi/l/Procpath.svg
   :target: https://spdx.org/licenses/LGPL-3.0-only.html
   :alt: PyPI - License
.. image:: https://heptapod.host/saajns/procpath/badges/branch/default/pipeline.svg
   :target: https://heptapod.host/saajns/procpath/-/commits/branch/default
   :alt: Pipeline status
.. image:: https://heptapod.host/saajns/procpath/badges/branch/default/coverage.svg
   :target: https://procpath.readthedocs.io/en/report/htmlcov/?badge=coverage
   :alt: Test code coverage
.. image:: https://img.shields.io/badge/benchmarked%20by-asv-blue.svg?style=flat
   :target: https://procpath.readthedocs.io/en/report/htmlasv/?badge=asv
   :alt: Benchmark
.. image:: https://badge.fury.io/py/Procpath.svg
   :target: https://pypi.python.org/pypi/Procpath
   :alt: PyPI
.. image:: https://readthedocs.org/projects/procpath/badge/?version=latest
   :target: https://procpath.readthedocs.io/en/latest/?badge=latest
   :alt: RTFD

********
Procpath
********
.. image:: https://heptapod.host/saajns/procpath/-/raw/798fffd7/manual/_static/logo.svg
   :align: center
   :alt: Procpath

Procpath is a process tree analysis command-line workbench. Its goal is to
provide natural interface to the tree structure of processes running on a
Linux system for inspection, collection and later analysis with focus on
performance.

Installation
============
.. code::

   pipx install Procpath

`pipx`_ is recommended for installing Procpath (into a dedicated virtual
environment). Alternatively ``pip`` can be used to install Procpath to the
Python user install directory.

.. code::

   pip install --user Procpath

Quickstart
==========
Get comma-separated PIDs of the process subtree (including the parent process
``pid=2610``).

.. code::

   procpath query -d , '$..children[?(@.stat.pid == 2610)]..pid'

Get JSON document of said process subtree.

.. code::

   procpath query -i 2 '$..children[?(@.stat.pid == 2610)]'

Get total RSS in MiB of said process subtree (this is an example that
``query`` produces JSON that can be further processed outside of ``procpath``,
and below is a much easier way to calculate aggregates).

.. code::

   procpath query '$..children[?(@.stat.pid == 2610)]' \
     | jq '[.. | .stat? | objects | .rss] | add / 1024 * 4'

Get total RSS in MiB of said process subtree the easy way.

.. code::

   procpath query '$..children[?(@.stat.pid == 2610)]' \
     'SELECT SUM(stat_rss) / 1024.0 * 4 total FROM record'

Get total RSS in MiB of a docker-compose stack.

.. code::

   L=$(docker ps -f status=running -f name='^project_name' -q | xargs -I{} -- \
     docker inspect -f '{{.State.Pid}}' {} | tr '\n' ,)
   procpath query "$..children[?(@.stat.pid in [$L])]" \
     'SELECT SUM(stat_rss) / 1024.0 * 4 total FROM record'

Record process trees of two Docker containers once a second, re-evaluating the
containers' root process PIDs once per 30 recordings. Then visualise RSS of
each process (which is also just an example, that output SQLite database can
be visualised in different ways, including exporting CSV, ``sqlite3 -csv ...``,
and doing it the old way, to using proper UI described in the documentation).

.. code::

   procpath record \
     -e C1='docker inspect -f "{{.State.Pid}}" project_db_1' \
     -e C2='docker inspect -f "{{.State.Pid}}" project_app_1' \
     -i 1 -v 30 -d out.sqlite '$..children[?(@.stat.pid in [$C1, $C2])]'
   # press Ctrl + C
   sqlite3 out.sqlite \
     "SELECT stat_pid, group_concat(stat_rss / 1024.0 * 4) \
      FROM record \
      GROUP BY stat_pid" \
     | sed -z 's/\n/\n\n\n/g' | sed 's/|/\n/' | sed 's/,/\n/g' > special_fmt
   gnuplot -p -e \
     "plot for [i=0:*] 'special_fmt' index i with lines title columnheader(1)"

Visualise the above recording the easy way.

.. code::

   procpath plot -d out.sqlite -o out.svg -q cpu -q rss

.. image:: https://heptapod.host/saajns/procpath/-/raw/8884bb/manual/_static/default_rss_vs_cpu.svg
   :alt: Procpath RSS vs CPU SVG


.. _pipx: https://pypi.org/project/pipx/

            

Raw data

            {
    "_id": null,
    "home_page": "https://heptapod.host/saajns/procpath",
    "name": "Procpath",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">= 3.8",
    "maintainer_email": "",
    "keywords": "procfs jsonpath sqlite plotting",
    "author": "saaj",
    "author_email": "mail@saaj.me",
    "download_url": "https://files.pythonhosted.org/packages/59/21/f7d5d69f366a784cef119d217f0a58a133fee7581403b59da035c31f1c5e/Procpath-1.9.1.tar.gz",
    "platform": null,
    "description": ".. image:: https://img.shields.io/pypi/l/Procpath.svg\n   :target: https://spdx.org/licenses/LGPL-3.0-only.html\n   :alt: PyPI - License\n.. image:: https://heptapod.host/saajns/procpath/badges/branch/default/pipeline.svg\n   :target: https://heptapod.host/saajns/procpath/-/commits/branch/default\n   :alt: Pipeline status\n.. image:: https://heptapod.host/saajns/procpath/badges/branch/default/coverage.svg\n   :target: https://procpath.readthedocs.io/en/report/htmlcov/?badge=coverage\n   :alt: Test code coverage\n.. image:: https://img.shields.io/badge/benchmarked%20by-asv-blue.svg?style=flat\n   :target: https://procpath.readthedocs.io/en/report/htmlasv/?badge=asv\n   :alt: Benchmark\n.. image:: https://badge.fury.io/py/Procpath.svg\n   :target: https://pypi.python.org/pypi/Procpath\n   :alt: PyPI\n.. image:: https://readthedocs.org/projects/procpath/badge/?version=latest\n   :target: https://procpath.readthedocs.io/en/latest/?badge=latest\n   :alt: RTFD\n\n********\nProcpath\n********\n.. image:: https://heptapod.host/saajns/procpath/-/raw/798fffd7/manual/_static/logo.svg\n   :align: center\n   :alt: Procpath\n\nProcpath is a process tree analysis command-line workbench. Its goal is to\nprovide natural interface to the tree structure of processes running on a\nLinux system for inspection, collection and later analysis with focus on\nperformance.\n\nInstallation\n============\n.. code::\n\n   pipx install Procpath\n\n`pipx`_ is recommended for installing Procpath (into a dedicated virtual\nenvironment). Alternatively ``pip`` can be used to install Procpath to the\nPython user install directory.\n\n.. code::\n\n   pip install --user Procpath\n\nQuickstart\n==========\nGet comma-separated PIDs of the process subtree (including the parent process\n``pid=2610``).\n\n.. code::\n\n   procpath query -d , '$..children[?(@.stat.pid == 2610)]..pid'\n\nGet JSON document of said process subtree.\n\n.. code::\n\n   procpath query -i 2 '$..children[?(@.stat.pid == 2610)]'\n\nGet total RSS in MiB of said process subtree (this is an example that\n``query`` produces JSON that can be further processed outside of ``procpath``,\nand below is a much easier way to calculate aggregates).\n\n.. code::\n\n   procpath query '$..children[?(@.stat.pid == 2610)]' \\\n     | jq '[.. | .stat? | objects | .rss] | add / 1024 * 4'\n\nGet total RSS in MiB of said process subtree the easy way.\n\n.. code::\n\n   procpath query '$..children[?(@.stat.pid == 2610)]' \\\n     'SELECT SUM(stat_rss) / 1024.0 * 4 total FROM record'\n\nGet total RSS in MiB of a docker-compose stack.\n\n.. code::\n\n   L=$(docker ps -f status=running -f name='^project_name' -q | xargs -I{} -- \\\n     docker inspect -f '{{.State.Pid}}' {} | tr '\\n' ,)\n   procpath query \"$..children[?(@.stat.pid in [$L])]\" \\\n     'SELECT SUM(stat_rss) / 1024.0 * 4 total FROM record'\n\nRecord process trees of two Docker containers once a second, re-evaluating the\ncontainers' root process PIDs once per 30 recordings. Then visualise RSS of\neach process (which is also just an example, that output SQLite database can\nbe visualised in different ways, including exporting CSV, ``sqlite3 -csv ...``,\nand doing it the old way, to using proper UI described in the documentation).\n\n.. code::\n\n   procpath record \\\n     -e C1='docker inspect -f \"{{.State.Pid}}\" project_db_1' \\\n     -e C2='docker inspect -f \"{{.State.Pid}}\" project_app_1' \\\n     -i 1 -v 30 -d out.sqlite '$..children[?(@.stat.pid in [$C1, $C2])]'\n   # press Ctrl + C\n   sqlite3 out.sqlite \\\n     \"SELECT stat_pid, group_concat(stat_rss / 1024.0 * 4) \\\n      FROM record \\\n      GROUP BY stat_pid\" \\\n     | sed -z 's/\\n/\\n\\n\\n/g' | sed 's/|/\\n/' | sed 's/,/\\n/g' > special_fmt\n   gnuplot -p -e \\\n     \"plot for [i=0:*] 'special_fmt' index i with lines title columnheader(1)\"\n\nVisualise the above recording the easy way.\n\n.. code::\n\n   procpath plot -d out.sqlite -o out.svg -q cpu -q rss\n\n.. image:: https://heptapod.host/saajns/procpath/-/raw/8884bb/manual/_static/default_rss_vs_cpu.svg\n   :alt: Procpath RSS vs CPU SVG\n\n\n.. _pipx: https://pypi.org/project/pipx/\n",
    "bugtrack_url": null,
    "license": "LGPL-3.0-only",
    "summary": "Procpath is a process tree analysis workbench",
    "version": "1.9.1",
    "project_urls": {
        "Documentation": "https://procpath.readthedocs.io/",
        "Homepage": "https://heptapod.host/saajns/procpath",
        "Release Notes": "https://procpath.readthedocs.io/en/latest/history.html",
        "Source Code": "https://heptapod.host/saajns/procpath"
    },
    "split_keywords": [
        "procfs",
        "jsonpath",
        "sqlite",
        "plotting"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e1b8bcb0732ca84ab302c166944d16034b5f53ca9d0510204c93683782be0717",
                "md5": "2fe1789f77e19e3b7c2f1c390d0875c9",
                "sha256": "9fd34d0d55f4967064ce0c7bbfe1d712bc335ba346d8e5229694a297d483b5f9"
            },
            "downloads": -1,
            "filename": "Procpath-1.9.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2fe1789f77e19e3b7c2f1c390d0875c9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">= 3.8",
            "size": 70166,
            "upload_time": "2024-02-15T20:23:40",
            "upload_time_iso_8601": "2024-02-15T20:23:40.647932Z",
            "url": "https://files.pythonhosted.org/packages/e1/b8/bcb0732ca84ab302c166944d16034b5f53ca9d0510204c93683782be0717/Procpath-1.9.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5921f7d5d69f366a784cef119d217f0a58a133fee7581403b59da035c31f1c5e",
                "md5": "decec16ce8510b6e0f67371cc8a6d602",
                "sha256": "409f1034955aeb2941f14113ad008e7f05b60d6154b2c92e08b8d32278f60150"
            },
            "downloads": -1,
            "filename": "Procpath-1.9.1.tar.gz",
            "has_sig": false,
            "md5_digest": "decec16ce8510b6e0f67371cc8a6d602",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">= 3.8",
            "size": 64143,
            "upload_time": "2024-02-15T20:23:44",
            "upload_time_iso_8601": "2024-02-15T20:23:44.263967Z",
            "url": "https://files.pythonhosted.org/packages/59/21/f7d5d69f366a784cef119d217f0a58a133fee7581403b59da035c31f1c5e/Procpath-1.9.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-15 20:23:44",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "procpath"
}
        
Elapsed time: 0.18607s