data class StartRequest
Request object containing input parameters for the TracingDomain.start command.
<init> |
Request object containing input parameters for the TracingDomain.start command. StartRequest(categories: String? = null, options: String? = null, bufferUsageReportingInterval: Double? = null, transferMode: String? = null, streamFormat: StreamFormat? = null, streamCompression: StreamCompression? = null, traceConfig: TraceConfig? = null, perfettoConfig: String? = null) |
bufferUsageReportingInterval |
If set, the agent will issue bufferUsage events at this interval, specified in milliseconds val bufferUsageReportingInterval: Double? |
categories |
Category/tag filter val |
options |
Tracing options val |
perfettoConfig |
Base64-encoded serialized perfetto.protos.TraceConfig protobuf message
When specified, the parameters val perfettoConfig: String? |
streamCompression |
Compression format to use. This only applies when using val streamCompression: StreamCompression? |
streamFormat |
Trace data format to use. This only applies when using val streamFormat: StreamFormat? |
traceConfig |
val traceConfig: TraceConfig? |
transferMode |
Whether to report trace events as series of dataCollected events or to save trace to a
stream (defaults to val transferMode: String? |