summaryrefslogtreecommitdiff
path: root/deps/rabbitmq_tracing/src/rabbit_tracing_consumer_sup.erl
diff options
context:
space:
mode:
Diffstat (limited to 'deps/rabbitmq_tracing/src/rabbit_tracing_consumer_sup.erl')
-rw-r--r--deps/rabbitmq_tracing/src/rabbit_tracing_consumer_sup.erl25
1 files changed, 25 insertions, 0 deletions
diff --git a/deps/rabbitmq_tracing/src/rabbit_tracing_consumer_sup.erl b/deps/rabbitmq_tracing/src/rabbit_tracing_consumer_sup.erl
new file mode 100644
index 0000000000..b651a75a99
--- /dev/null
+++ b/deps/rabbitmq_tracing/src/rabbit_tracing_consumer_sup.erl
@@ -0,0 +1,25 @@
+%% This Source Code Form is subject to the terms of the Mozilla Public
+%% License, v. 2.0. If a copy of the MPL was not distributed with this
+%% file, You can obtain one at https://mozilla.org/MPL/2.0/.
+%%
+%% Copyright (c) 2007-2020 VMware, Inc. or its affiliates. All rights reserved.
+%%
+
+-module(rabbit_tracing_consumer_sup).
+
+-behaviour(supervisor).
+
+-include_lib("rabbit_common/include/rabbit.hrl").
+
+-export([start_link/1]).
+-export([init/1]).
+
+start_link(Args) -> supervisor2:start_link(?MODULE, Args).
+
+%%----------------------------------------------------------------------------
+
+init(Args) ->
+ {ok, {{one_for_one, 3, 10},
+ [{consumer, {rabbit_tracing_consumer, start_link, [Args]},
+ transient, ?WORKER_WAIT, worker,
+ [rabbit_tracing_consumer]}]}}.