{"id":16701007,"url":"https://github.com/mgedmin/strace-process-tree","last_synced_at":"2025-04-06T12:08:09.776Z","repository":{"id":56020762,"uuid":"203575806","full_name":"mgedmin/strace-process-tree","owner":"mgedmin","description":"Tool to help me make sense out of `strace -f` output.","archived":false,"fork":false,"pushed_at":"2025-01-20T12:19:10.000Z","size":124,"stargazers_count":57,"open_issues_count":4,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-30T11:07:02.150Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://pypi.org/project/strace-process-tree/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mgedmin.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGES.rst","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"ko_fi":"mgedmin"}},"created_at":"2019-08-21T12:05:24.000Z","updated_at":"2025-02-22T16:58:33.000Z","dependencies_parsed_at":"2024-05-03T11:46:26.200Z","dependency_job_id":"fb562823-6cb5-4e0b-bf6a-8785514cedfd","html_url":"https://github.com/mgedmin/strace-process-tree","commit_stats":{"total_commits":84,"total_committers":2,"mean_commits":42.0,"dds":"0.011904761904761862","last_synced_commit":"1e28fbc846795ef6fe797918bcd8220c7cb649ee"},"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgedmin%2Fstrace-process-tree","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgedmin%2Fstrace-process-tree/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgedmin%2Fstrace-process-tree/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mgedmin%2Fstrace-process-tree/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mgedmin","download_url":"https://codeload.github.com/mgedmin/strace-process-tree/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247478321,"owners_count":20945266,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-12T18:27:29.623Z","updated_at":"2025-04-06T12:08:09.754Z","avatar_url":"https://github.com/mgedmin.png","language":"Python","funding_links":["https://ko-fi.com/mgedmin"],"categories":[],"sub_categories":[],"readme":"strace-process-tree\n===================\n\n.. image:: https://github.com/mgedmin/strace-process-tree/actions/workflows/build.yml/badge.svg?branch=master\n    :target: https://github.com/mgedmin/strace-process-tree/actions\n\n\nReads strace -f output and produces a process tree.  Example ::\n\n    $ strace -f -e trace=process -s 1024 -o /tmp/trace.out make binary-package\n    ...\n\n    $ strace-process-tree /tmp/trace.out\n    25510 make binary-package\n      ├─25511 /bin/sh -c 'dpkg-parsechangelog | awk '\\''$1 == \"Source:\" { print $2 }'\\'''\n      │   ├─25512 dpkg-parsechangelog\n      │   │   └─25514 tail -n 40 debian/changelog\n      │   └─25513 awk '$1 == \"Source:\" { print $2 }'\n      ├─25515 /bin/sh -c 'dpkg-parsechangelog | awk '\\''$1 == \"Version:\" { print $2 }'\\'''\n      │   ├─25516 dpkg-parsechangelog\n      │   │   └─25518 tail -n 40 debian/changelog\n      │   └─25517 awk '$1 == \"Version:\" { print $2 }'\n      ├─25519 /bin/sh -c 'dpkg-parsechangelog | grep ^Date: | cut -d: -f 2- | date --date=\"$(cat)\" +%Y-%m-%d'\n      │   ├─25520 dpkg-parsechangelog\n      │   │   └─25525 tail -n 40 debian/changelog\n      │   ├─25521 grep ^Date:\n      │   ├─25522 cut -d: -f 2-\n      │   └─25523 date --date=\" Thu, 18 Jan 2018 23:39:51 +0200\" +%Y-%m-%d\n      │       └─25524 cat\n      └─25526 /bin/sh -c 'dpkg-parsechangelog | awk '\\''$1 == \"Distribution:\" { print $2 }'\\'''\n          ├─25527 dpkg-parsechangelog\n          │   └─25529 tail -n 40 debian/changelog\n          └─25528 awk '$1 == \"Distribution:\" { print $2 }'\n\n\nInstallation\n------------\n\nUse your favourite pip wrapper to install strace-process-tree, e.g.\n\n    pipx install strace-process-tree\n\n\nSynopsis\n--------\n\nUsage: strace-process-tree [-h] [--version] [-c] [-C] [-U] [-A] [-v] filename\n\nRead strace -f output and produce a process tree. Recommended strace options\nfor best results:\n\n  strace -f -ttt -e trace=process -s 1024 -o FILENAME COMMAND\n\npositional arguments:\n  filename        strace log to parse (use - to read stdin)\n\noptional arguments:\n  -h, --help      show this help message and exit\n  --version       show program's version number and exit\n  -c, --color     force color output\n  -C, --no-color  disable color output\n  -U, --unicode   force Unicode output\n  -A, --ascii     force ASCII output\n  -v, --verbose   more verbose output\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgedmin%2Fstrace-process-tree","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmgedmin%2Fstrace-process-tree","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmgedmin%2Fstrace-process-tree/lists"}