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
First Draft of Changes to Profiler Tutorial (#711)
- Explicitly create new project directory called profiler_example
- Download profiler.cc into directory using wget
- Remove unnecessary grep dependency
- Clarify the CMakeLists is being created, not modified
- Separate the different options for running the profiler visualization
into multiple blocks, with the conditions described more clearly
- Would like confirmation on what IP address http.server broadcasts to;
tutorial says it's the container's IP address, but it always showed up
as 0.0.0.0 (localhost) for me in my container
Signed-off-by: Harrison Chen <[email protected]>
Co-authored-by: Addisu Z. Taddese <[email protected]>
(cherry picked from commit 2b33445)
# Conflicts:
# tutorials/profiler.md
- If you installed `gz-common` as a package/binary:
132
+
- Open the HTML file directly via a convenience script:
133
+
134
+
```{.sh}
135
+
$(find /usr -type f -name 'gz_remotery_vis')
136
+
```
137
+
138
+
- Or, if you're running inside a Docker container, start a server:
139
+
140
+
```{.sh}
141
+
python3 -m http.server -d $(find / -type d -name 'profiler_vis')
142
+
```
143
+
144
+
- If you installed `gz-common` from source, we assume it is located at `$SOURCE_DIR/gz-common`, where `$SOURCE_DIR` is a variable representing a file path
0 commit comments