Are there any simple examples/documentation on multi-machine tracing? #2095
-
Is there any documentation or simple examples of how to use traced_relay to collect multi machine traces? Likewise, is there any documentation or examples of valid traces utilizing multiple machine ids for those wishing to synthetically create similar traces in situations where traced_relay can't be used directly? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
This is not unfortunately. It's very optimised for ChromeOS and VM tracing atm, I'm not sure it's in a state anyone else can use.
The correct answer for this is to wait for #1018. Writing multi-machine traces inside a single file is very complicated and there are subtle dependencies baked in which I would not recommend anyone to do. The much better option is to write each trace separately and "merge" the traces together in the UI/trace_processor. In the coming month, I will implement support for merging multiple traces for the same device. Once we do that, it is a pretty small jump to implement multiple traces from multiple devices. |
Beta Was this translation helpful? Give feedback.
This is not unfortunately. It's very optimised for ChromeOS and VM tracing atm, I'm not sure it's in a state anyone else can use.
The correct answer for this is to wait for #1018. Writing multi-machine traces inside a single file is very complicated and there are subtle dependencies baked in which I would not recommend anyone to do. The much better option is to write each tr…