zio.internal.tracing

Type members

Classlikes

final case class TracingConfig(traceExecution: Boolean, traceEffectOpsInExecution: Boolean, traceStack: Boolean, executionTraceLength: Int, stackTraceLength: Int, ancestryLength: Int, ancestorExecutionTraceLength: Int, ancestorStackTraceLength: Int)

Toggles:

Toggles:

Value parameters:
ancestorExecutionTraceLength

How many lines of execution trace to include in the trace of last lines before .fork in the parent fiber that spawned the current fiber

ancestorStackTraceLength

How many lines of stack trace to include in the trace of last lines before .fork in the parent fiber that spawned the current fiber

ancestryLength

Maximum count of parent fiber traces to include

executionTraceLength

Preserve how many lines of a full execution trace

stackTraceLength

Maximum length of a stack trace

traceEffectOpsInExecution

Add traces of ZIO.effect* operations in Full Execution Trace. Applies when traceExecution is enabled. May multiply the amount of memory used by the tracing cache.

traceExecution

Collect traces of most ZIO operations into a Full Execution Trace

traceStack

Collect trace of the current stack of future continuations, This trace resembles an imperative stacktrace and will usually include similar information, but due to the way ZIO tracing works, it includes only references to future continuations, i.e. the end of a "stack frame" rather than the start of a "stack frame".

Companion:
object
Companion:
class