emqx_modules_sup.erl 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. %%--------------------------------------------------------------------
  2. %% Copyright (c) 2020-2023 EMQ Technologies Co., Ltd. All Rights Reserved.
  3. %%
  4. %% Licensed under the Apache License, Version 2.0 (the "License");
  5. %% you may not use this file except in compliance with the License.
  6. %% You may obtain a copy of the License at
  7. %%
  8. %% http://www.apache.org/licenses/LICENSE-2.0
  9. %%
  10. %% Unless required by applicable law or agreed to in writing, software
  11. %% distributed under the License is distributed on an "AS IS" BASIS,
  12. %% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. %% See the License for the specific language governing permissions and
  14. %% limitations under the License.
  15. %%--------------------------------------------------------------------
  16. -module(emqx_modules_sup).
  17. -behaviour(supervisor).
  18. -export([start_link/0]).
  19. -export([init/1]).
  20. %% Helper macro for declaring children of supervisor
  21. -define(CHILD(Mod), #{
  22. id => Mod,
  23. start => {Mod, start_link, []},
  24. restart => permanent,
  25. shutdown => 5000,
  26. type => worker,
  27. modules => [Mod]
  28. }).
  29. start_link() ->
  30. supervisor:start_link({local, ?MODULE}, ?MODULE, []).
  31. %%--------------------------------------------------------------------
  32. %% Supervisor callbacks
  33. %%--------------------------------------------------------------------
  34. init([]) ->
  35. {ok,
  36. {{one_for_one, 10, 3600}, [
  37. ?CHILD(emqx_topic_metrics),
  38. ?CHILD(emqx_trace),
  39. ?CHILD(emqx_delayed)
  40. ]}}.