awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 مستودعات

Awesome GitHub RepositoriesFlame Graph Generators

Utilities that transform folded stack trace data into interactive hierarchical diagrams for analyzing execution frequency.

Distinct from Interactive Graph Visualizers: Distinct from Interactive Graph Visualizers: focuses specifically on flame graph generation from stack traces rather than general graph rendering.

Explore 5 awesome GitHub repositories matching data & databases · Flame Graph Generators. Refine with filters or upvote what's useful.

Awesome Flame Graph Generators GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • brendangregg/flamegraphالصورة الرمزية لـ brendangregg

    brendangregg/FlameGraph

    19,307عرض على GitHub↗

    FlameGraph is a performance profiling and visualization toolkit designed to identify bottlenecks in software execution. It functions as a processing engine that transforms raw stack trace samples into interactive, hierarchical diagrams. By representing aggregated execution frequency as nested rectangles, the tool allows developers to visualize hot code paths and analyze system behavior across both kernel and user-space environments. The project distinguishes itself through its ability to perform differential profile analysis, which highlights performance regressions or improvements by compari

    Transforms folded stack trace data into interactive diagrams for analyzing software execution frequency.

    Perl
    عرض على GitHub↗19,307
  • jvm-profiling-tools/async-profilerالصورة الرمزية لـ jvm-profiling-tools

    jvm-profiling-tools/async-profiler

    9,063عرض على GitHub↗

    Async-profiler هي مجموعة من أدوات الأداء مصممة لأخذ عينات من بيئات تشغيل Java، وتتبع تخصيصات الذاكرة، ومراقبة عدادات الأجهزة. تعمل كمحلل أخذ عينات منخفض التكلفة (low-overhead) لتطبيقات Java، حيث تجمع تتبعات المكدس وبيانات تخصيص الذاكرة دون انحياز لنقاط الأمان (safepoint). يوفر المشروع أدوات متخصصة لتوليد رسوم بيانية تفاعلية للهب (flame graphs) لتصور نقاط التنفيذ الساخنة في متصفح الويب. يتضمن مراقباً لعدادات أداء الأجهزة لتتبع أحداث النظام منخفضة المستوى مثل أخطاء ذاكرة التخزين المؤقت وأخطاء الصفحات. تغطي مجموعة الأدوات عدة مجالات تشخيصية، بما في ذلك تحليل استخدام وحدة المعالجة المركزية لتحديد الأساليب الساخنة، وتتبع تخصيص الذاكرة للتسريبات في الكومة (heap) والذاكرة الأصلية، وتحليل تنافس الخيوط (thread contention) للكشف عن اختناقات المزامنة عبر طبقات النظام المختلفة.

    Transforms profiling data into interactive flame graphs to identify performance bottlenecks in a browser.

    C++
    عرض على GitHub↗9,063
  • nswbmw/node-in-debuggingالصورة الرمزية لـ nswbmw

    nswbmw/node-in-debugging

    6,457عرض على GitHub↗

    This project is a comprehensive technical guide and diagnostic manual for analyzing memory, performance, and asynchronous behavior within Node.js applications. It provides detailed methods for asynchronous tracing, memory diagnostics, and performance analysis to resolve runtime errors and execution bottlenecks. The resource distinguishes itself by covering advanced diagnostic workflows, including the use of flame graphs for CPU profiling, the capture and comparison of heap snapshots for memory leak detection, and the mapping of asynchronous call stacks. It also provides technical guidance on

    Provides methods for generating differential flame graphs to isolate performance regressions by comparing two CPU sampling snapshots.

    debugdebuggingguide
    عرض على GitHub↗6,457
  • parca-dev/parcaالصورة الرمزية لـ parca-dev

    parca-dev/parca

    4,788عرض على GitHub↗

    Parca is an always-on continuous profiling platform that captures CPU and memory usage from running applications without any code modifications. It uses eBPF kernel-level tracing to automatically discover and sample stack traces across infrastructure, and provides a web-based flame graph dashboard for interactive performance analysis. Its label-based query engine lets users slice and aggregate profiling data across dimensions such as service, container, or region, using a Prometheus-style selector syntax. Unlike basic profilers, Parca stores profile samples in a columnar format using Apache A

    Parca generates a color-coded differential flame graph that highlights code paths with increased (red) or decreased (green) resource consumption between two snapshots.

    TypeScriptbpfccontainers
    عرض على GitHub↗4,788
  • uber-archive/go-torchالصورة الرمزية لـ uber-archive

    uber-archive/go-torch

    3,941عرض على GitHub↗

    go-torch is a profiling tool for capturing the execution state of Go programs and transforming raw binary data into visual representations of program performance. It functions as a flame graph profiler and performance visualization utility that identifies expensive code paths through the collection of CPU and memory stack traces. The tool features a network-capable remote process profiler that connects to endpoints to capture and export execution profiles from Go binaries. It utilizes stochastic profiling to synthesize execution data into call graphs, allowing for the identification of bottle

    Outputs raw profile data in formats compatible with external scripts for processing flame graphs.

    Go
    عرض على GitHub↗3,941
  1. Home
  2. Data & Databases
  3. Interactive Graph Visualizers
  4. Flame Graph Generators

استكشف الوسوم الفرعية

  • DifferentialGenerates color-coded differential flame graphs that highlight code paths with increased (red) or decreased (green) resource consumption between two snapshots. **Distinct from Flame Graph Generators:** Distinct from Flame Graph Generators: adds the capability to compare two profiles and visually highlight differences, not just generate a single flame graph.