emqx_node_rebalance.app.src 613 B

12345678910111213141516171819202122232425
  1. {application, emqx_node_rebalance, [
  2. {description, "EMQX Node Rebalance"},
  3. {vsn, "5.0.10"},
  4. {registered, [
  5. emqx_node_rebalance_sup,
  6. emqx_node_rebalance,
  7. emqx_node_rebalance_agent,
  8. emqx_node_rebalance_evacuation,
  9. emqx_node_rebalance_purge
  10. ]},
  11. {applications, [
  12. kernel,
  13. stdlib,
  14. emqx,
  15. emqx_ctl,
  16. emqx_eviction_agent
  17. ]},
  18. {mod, {emqx_node_rebalance_app, []}},
  19. {env, []},
  20. {modules, []},
  21. {links, [
  22. {"Homepage", "https://www.emqx.com/"},
  23. {"Github", "https://github.com/emqx"}
  24. ]}
  25. ]}.