├── .codecov.yml ├── .gitattributes ├── .github ├── DOCS.md ├── codecov.yml ├── dependabot.yml └── workflows │ ├── check.yml │ ├── scheduled.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── benches ├── collapse.rs └── flamegraph.rs ├── compare.sh ├── src ├── bin │ ├── collapse-dtrace.rs │ ├── collapse-ghcprof.rs │ ├── collapse-guess.rs │ ├── collapse-perf.rs │ ├── collapse-recursive.rs │ ├── collapse-sample.rs │ ├── collapse-vsprof.rs │ ├── collapse-vtune.rs │ ├── collapse-xctrace.rs │ ├── diff-folded.rs │ └── flamegraph.rs ├── collapse │ ├── common.rs │ ├── dtrace.rs │ ├── ghcprof.rs │ ├── guess.rs │ ├── matcher.rs │ ├── mod.rs │ ├── perf.rs │ ├── recursive.rs │ ├── sample.rs │ ├── vsprof.rs │ ├── vtune.rs │ └── xctrace.rs ├── differential │ └── mod.rs ├── flamegraph │ ├── attrs.rs │ ├── color │ │ ├── mod.rs │ │ ├── palette_map.rs │ │ └── palettes.rs │ ├── flamegraph.css │ ├── flamegraph.js │ ├── merge.rs │ ├── mod.rs │ ├── rand.rs │ └── svg.rs └── lib.rs └── tests ├── collapse-dtrace.rs ├── collapse-ghcprof.rs ├── collapse-guess.rs ├── collapse-perf.rs ├── collapse-recursive.rs ├── collapse-sample.rs ├── collapse-vsprof.rs ├── collapse-vtune.rs ├── collapse-xctrace.rs ├── common ├── collapse.rs └── mod.rs ├── data ├── collapse-dtrace │ ├── flamegraph-bug.txt │ ├── hex-addresses.txt │ ├── java.txt │ ├── only-header-lines.txt │ ├── results │ │ ├── dtrace-example-offsets.orig │ │ ├── dtrace-example-offsets.txt │ │ ├── dtrace-example.txt │ │ ├── flamegraph-bug.txt │ │ ├── hex-addresses.txt │ │ ├── java.txt │ │ ├── rust-names.txt │ │ ├── scope_with_no_argument_list.txt │ │ └── stack-ustack.txt │ ├── rust-names.txt │ ├── scope_with_no_argument_list.txt │ └── stack-ustack.txt ├── collapse-ghcprof │ ├── percent.prof │ ├── results │ │ ├── percent.txt │ │ ├── ticks.txt │ │ ├── ticks_bytes.txt │ │ ├── ticks_ticks.txt │ │ ├── utf8.txt │ │ ├── utf8_bytes.txt │ │ └── utf8_ticks.txt │ ├── ticks.prof │ └── utf8.prof ├── collapse-guess │ ├── invalid-perf-with-empty-line-after-event-line.txt │ └── unknown-format.txt ├── collapse-perf │ ├── cpp-stacks-std-function.txt │ ├── empty-line.txt │ ├── go-stacks.txt │ ├── java-inline.txt │ ├── no-events.txt │ ├── results │ │ ├── cpp-stacks-std-function-collapsed.txt │ │ ├── example-perf-stacks-collapsed.txt │ │ ├── go-stacks-collapsed.txt │ │ ├── java-inline-collapsed.txt │ │ ├── no-events-collapsed.txt │ │ ├── perf-rust-Yamakaky-dcpu-collapsed-addrs.txt │ │ ├── perf-rust-Yamakaky-dcpu-collapsed-all.txt │ │ ├── perf-rust-Yamakaky-dcpu-collapsed-jit.txt │ │ ├── perf-rust-Yamakaky-dcpu-collapsed-kernel.txt │ │ ├── perf-rust-Yamakaky-dcpu-collapsed-pid.txt │ │ ├── perf-rust-Yamakaky-dcpu-collapsed-tid.txt │ │ ├── single-event-collapsed.txt │ │ ├── single-line-stacks-collapsed.txt │ │ ├── sourcepawn-jitdump-collapsed-jit.txt │ │ └── versioned-vmlinux-collapsed-kernel.txt │ ├── single-event.txt │ ├── single-line-stacks.txt │ ├── sourcepawn-jitdump.txt │ ├── versioned-vmlinux.txt │ └── weird-stack-line.txt ├── collapse-recursive │ ├── basic.txt │ └── results │ │ └── basic-collapsed.txt ├── collapse-sample │ ├── bad-stack-line.txt │ ├── end-before-call-graph-end.txt │ ├── end-before-call-graph-start.txt │ ├── invalid-samples-field.txt │ ├── large.txt.gz │ ├── no-four-spaces.txt │ ├── odd-indentation.txt │ ├── results │ │ ├── sample-default.txt │ │ └── sample-no-modules.txt │ ├── sample.txt │ ├── skipped-indentation.txt │ └── stack-line-only-indent-chars.txt ├── collapse-vsprof │ ├── CallTreeSummary.csv │ ├── empty-file.csv │ ├── incorrect-header.csv │ ├── invalid-depth.csv │ ├── invalid-function-name.csv │ ├── invalid-number-of-calls.csv │ ├── missing-function-name.csv │ └── results │ │ ├── sample-default.txt │ │ └── vsprof-default.txt ├── collapse-vtune │ ├── bad-stack-line.csv │ ├── end-before-header.csv │ ├── invalid-time-field.csv │ ├── results │ │ ├── vtune-default.txt │ │ └── vtune-no-modules.txt │ ├── skipped-indentation.csv │ └── vtune.csv ├── collapse-xctrace │ ├── basic.xml │ ├── results │ │ ├── basic.folded │ │ └── simple_frame_without_binary_info.folded │ └── simple_frame_without_binary_info.xml ├── diff-folded │ ├── after.txt │ ├── bad_before.txt │ ├── before.txt │ ├── before_fractionals.txt │ └── results │ │ ├── default.txt │ │ ├── fractionals.txt │ │ ├── normalize.txt │ │ └── strip_hex.txt └── flamegraph │ ├── austin │ ├── flame.svg │ └── flames.txt │ ├── bad-lines │ └── bad-lines.txt │ ├── base │ ├── flames.txt │ ├── multi-base.svg │ └── single-base.svg │ ├── colors │ ├── async-profiler-collapsed-part.txt │ ├── async-profiler-java.svg │ ├── deterministic.svg │ ├── java.svg │ └── js.svg │ ├── differential │ ├── diff-negated.svg │ ├── diff.svg │ └── perf-cycles-instructions-01-collapsed-all-diff.txt │ ├── empty │ ├── empty.svg │ └── empty.txt │ ├── example-perf-stacks │ ├── example-perf-stacks.svg │ └── palette.map │ ├── factor │ └── factor-2.5.svg │ ├── flamechart │ ├── flame.svg │ └── flames.txt │ ├── fractional-samples │ ├── fractional-reversed.svg │ ├── fractional.txt │ ├── no-fractionals.txt │ ├── tricky-stack.txt │ ├── with-space-reversed.svg │ ├── with-space.txt │ └── zero-fractionals.txt │ ├── grey-frames │ ├── grey-frames.svg │ └── grey-frames.txt │ ├── inverted │ └── inverted.svg │ ├── multiple-inputs │ ├── perf-vertx-stacks-01-collapsed-all-unsorted-1.txt │ └── perf-vertx-stacks-01-collapsed-all-unsorted-2.txt │ ├── nameattr │ ├── nameattr.svg │ ├── nameattr.txt │ ├── nameattr_duplicate_attributes.svg │ ├── nameattr_duplicate_attributes.txt │ ├── nameattr_empty_attribute.txt │ ├── nameattr_empty_first_line.txt │ └── nameattr_invalid_attribute.txt │ ├── narrow-blocks │ ├── narrow-blocks.svg │ └── narrow-blocks.txt │ ├── options │ ├── colordiffusion.svg │ ├── count_name_simple.svg │ ├── count_name_with_symbols.svg │ ├── default.svg │ ├── font_type_cursive.svg │ ├── font_type_fantasy.svg │ ├── font_type_monospace.svg │ ├── font_type_sans-serif.svg │ ├── font_type_serif.svg │ ├── font_type_simple.svg │ ├── font_type_with_quote.svg │ ├── name_type_simple.svg │ ├── name_type_with_backslash.svg │ ├── name_type_with_quote.svg │ ├── notes_simple.svg │ ├── notes_with_symbols.svg │ ├── search_color.svg │ ├── stroke_color.svg │ ├── subtitle_simple.svg │ ├── subtitle_with_symbols.svg │ ├── title_simple.svg │ ├── title_with_symbols.svg │ ├── truncate-right.svg │ └── uicolor_color.svg │ ├── palette-map │ ├── consistent-palette.svg │ ├── palette.map │ └── palette_invalid.map │ ├── perf-vertx-stacks │ ├── perf-vertx-stacks-01-collapsed-all-reversed-stacks.svg │ └── perf-vertx-stacks-01-collapsed-all.svg │ └── unsorted-input │ └── perf-vertx-stacks-01-collapsed-all-unsorted.txt ├── diff-folded.rs └── flamegraph.rs /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/DOCS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/.github/DOCS.md -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/.github/workflows/scheduled.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | /perf* 4 | *.log 5 | /*.svg 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/README.md -------------------------------------------------------------------------------- /benches/collapse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/benches/collapse.rs -------------------------------------------------------------------------------- /benches/flamegraph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/benches/flamegraph.rs -------------------------------------------------------------------------------- /compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/compare.sh -------------------------------------------------------------------------------- /src/bin/collapse-dtrace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/bin/collapse-dtrace.rs -------------------------------------------------------------------------------- /src/bin/collapse-ghcprof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/bin/collapse-ghcprof.rs -------------------------------------------------------------------------------- /src/bin/collapse-guess.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/bin/collapse-guess.rs -------------------------------------------------------------------------------- /src/bin/collapse-perf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/bin/collapse-perf.rs -------------------------------------------------------------------------------- /src/bin/collapse-recursive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/bin/collapse-recursive.rs -------------------------------------------------------------------------------- /src/bin/collapse-sample.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/bin/collapse-sample.rs -------------------------------------------------------------------------------- /src/bin/collapse-vsprof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/bin/collapse-vsprof.rs -------------------------------------------------------------------------------- /src/bin/collapse-vtune.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/bin/collapse-vtune.rs -------------------------------------------------------------------------------- /src/bin/collapse-xctrace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/bin/collapse-xctrace.rs -------------------------------------------------------------------------------- /src/bin/diff-folded.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/bin/diff-folded.rs -------------------------------------------------------------------------------- /src/bin/flamegraph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/bin/flamegraph.rs -------------------------------------------------------------------------------- /src/collapse/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/collapse/common.rs -------------------------------------------------------------------------------- /src/collapse/dtrace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/collapse/dtrace.rs -------------------------------------------------------------------------------- /src/collapse/ghcprof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/collapse/ghcprof.rs -------------------------------------------------------------------------------- /src/collapse/guess.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/collapse/guess.rs -------------------------------------------------------------------------------- /src/collapse/matcher.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/collapse/matcher.rs -------------------------------------------------------------------------------- /src/collapse/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/collapse/mod.rs -------------------------------------------------------------------------------- /src/collapse/perf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/collapse/perf.rs -------------------------------------------------------------------------------- /src/collapse/recursive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/collapse/recursive.rs -------------------------------------------------------------------------------- /src/collapse/sample.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/collapse/sample.rs -------------------------------------------------------------------------------- /src/collapse/vsprof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/collapse/vsprof.rs -------------------------------------------------------------------------------- /src/collapse/vtune.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/collapse/vtune.rs -------------------------------------------------------------------------------- /src/collapse/xctrace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/collapse/xctrace.rs -------------------------------------------------------------------------------- /src/differential/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/differential/mod.rs -------------------------------------------------------------------------------- /src/flamegraph/attrs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/flamegraph/attrs.rs -------------------------------------------------------------------------------- /src/flamegraph/color/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/flamegraph/color/mod.rs -------------------------------------------------------------------------------- /src/flamegraph/color/palette_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/flamegraph/color/palette_map.rs -------------------------------------------------------------------------------- /src/flamegraph/color/palettes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/flamegraph/color/palettes.rs -------------------------------------------------------------------------------- /src/flamegraph/flamegraph.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/flamegraph/flamegraph.css -------------------------------------------------------------------------------- /src/flamegraph/flamegraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/flamegraph/flamegraph.js -------------------------------------------------------------------------------- /src/flamegraph/merge.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/flamegraph/merge.rs -------------------------------------------------------------------------------- /src/flamegraph/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/flamegraph/mod.rs -------------------------------------------------------------------------------- /src/flamegraph/rand.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/flamegraph/rand.rs -------------------------------------------------------------------------------- /src/flamegraph/svg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/flamegraph/svg.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/src/lib.rs -------------------------------------------------------------------------------- /tests/collapse-dtrace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/collapse-dtrace.rs -------------------------------------------------------------------------------- /tests/collapse-ghcprof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/collapse-ghcprof.rs -------------------------------------------------------------------------------- /tests/collapse-guess.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/collapse-guess.rs -------------------------------------------------------------------------------- /tests/collapse-perf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/collapse-perf.rs -------------------------------------------------------------------------------- /tests/collapse-recursive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/collapse-recursive.rs -------------------------------------------------------------------------------- /tests/collapse-sample.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/collapse-sample.rs -------------------------------------------------------------------------------- /tests/collapse-vsprof.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/collapse-vsprof.rs -------------------------------------------------------------------------------- /tests/collapse-vtune.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/collapse-vtune.rs -------------------------------------------------------------------------------- /tests/collapse-xctrace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/collapse-xctrace.rs -------------------------------------------------------------------------------- /tests/common/collapse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/common/collapse.rs -------------------------------------------------------------------------------- /tests/common/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/common/mod.rs -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/flamegraph-bug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/flamegraph-bug.txt -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/hex-addresses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/hex-addresses.txt -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/java.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/java.txt -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/only-header-lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/only-header-lines.txt -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/results/dtrace-example-offsets.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/results/dtrace-example-offsets.orig -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/results/dtrace-example-offsets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/results/dtrace-example-offsets.txt -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/results/dtrace-example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/results/dtrace-example.txt -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/results/flamegraph-bug.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/results/flamegraph-bug.txt -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/results/hex-addresses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/results/hex-addresses.txt -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/results/java.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/results/java.txt -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/results/rust-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/results/rust-names.txt -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/results/scope_with_no_argument_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/results/scope_with_no_argument_list.txt -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/results/stack-ustack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/results/stack-ustack.txt -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/rust-names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/rust-names.txt -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/scope_with_no_argument_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/scope_with_no_argument_list.txt -------------------------------------------------------------------------------- /tests/data/collapse-dtrace/stack-ustack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-dtrace/stack-ustack.txt -------------------------------------------------------------------------------- /tests/data/collapse-ghcprof/percent.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-ghcprof/percent.prof -------------------------------------------------------------------------------- /tests/data/collapse-ghcprof/results/percent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-ghcprof/results/percent.txt -------------------------------------------------------------------------------- /tests/data/collapse-ghcprof/results/ticks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-ghcprof/results/ticks.txt -------------------------------------------------------------------------------- /tests/data/collapse-ghcprof/results/ticks_bytes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-ghcprof/results/ticks_bytes.txt -------------------------------------------------------------------------------- /tests/data/collapse-ghcprof/results/ticks_ticks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-ghcprof/results/ticks_ticks.txt -------------------------------------------------------------------------------- /tests/data/collapse-ghcprof/results/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-ghcprof/results/utf8.txt -------------------------------------------------------------------------------- /tests/data/collapse-ghcprof/results/utf8_bytes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-ghcprof/results/utf8_bytes.txt -------------------------------------------------------------------------------- /tests/data/collapse-ghcprof/results/utf8_ticks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-ghcprof/results/utf8_ticks.txt -------------------------------------------------------------------------------- /tests/data/collapse-ghcprof/ticks.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-ghcprof/ticks.prof -------------------------------------------------------------------------------- /tests/data/collapse-ghcprof/utf8.prof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-ghcprof/utf8.prof -------------------------------------------------------------------------------- /tests/data/collapse-guess/invalid-perf-with-empty-line-after-event-line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-guess/invalid-perf-with-empty-line-after-event-line.txt -------------------------------------------------------------------------------- /tests/data/collapse-guess/unknown-format.txt: -------------------------------------------------------------------------------- 1 | 2 | this 3 | is an unknown 4 | format 5 | -------------------------------------------------------------------------------- /tests/data/collapse-perf/cpp-stacks-std-function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/cpp-stacks-std-function.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/empty-line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/empty-line.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/go-stacks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/go-stacks.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/java-inline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/java-inline.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/no-events.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/collapse-perf/results/cpp-stacks-std-function-collapsed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/results/cpp-stacks-std-function-collapsed.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/results/example-perf-stacks-collapsed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/results/example-perf-stacks-collapsed.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/results/go-stacks-collapsed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/results/go-stacks-collapsed.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/results/java-inline-collapsed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/results/java-inline-collapsed.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/results/no-events-collapsed.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/collapse-perf/results/perf-rust-Yamakaky-dcpu-collapsed-addrs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/results/perf-rust-Yamakaky-dcpu-collapsed-addrs.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/results/perf-rust-Yamakaky-dcpu-collapsed-all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/results/perf-rust-Yamakaky-dcpu-collapsed-all.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/results/perf-rust-Yamakaky-dcpu-collapsed-jit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/results/perf-rust-Yamakaky-dcpu-collapsed-jit.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/results/perf-rust-Yamakaky-dcpu-collapsed-kernel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/results/perf-rust-Yamakaky-dcpu-collapsed-kernel.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/results/perf-rust-Yamakaky-dcpu-collapsed-pid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/results/perf-rust-Yamakaky-dcpu-collapsed-pid.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/results/perf-rust-Yamakaky-dcpu-collapsed-tid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/results/perf-rust-Yamakaky-dcpu-collapsed-tid.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/results/single-event-collapsed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/results/single-event-collapsed.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/results/single-line-stacks-collapsed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/results/single-line-stacks-collapsed.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/results/sourcepawn-jitdump-collapsed-jit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/results/sourcepawn-jitdump-collapsed-jit.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/results/versioned-vmlinux-collapsed-kernel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/results/versioned-vmlinux-collapsed-kernel.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/single-event.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/single-event.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/single-line-stacks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/single-line-stacks.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/sourcepawn-jitdump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/sourcepawn-jitdump.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/versioned-vmlinux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/versioned-vmlinux.txt -------------------------------------------------------------------------------- /tests/data/collapse-perf/weird-stack-line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-perf/weird-stack-line.txt -------------------------------------------------------------------------------- /tests/data/collapse-recursive/basic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-recursive/basic.txt -------------------------------------------------------------------------------- /tests/data/collapse-recursive/results/basic-collapsed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-recursive/results/basic-collapsed.txt -------------------------------------------------------------------------------- /tests/data/collapse-sample/bad-stack-line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-sample/bad-stack-line.txt -------------------------------------------------------------------------------- /tests/data/collapse-sample/end-before-call-graph-end.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-sample/end-before-call-graph-end.txt -------------------------------------------------------------------------------- /tests/data/collapse-sample/end-before-call-graph-start.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-sample/end-before-call-graph-start.txt -------------------------------------------------------------------------------- /tests/data/collapse-sample/invalid-samples-field.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-sample/invalid-samples-field.txt -------------------------------------------------------------------------------- /tests/data/collapse-sample/large.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-sample/large.txt.gz -------------------------------------------------------------------------------- /tests/data/collapse-sample/no-four-spaces.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-sample/no-four-spaces.txt -------------------------------------------------------------------------------- /tests/data/collapse-sample/odd-indentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-sample/odd-indentation.txt -------------------------------------------------------------------------------- /tests/data/collapse-sample/results/sample-default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-sample/results/sample-default.txt -------------------------------------------------------------------------------- /tests/data/collapse-sample/results/sample-no-modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-sample/results/sample-no-modules.txt -------------------------------------------------------------------------------- /tests/data/collapse-sample/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-sample/sample.txt -------------------------------------------------------------------------------- /tests/data/collapse-sample/skipped-indentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-sample/skipped-indentation.txt -------------------------------------------------------------------------------- /tests/data/collapse-sample/stack-line-only-indent-chars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-sample/stack-line-only-indent-chars.txt -------------------------------------------------------------------------------- /tests/data/collapse-vsprof/CallTreeSummary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-vsprof/CallTreeSummary.csv -------------------------------------------------------------------------------- /tests/data/collapse-vsprof/empty-file.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/collapse-vsprof/incorrect-header.csv: -------------------------------------------------------------------------------- 1 | This is not a correct header 2 | -------------------------------------------------------------------------------- /tests/data/collapse-vsprof/invalid-depth.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-vsprof/invalid-depth.csv -------------------------------------------------------------------------------- /tests/data/collapse-vsprof/invalid-function-name.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-vsprof/invalid-function-name.csv -------------------------------------------------------------------------------- /tests/data/collapse-vsprof/invalid-number-of-calls.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-vsprof/invalid-number-of-calls.csv -------------------------------------------------------------------------------- /tests/data/collapse-vsprof/missing-function-name.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-vsprof/missing-function-name.csv -------------------------------------------------------------------------------- /tests/data/collapse-vsprof/results/sample-default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-vsprof/results/sample-default.txt -------------------------------------------------------------------------------- /tests/data/collapse-vsprof/results/vsprof-default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-vsprof/results/vsprof-default.txt -------------------------------------------------------------------------------- /tests/data/collapse-vtune/bad-stack-line.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-vtune/bad-stack-line.csv -------------------------------------------------------------------------------- /tests/data/collapse-vtune/end-before-header.csv: -------------------------------------------------------------------------------- 1 | war:Column filter is ON. 2 | -------------------------------------------------------------------------------- /tests/data/collapse-vtune/invalid-time-field.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-vtune/invalid-time-field.csv -------------------------------------------------------------------------------- /tests/data/collapse-vtune/results/vtune-default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-vtune/results/vtune-default.txt -------------------------------------------------------------------------------- /tests/data/collapse-vtune/results/vtune-no-modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-vtune/results/vtune-no-modules.txt -------------------------------------------------------------------------------- /tests/data/collapse-vtune/skipped-indentation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-vtune/skipped-indentation.csv -------------------------------------------------------------------------------- /tests/data/collapse-vtune/vtune.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-vtune/vtune.csv -------------------------------------------------------------------------------- /tests/data/collapse-xctrace/basic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-xctrace/basic.xml -------------------------------------------------------------------------------- /tests/data/collapse-xctrace/results/basic.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-xctrace/results/basic.folded -------------------------------------------------------------------------------- /tests/data/collapse-xctrace/results/simple_frame_without_binary_info.folded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-xctrace/results/simple_frame_without_binary_info.folded -------------------------------------------------------------------------------- /tests/data/collapse-xctrace/simple_frame_without_binary_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/collapse-xctrace/simple_frame_without_binary_info.xml -------------------------------------------------------------------------------- /tests/data/diff-folded/after.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/diff-folded/after.txt -------------------------------------------------------------------------------- /tests/data/diff-folded/bad_before.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/diff-folded/bad_before.txt -------------------------------------------------------------------------------- /tests/data/diff-folded/before.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/diff-folded/before.txt -------------------------------------------------------------------------------- /tests/data/diff-folded/before_fractionals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/diff-folded/before_fractionals.txt -------------------------------------------------------------------------------- /tests/data/diff-folded/results/default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/diff-folded/results/default.txt -------------------------------------------------------------------------------- /tests/data/diff-folded/results/fractionals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/diff-folded/results/fractionals.txt -------------------------------------------------------------------------------- /tests/data/diff-folded/results/normalize.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/diff-folded/results/normalize.txt -------------------------------------------------------------------------------- /tests/data/diff-folded/results/strip_hex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/diff-folded/results/strip_hex.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/austin/flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/austin/flame.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/austin/flames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/austin/flames.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/bad-lines/bad-lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/bad-lines/bad-lines.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/base/flames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/base/flames.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/base/multi-base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/base/multi-base.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/base/single-base.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/base/single-base.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/colors/async-profiler-collapsed-part.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/colors/async-profiler-collapsed-part.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/colors/async-profiler-java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/colors/async-profiler-java.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/colors/deterministic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/colors/deterministic.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/colors/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/colors/java.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/colors/js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/colors/js.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/differential/diff-negated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/differential/diff-negated.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/differential/diff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/differential/diff.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/differential/perf-cycles-instructions-01-collapsed-all-diff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/differential/perf-cycles-instructions-01-collapsed-all-diff.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/empty/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/empty/empty.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/empty/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/flamegraph/example-perf-stacks/example-perf-stacks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/example-perf-stacks/example-perf-stacks.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/example-perf-stacks/palette.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/example-perf-stacks/palette.map -------------------------------------------------------------------------------- /tests/data/flamegraph/factor/factor-2.5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/factor/factor-2.5.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/flamechart/flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/flamechart/flame.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/flamechart/flames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/flamechart/flames.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/fractional-samples/fractional-reversed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/fractional-samples/fractional-reversed.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/fractional-samples/fractional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/fractional-samples/fractional.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/fractional-samples/no-fractionals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/fractional-samples/no-fractionals.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/fractional-samples/tricky-stack.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/fractional-samples/tricky-stack.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/fractional-samples/with-space-reversed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/fractional-samples/with-space-reversed.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/fractional-samples/with-space.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/fractional-samples/with-space.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/fractional-samples/zero-fractionals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/fractional-samples/zero-fractionals.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/grey-frames/grey-frames.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/grey-frames/grey-frames.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/grey-frames/grey-frames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/grey-frames/grey-frames.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/inverted/inverted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/inverted/inverted.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/multiple-inputs/perf-vertx-stacks-01-collapsed-all-unsorted-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/multiple-inputs/perf-vertx-stacks-01-collapsed-all-unsorted-1.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/multiple-inputs/perf-vertx-stacks-01-collapsed-all-unsorted-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/multiple-inputs/perf-vertx-stacks-01-collapsed-all-unsorted-2.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/nameattr/nameattr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/nameattr/nameattr.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/nameattr/nameattr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/nameattr/nameattr.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/nameattr/nameattr_duplicate_attributes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/nameattr/nameattr_duplicate_attributes.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/nameattr/nameattr_duplicate_attributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/nameattr/nameattr_duplicate_attributes.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/nameattr/nameattr_empty_attribute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/nameattr/nameattr_empty_attribute.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/nameattr/nameattr_empty_first_line.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/nameattr/nameattr_empty_first_line.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/nameattr/nameattr_invalid_attribute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/nameattr/nameattr_invalid_attribute.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/narrow-blocks/narrow-blocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/narrow-blocks/narrow-blocks.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/narrow-blocks/narrow-blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/narrow-blocks/narrow-blocks.txt -------------------------------------------------------------------------------- /tests/data/flamegraph/options/colordiffusion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/colordiffusion.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/count_name_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/count_name_simple.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/count_name_with_symbols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/count_name_with_symbols.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/default.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/font_type_cursive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/font_type_cursive.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/font_type_fantasy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/font_type_fantasy.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/font_type_monospace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/font_type_monospace.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/font_type_sans-serif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/font_type_sans-serif.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/font_type_serif.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/font_type_serif.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/font_type_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/font_type_simple.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/font_type_with_quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/font_type_with_quote.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/name_type_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/name_type_simple.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/name_type_with_backslash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/name_type_with_backslash.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/name_type_with_quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/name_type_with_quote.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/notes_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/notes_simple.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/notes_with_symbols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/notes_with_symbols.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/search_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/search_color.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/stroke_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/stroke_color.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/subtitle_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/subtitle_simple.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/subtitle_with_symbols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/subtitle_with_symbols.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/title_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/title_simple.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/title_with_symbols.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/title_with_symbols.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/truncate-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/truncate-right.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/options/uicolor_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/options/uicolor_color.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/palette-map/consistent-palette.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/palette-map/consistent-palette.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/palette-map/palette.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/palette-map/palette.map -------------------------------------------------------------------------------- /tests/data/flamegraph/palette-map/palette_invalid.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/palette-map/palette_invalid.map -------------------------------------------------------------------------------- /tests/data/flamegraph/perf-vertx-stacks/perf-vertx-stacks-01-collapsed-all-reversed-stacks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/perf-vertx-stacks/perf-vertx-stacks-01-collapsed-all-reversed-stacks.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/perf-vertx-stacks/perf-vertx-stacks-01-collapsed-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/perf-vertx-stacks/perf-vertx-stacks-01-collapsed-all.svg -------------------------------------------------------------------------------- /tests/data/flamegraph/unsorted-input/perf-vertx-stacks-01-collapsed-all-unsorted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/data/flamegraph/unsorted-input/perf-vertx-stacks-01-collapsed-all-unsorted.txt -------------------------------------------------------------------------------- /tests/diff-folded.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/diff-folded.rs -------------------------------------------------------------------------------- /tests/flamegraph.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonhoo/inferno/HEAD/tests/flamegraph.rs --------------------------------------------------------------------------------