emqx_plugins_sup.erl 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. %%--------------------------------------------------------------------
  2. %% Copyright (c) 2021-2022 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_plugins_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. %% TODO: Add monitor plugins change.
  24. Monitor = emqx_plugins_monitor,
  25. _Children = [
  26. #{
  27. id => Monitor,
  28. start => {Monitor, start_link, []},
  29. restart => permanent,
  30. shutdown => brutal_kill,
  31. type => worker,
  32. modules => [Monitor]
  33. }
  34. ],
  35. SupFlags =
  36. #{
  37. strategy => one_for_one,
  38. intensity => 100,
  39. period => 10
  40. },
  41. {ok, {SupFlags, []}}.