Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/saltstack/gdbdbg
Debug a running salt process
https://github.com/saltstack/gdbdbg
Last synced: about 1 month ago
JSON representation
Debug a running salt process
- Host: GitHub
- URL: https://github.com/saltstack/gdbdbg
- Owner: saltstack
- License: apache-2.0
- Created: 2023-09-19T01:47:08.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-14T06:57:03.000Z (about 2 months ago)
- Last Synced: 2024-09-30T11:22:24.811Z (about 1 month ago)
- Language: Python
- Size: 88.9 KB
- Stars: 3
- Watchers: 9
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
gdbdbg
======gdbdbg will gather some general debugging information as well as the stack
traces from each thread.```
gdbdbg-info
```gdbdbg-inject can be used to inject some python code into the running process.
If you have manhole installed you can write a script like this:
```manhole.py
import manhole
manhole.install()
```And inject it with gdbdbg-inject:
```
gdbdbg-inject manhole.py
```