Package

zio.internal

tracing

Permalink

package tracing

Visibility
  1. Public
  2. All

Type Members

  1. final case class TracingConfig(traceExecution: Boolean, traceEffectOpsInExecution: Boolean, traceStack: Boolean, executionTraceLength: Int, stackTraceLength: Int, ancestryLength: Int, ancestorExecutionTraceLength: Int, ancestorStackTraceLength: Int) extends Product with Serializable

    Permalink

    Toggles:

    Toggles:

    traceExecution

    Collect traces of most ZIO operations into a Full Execution 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.

    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".

    executionTraceLength

    Preserve how many lines of a full execution trace

    stackTraceLength

    Maximum length of a stack trace

    ancestryLength

    Maximum count of parent fiber traces to include

    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

Value Members

  1. object TracingConfig extends Serializable

    Permalink

Ungrouped