Trace.Send
Trace.Send
#Overview
name: Trace.Send
This variable is created as a Console Variable (cvar).
- type:
Cmd
- help:
<Host> [ChannelSet] - Starts tracing to a trace store. <Host> is the IP address or hostname of the trace store. ChannelSet is comma-separated list of trace channels/presets to be enabled.
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Core/Private/ProfilingDebugging/TraceAuxiliary.cpp:1126
Scope: file
Source code excerpt:
////////////////////////////////////////////////////////////////////////////////
static FAutoConsoleCommand TraceAuxiliarySendCmd(
TEXT("Trace.Send"),
TEXT("<Host> [ChannelSet] - Starts tracing to a trace store."
" <Host> is the IP address or hostname of the trace store."
" ChannelSet is comma-separated list of trace channels/presets to be enabled."
),
FConsoleCommandWithArgsDelegate::CreateStatic(TraceAuxiliarySend)
);