emqx_sys_sup.erl 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. %%--------------------------------------------------------------------
  2. %% Copyright (c) 2018-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_sys_sup).
  17. -behaviour(supervisor).
  18. -export([start_link/0]).
  19. -export([init/1]).
  20. start_link() ->
  21. supervisor:start_link({local, ?MODULE}, ?MODULE, []).
  22. init([]) ->
  23. Childs = [
  24. child_spec(emqx_sys),
  25. child_spec(emqx_alarm),
  26. child_spec(emqx_sys_mon),
  27. child_spec(emqx_os_mon),
  28. child_spec(emqx_vm_mon)
  29. ],
  30. {ok, {{one_for_one, 10, 100}, Childs}}.
  31. %%--------------------------------------------------------------------
  32. %% Internal functions
  33. %%--------------------------------------------------------------------
  34. child_spec(Mod) ->
  35. child_spec(Mod, []).
  36. child_spec(Mod, Args) ->
  37. #{
  38. id => Mod,
  39. start => {Mod, start_link, Args},
  40. restart => permanent,
  41. shutdown => 5000,
  42. type => worker,
  43. modules => [Mod]
  44. }.