![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <ITraceControllerCommands.h>
Inheritance diagram for ITraceControllerCommands:Public Member Functions | |
| virtual | ~ITraceControllerCommands () |
| virtual void | SetChannels (TConstArrayView< FStringView > ChannelsToEnable, TConstArrayView< FStringView > ChannelsToDisable)=0 |
| virtual void | SetChannels (TConstArrayView< FString > ChannelsToEnable, TConstArrayView< FString > ChannelsToDisable)=0 |
| virtual void | Send (FStringView Host, FStringView Channels, bool bExcludeTail=false)=0 |
| virtual void | File (FStringView File, FStringView Channels, bool bExcludeTail=false, bool bTruncateFile=false)=0 |
| virtual void | SnapshotSend (FStringView Host)=0 |
| virtual void | SnapshotFile (FStringView File)=0 |
| virtual void | Pause ()=0 |
| virtual void | Resume ()=0 |
| virtual void | Stop ()=0 |
| virtual void | Bookmark (FStringView Label)=0 |
| virtual void | Screenshot (FStringView Name, bool bShowUI)=0 |
| virtual void | SetStatNamedEventsEnabled (bool bEnabled)=0 |
Interface to send commands to a single remote trace service.
|
inlinevirtual |
|
pure virtual |
Insert bookmark into the trace.
| Label | Label of bookmark |
|
pure virtual |
Start a trace on selected instances to a file on the instance, using a set of channels.
| File | Path on the instance. ".utrace" will be appended |
| Channels | Comma separated list of channels to enable |
| bExcludeTail | If the tail (circular buffer of recent events) should be included |
| bTruncateFile | If the file should be truncated (if already exists) |
Pause tracing by muting all (non-readonly) channels.
Resume tracing (from paused) by enabling the previously enabled channels.
|
pure virtual |
Insert screenshot into the trace.
| Name | Name of the screenshot |
| bShowUI | If the UI should be visible in the image |
|
pure virtual |
Start a trace on selected instances to the provided host, using a set of channels.
| Host | Host to send the trace to |
| Channels | Comma separated list of channels to enable |
| bExcludeTail | If the tail (circular buffer of recent events) should be included |
|
pure virtual |
Enables or disables channels by name
| ChannelsToEnable | List of channels to enable |
| ChannelsToDisable | List of channels to disable |
|
pure virtual |
Enables or disables channels by name
| ChannelsToEnable | List of channels to enable |
| ChannelsToDisable | List of channels to disable |
Set the StatNamedEvents flag.
| bEnabled | The value to assign to the StatNamedEvents flag. |
|
pure virtual |
On selected instances, make a snapshot of the tail (circular buffer of recent events) and save to a file.
| File | Path on the instance. ".utrace" will be appended |
|
pure virtual |
On selected instances, make a snapshot of the tail (circular buffer of recent events) and send to the provided host.
| Host | Host to send the trace to |