You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: Add section about using Tracy for profiling (#4534)
# Objective
- Document how to do profiling with Tracy
# Solution
- The documentation of setting `RUST_LOG=info` in order to capture `wgpu` spans depends on #5182
Copy file name to clipboardExpand all lines: docs/profiling.md
+39-3Lines changed: 39 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,11 @@
2
2
3
3
## Runtime Flame Graph: `tracing` spans
4
4
5
-
Bevy has built-in [tracing](https://github.com/tokio-rs/tracing) spans to make it cheap and easy to profile Bevy ECS systems, render logic, engine iternals, and user app code. Enable the `trace` cargo feature to enable Bevy's built-in spans. You also need to select a `tracing` backend using the following cargo features:
5
+
Bevy has built-in [tracing](https://github.com/tokio-rs/tracing) spans to make it cheap and easy to profile Bevy ECS systems, render logic, engine iternals, and user app code. Enable the `trace` cargo feature to enable Bevy's built-in spans.
6
+
7
+
If you also want to include `wgpu` tracing spans when profiling, they are emitted at the `tracing``info` level so you will need to make sure they are not filtered out by the `LogSettings` resource's `filter` member which defaults to `wgpu=error`. You can do this by setting the `RUST_LOG=info` environment variable when running your application.
8
+
9
+
You also need to select a `tracing` backend using the following cargo features:
6
10
7
11
### Backend: trace_chrome
8
12
@@ -12,13 +16,45 @@ After running your app a `json` file in the "chrome tracing format" will be prod
The [Tracy profiling tool](https://github.com/wolfpld/tracy) is:
22
+
> A real time, nanosecond resolution, remote telemetry, hybrid frame and sampling profiler for games and other applications.
23
+
24
+
There are binaries available for Windows, and installation / build instructions for other operating systems can be found in the [Tracy documentation PDF](https://github.com/wolfpld/tracy/releases/latest/download/tracy.pdf).
25
+
26
+
It has a command line capture tool that can record the execution of graphical applications, saving it as a profile file. Tracy has a GUI to inspect these profile files. The GUI app also supports live capture, showing you in real time the trace of your app.
27
+
28
+
In one terminal, run:
29
+
`./capture-release -o my_capture.tracy`
30
+
This will sit and wait for a tracy-instrumented application to start, and when it does, it will automatically connect and start capturing. Note that on Windows, the capture tool is called `capture.exe`.
31
+
32
+
Then run your application, enabling the `trace_tracy` feature:
33
+
`cargo run --release --features bevy/trace_tracy`
34
+
35
+
After running your app, you can open the captured profile file (`my_capture.tracy` in the example above) in the Tracy GUI application to see a timeline of the executed spans.
36
+
37
+
Alternatively, directly run the tracy GUI and then run your application, for live capture. However, beware that running the live capture on the same machine will be a competing graphical application, which may impact results. Pre-recording the profile data through the CLI tool is recommended for more accurate traces.
38
+
39
+
In any case, you'll see your trace in the GUI window:
40
+
41
+

42
+
43
+
There is a button to display statistics of mean time per call (MTPC) for all systems:
44
+
45
+

46
+
47
+
Or you can select an individual system and inspect its statistics (available through the "statistics" button in the top menu) to see things like the distribution of execution times in a graph, or statistical aggregates such as mean, median, standard deviation, etc. It will look something like this:
48
+
49
+

50
+
15
51
### Adding your own spans
16
52
17
53
Add spans to your app like this (these are in `bevy::prelude::*` and `bevy::log::*`, just like the normal logging macros).
0 commit comments