awesome-repositories.com
Blog
MCP
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetServeur MCPÀ proposNotre méthodologiePresse
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 dépôts

Awesome GitHub RepositoriesPanic Stack Trace Parsers

Tools that transform raw language runtime panic dumps into structured, readable formats.

Distinct from Panic Propagation: Shortlist candidates focus on kernel panics or testing assertions, not the parsing of application-level runtime dumps.

Explore 2 awesome GitHub repositories matching programming languages & runtimes · Panic Stack Trace Parsers. Refine with filters or upvote what's useful.

Awesome Panic Stack Trace Parsers GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • maruel/panicparseAvatar de maruel

    maruel/panicparse

    3,711Voir sur GitHub↗

    Panicparse is a toolset for Go crash analysis and runtime debugging. It functions as a panic stack trace parser, a race detector log parser, and a goroutine deduplicator designed to transform raw crash dumps and thread sanitizer output into structured, readable formats. The project distinguishes itself by converting complex stack traces into visual HTML reports with embedded source code. It reduces noise in highly parallelized processes by grouping identical goroutine stacks and prioritizes application code over standard library calls during parsing. The utility also covers live process moni

    Transforms raw panic dumps and race detector output into a readable format that prioritizes application code.

    Gocrashgopanic
    Voir sur GitHub↗3,711
  • go-errors/errorsAvatar de go-errors

    go-errors/errors

    1,005Voir sur GitHub↗

    errors is a Go error handling library and stack trace utility that wraps standard errors with execution call stacks and contextual information. It captures program execution paths at the exact moment an error is initialized, extracting granular file paths, line numbers, and function symbols from raw program counter addresses. The library maintains parent-child relationships between wrapped errors to allow deep inspection, unwrapping of root causes, and combination of multiple errors into unified structures. It implements standard error interfaces so enhanced error objects can be used intercha

    Converts raw panic text outputs from execution crashes into structured error objects containing stack traces.

    Go
    Voir sur GitHub↗1,005
  1. Home
  2. Programming Languages & Runtimes
  3. Panic Stack Trace Parsers

Explorer les sous-tags

  • Goroutine Stack DeduplicatorsUtilities that group identical concurrent execution stacks to reduce noise in high-parallelism crash logs. **Distinct from Panic Stack Trace Parsers:** Distinct from general panic parsing by specifically targeting the deduplication of identical concurrent stacks in parallelized environments