You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.2 KiB

  1. # -*- coding: utf-8 -*-
  2. # © 2015 Therp BV <http://therp.nl>
  3. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
  4. {
  5. "name": "Dead man's switch (client)",
  6. "version": "1.0.0",
  7. "author": "Therp BV,Odoo Community Association (OCA)",
  8. "license": "AGPL-3",
  9. "category": "Monitoring",
  10. "description": """
  11. ==========================
  12. Dead man's switch (client)
  13. ==========================
  14. This module is the client part of `dead_mans_switch_server`. It is responsible
  15. of sending the server status updates, which in turn takes action if those
  16. updates don't come in time.
  17. Configuration
  18. =============
  19. After installing this module, you need to fill in the system parameter
  20. `dead_mans_switch_client.url`. This must be the full URL to the server's
  21. controller, usually of the form https://your.server/dead_mans_switch/alive
  22. This module attempts to send CPU and RAM statistics to the server. While this
  23. is not mandatory, it's helpful for assessing a server's health. If you want
  24. this, you need to install `psutil`.
  25. You can also have the currently online users logged, but this only works if
  26. the `im_chat` module is installed.""",
  27. "depends": [
  28. 'base',
  29. ],
  30. "data": [
  31. "data/ir_actions.xml",
  32. "data/ir_cron.xml",
  33. ],
  34. }