commit | 21160e8c41471a982b5567089a8ab57e3bcb5fa7 | [log] [tgz] |
---|---|---|
author | Lalit Maganti <lalitm@google.com> | Tue Oct 16 09:40:29 2018 +0100 |
committer | Lalit Maganti <lalitm@google.com> | Tue Oct 16 09:40:29 2018 +0100 |
tree | 9edd3b0bc999a7677d8e1fd16c2bf1c18fcfd6de | |
parent | 44bf361719b3c1c7c36e4f708097f847cea6ab9c [diff] |
trace_processor: add diff testing for trace processor Trace processor is notoriously hard to test using unit or integration tests because of the intermediate steps being closely tied to the code and being implementation dependent. Fundamentally, all we really care about is that for a certain set of traces and queries, we maintain correctness and performance. This can be done using diff testing where we take a trace and a query and run the whole end-to-end trace processor over it, comparing the output to the expected (i.e. correct) output and complaining if that is not correct. This CL only addresses the correctness portion. The performance portion will be tackled in a follow-up. Bug: 117596113 Change-Id: Idbfe1fc732bea9b3b7a926ef2d99d3c2ac90dc16
Perfetto is an open-source project for performance instrumentation and tracing of Linux/Android/Chrome platforms and user-space apps.
It consists of:
A portable, high efficiency, user-space tracing library
designed for tracing of multi-process systems, based on zero-alloc zero-copy zero-syscall (on fast-paths) writing of protobufs over shared memory.
OS-wide Linux/Android probes for platform debugging
Web-based frontend
A UI for inspection and analysis of traces (coming soon).
Batch processing of traces
A python / C++ (TBD) library for trace-based metrics (coming soon).
Perfetto is building the next-gen unified tracing ecosystem for:
The goal is to create an open, portable and developer friendly tracing ecosystem for app and platform performance debugging.
Designed for production
Perfetto's tracing library and daemons are designed for use in production. Privilege isolation is a key design goal:
See docs/security-model.md for more details.
Long traces
Pefetto aims at supporting hours-long / O(100GB) traces, both in terms of recording backend and UI frontend.
Interoperability
Perfetto traces (output) and configuration (input) consists of protobuf messages, in order to allow interoperability with several languages.
See docs/trace-format.md for more details.
Composability
As Perfetto is designed both for OS-level tracing and app-level tracing, its design allows to compose several instances of the Perfetto tracing library, allowing to nest multiple layers of tracing and drive then with the same frontend. This allows powerful blending of app-specific and OS-wide trace events. See docs/multi-layer-tracing.md for more details.
Portability
The only dependencies of Perfetto's tracing libraries are C++11 and Protobuf lite (plus google-test, google-benchmark, libprotobuf-full for testing).
Extensibility
Perfetto allows third parties to defined their own protobufs for:
Allowing apps to define their own strongly-typed input and output schema. See docs/trace-format.md for more details.