View Source NewRelic.Instrumented.Task.Supervisor (New Relic Elixir Agent v1.30.0)
Provides a pre-instrumented convienince module to connect
non-linked Task.Supervisor
processes to the Transaction
that called them.
You may call these functions directly, or alias
the
NewRelic.Instrumented.Task
module and continue to use
Task
as normal.
Example usage:
alias NewRelic.Instrumented.Task
Task.Supervisor.async_nolink(
MySupervisor,
[1,2],
fn n -> do_work(n) end
)
Summary
Functions
Link to this function
async_stream(supervisor, enumerable, module, function, args, options \\ [])
View Source
Link to this function