Current section

Files

Jump to
new_relic_agent lib new_relic transaction erlang_trace_supervisor.ex
Raw

lib/new_relic/transaction/erlang_trace_supervisor.ex

defmodule NewRelic.Transaction.ErlangTraceSupervisor do
use Supervisor
@moduledoc false
def start_link(_) do
Supervisor.start_link(__MODULE__, [], name: __MODULE__)
end
def init(_) do
children = [
NewRelic.Transaction.ErlangTrace
]
Supervisor.init(children, strategy: :one_for_one)
end
end