All Projects → coolreader18 → flamescope

coolreader18 / flamescope

Licence: MIT license
Export flame data to speedscope's format

Programming Languages

rust
11053 projects

Projects that are alternatives of or similar to flamescope

pylaprof
A Python sampling profiler for AWS Lambda functions (and not only).
Stars: ✭ 12 (-53.85%)
Mutual labels:  flamegraph, profiling
iopipe-python
Python agent for AWS Lambda metrics, tracing, profiling & analytics
Stars: ✭ 77 (+196.15%)
Mutual labels:  profiling
Clj Async Profiler
Embeddable Clojure profiler built on https://github.com/jvm-profiling-tools/async-profiler
Stars: ✭ 220 (+746.15%)
Mutual labels:  profiling
Game-Tricks
Game Tricks !!!
Stars: ✭ 91 (+250%)
Mutual labels:  flamegraph
Xprof
A visual tracer and profiler for Erlang and Elixir.
Stars: ✭ 246 (+846.15%)
Mutual labels:  profiling
flight-recorder-starter
This is a Spring Boot 2 Starter exposing the JDK Flight Recorder as a Spring Boot Actuator Endpoint.
Stars: ✭ 20 (-23.08%)
Mutual labels:  flamegraph
Profilinggo
A quick tour (or reminder) of Go performance tools
Stars: ✭ 219 (+742.31%)
Mutual labels:  profiling
memcheck-cover
An HTML generator for Valgrind's Memcheck tool
Stars: ✭ 30 (+15.38%)
Mutual labels:  profiling
doc
QuickPerf documentation: https://github.com/quick-perf/doc/wiki/QuickPerf
Stars: ✭ 22 (-15.38%)
Mutual labels:  profiling
ngx-flamegraph
Flame graph for stack trace visualization written in Angular
Stars: ✭ 54 (+107.69%)
Mutual labels:  flamegraph
ijk
A real editor for real programmers
Stars: ✭ 43 (+65.38%)
Mutual labels:  flamegraph
AppDynamics.DEXTER
Turn your APM data store into a Data Warehouse with advanced reporting, including entities, configuration, metrics, flowmaps, events, snapshots and call graph flame graphs
Stars: ✭ 79 (+203.85%)
Mutual labels:  flamegraph
flamegrapher
Web frontend and REST API for Java Flight Recorder with Flamegraphs 🔥
Stars: ✭ 77 (+196.15%)
Mutual labels:  flamegraph
Quickperf
QuickPerf is a testing library for Java to quickly evaluate and improve some performance-related properties
Stars: ✭ 231 (+788.46%)
Mutual labels:  profiling
fastapi-debug-toolbar
A debug toolbar for FastAPI.
Stars: ✭ 90 (+246.15%)
Mutual labels:  profiling
Dd Trace Py
Datadog Python APM Client
Stars: ✭ 220 (+746.15%)
Mutual labels:  profiling
FlameViewer
Tool for flamegraphs visualization
Stars: ✭ 76 (+192.31%)
Mutual labels:  flamegraph
go-recipes
🦩 Tools for Go projects
Stars: ✭ 2,490 (+9476.92%)
Mutual labels:  profiling
perf-monitor
Kernel profiler based on perf_event and ebpf
Stars: ✭ 28 (+7.69%)
Mutual labels:  profiling
Speedscope
🔬 A fast, interactive web-based viewer for performance profiles.
Stars: ✭ 3,256 (+12423.08%)
Mutual labels:  flamegraph

flamescope

Export flame data to speedscope's format.

Usage

use flame;
use flamescope;
use std::fs::File;

fn main() {
    let main_guard = flame::start_guard("main");
    {
        let _scope_guard = flame::start_guard("inner scope");
    }
    main_guard.end();
    flamescope::dump(&mut File::create("flamescope.json").unwrap()).unwrap();
}

License

This project is licensed under the MIT license. Please see the LICENSE file for more details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].