commit | 6d627a9922f67a1b65be28d646f7180ab3a96a3d | [log] [tgz] |
---|---|---|
author | Tuchila Octavian <octaviant@google.com> | Fri Jan 28 16:59:10 2022 +0000 |
committer | Octavian Tuchila <octaviant@google.com> | Fri Jan 28 17:04:09 2022 +0000 |
tree | 0e30f532dfc9f48952e73fb164335f3a24ca796f | |
parent | 17ec90c1ecc25b6437e818822a286e6cb92d899a [diff] |
ui: Change type of uiTrackIdByTraceTrackId a `Map` does not preserve type during serialisation+deserialisation ``` const m1 = new Map<number, string>(); const m2 = JSON.parse(JSON.stringify(m1)); console.log(m1); console.log(m2); ``` Will output: ``` [LOG]: Map (0) {} [LOG]: {} ``` Bug: 216626668 Change-Id: Ia84e0d47012f9891e56ad86226f37d382b752423
Perfetto is a production-grade open-source stack for performance instrumentation and trace analysis. It offers services and libraries and for recording system-level and app-level traces, native + java heap profiling, a library for analyzing traces using SQL and a web-based UI to visualize and explore multi-GB traces.
See https://perfetto.dev/docs or the /docs/ directory for documentation.