https://github.com/saltstack/gdbdbg
Debug a running salt process
https://github.com/saltstack/gdbdbg
Last synced: 4 months 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-14T06:57:03.000Z (over 1 year ago)
- Last Synced: 2025-01-29T11:11:54.613Z (about 1 year ago)
- Language: Python
- Size: 88.9 KB
- Stars: 5
- Watchers: 10
- Forks: 2
- 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
```