commit | 36557d88d4f957669cc9a8768bc6f2d0e7d50652 | [log] [tgz] |
---|---|---|
author | Lalit Maganti <lalitm@google.com> | Wed Apr 11 14:36:17 2018 +0100 |
committer | Lalit Maganti <lalitm@google.com> | Wed Apr 11 14:36:17 2018 +0100 |
tree | 49dddba47621a8b772d7002cb6e911fb7bf65cc7 | |
parent | d9f3913e3874520ac37e9e489dd5ca17c7c4e974 [diff] |
perfetto: further cleanup and consolidate test code With the introduction of test helper, integration tests have already been made much cleaner. Now the next step is to take this further and reduce coupling between producer service and consumer. We can do this by making the producer emit data without the test explicitly requesting it (like ftrace) if a flag in config is enabled. Moreover, we can also consolidate all checkpointing code inside the helper class instead of every file defining its own. Bug: 74380167 Change-Id: Idbe24586a4aaadb17f934f6e06c5c6d378be0ec3
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.