Lines Matching +full:profile +full:- +full:traces
3 _This quickstart demonstrates how Perfetto traces can be converted into other trace formats using t…
5 
9 - A host running Linux or MacOS
10 - A Perfetto protobuf trace file
14 - `text` - protobuf text format: a text based representation of protos
15 - `json` - Chrome JSON format: the format used by chrome://tracing
16 - `systrace`: the ftrace text format used by Android systrace
17 - `profile` : pprof-like format. Either for traces with with
18 [native heap profiler](/docs/data-sources/native-heap-profiler.md) dumps or
19 [callstack sampling](/docs/quickstart/callstack-sampling.md) (note however
20 callstacks requires the `--perf` flag).
27 curl -LO https://get.perfetto.dev/traceconv
29 ./traceconv [text|json|systrace|profile] [input proto file] [output file]
35 curl -LO https://raw.githubusercontent.com/google/perfetto/<tag>/tools/traceconv
37 ./traceconv [text|json|systrace|profile] [input proto file] [output file]
48 ## Converting to pprof profile.
55 `~/traceconv profile [input proto file] [output file]`
60 `~/traceconv profile [input proto file] [output file] --perf`
62 Note for `--perf` the output is one pprof file per process sampled in the trace.