core
Analyze core dump files generated by Go programs to diagnose crashes and debugging issues. Provide executable and core dump paths for detailed insights into program errors.
Instructions
Examine a core dump
Input Schema
Name | Required | Description | Default |
---|---|---|---|
corePath | Yes | Path to the core dump file | |
executable | Yes | Path to the executable that produced the core dump |
Input Schema (JSON Schema)
{
"properties": {
"corePath": {
"description": "Path to the core dump file",
"type": "string"
},
"executable": {
"description": "Path to the executable that produced the core dump",
"type": "string"
}
},
"required": [
"executable",
"corePath"
],
"type": "object"
}