Appsignal.Span.create_child

You're seeing just the function create_child, go back to Appsignal.Span module for more information.

Specs

create_child(t() | nil, pid()) :: t() | nil

Create a child Appsignal.Span.

Example

Appsignal.Tracer.root_span()
|> Appsignal.Span.create_child(self())
Link to this function

create_child(span, pid, start_time)

View Source

Specs

create_child(t() | nil, pid(), integer()) :: t() | nil

Create a child Appsignal.Span with an explicit start time.

Example

Appsignal.Tracer.root_span()
|> Appsignal.Span.create_child(self(), :os.system_time())