plugins.rst 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. Third Party Applications and Libraries
  2. ======================================
  3. There are a number of third party applications that can be useful together
  4. with Supervisor. This list aims to summarize them and make them easier
  5. to find.
  6. See README.rst for information on how to contribute to this list.
  7. Obviously, you can always also send an e-mail to the Supervisor mailing
  8. list to inform about missing plugins or libraries for/using Supervisor.
  9. Dashboards and Tools for Multiple Supervisor Instances
  10. ------------------------------------------------------
  11. These are tools that can monitor or control a number of Supervisor
  12. instances running on different servers.
  13. `cesi <https://github.com/Gamegos/cesi>`_
  14. Web-based dashboard written in Python.
  15. `Django-Dashvisor <https://github.com/aleszoulek/django-dashvisor>`_
  16. Web-based dashboard written in Python. Requires Django 1.3 or 1.4.
  17. `Nodervisor <https://github.com/TAKEALOT/nodervisor>`_
  18. Web-based dashboard written in Node.js.
  19. `Supervisord-Monitor <https://github.com/mlazarov/supervisord-monitor>`_
  20. Web-based dashboard written in PHP.
  21. `SupervisorUI <https://github.com/luxbet/supervisorui>`_
  22. Another Web-based dashboard written in PHP.
  23. `supervisorclusterctl <https://github.com/RobWin/supervisorclusterctl>`_
  24. Command line tool for controlling multiple Supervisor instances
  25. using Ansible.
  26. Third Party Plugins and Libraries for Supervisor
  27. ------------------------------------------------
  28. These are plugins and libraries that add new functionality to Supervisor.
  29. These also includes various event listeners.
  30. `superlance <http://pypi.python.org/pypi/superlance>`_
  31. Provides set of common eventlisteners that can be used to monitor
  32. and, for example, restart when it uses too much memory etc.
  33. `mr.rubber <https://github.com/collective/mr.rubber>`_
  34. An event listener that makes it possible to scale the number of
  35. processes to the number of cores on the supervisor host.
  36. `supervisor-wildcards <https://github.com/aleszoulek/supervisor-wildcards>`_
  37. Implemenents start/stop/restart commands with wildcard support for
  38. Supervisor. These commands run in parallel and can be much faster
  39. than the built-in start/stop/restart commands.
  40. `mr.laforge <https://github.com/fschulze/mr.laforge>`_
  41. Lets you easily make sure that ``supervisord`` and specific
  42. processes controlled by it are running from within shell and
  43. Python scripts. Also adds a ``kill`` command to supervisor that
  44. makes it possible to send arbitrary signals to child processes.
  45. `supervisor_cache <https://github.com/mnaberez/supervisor_cache>`_
  46. An extension for Supervisor that provides the ability to cache
  47. arbitrary data directly inside a Supervisor instance as key/value
  48. pairs. Also serves as a reference for how to write Supervisor
  49. extensions.
  50. `supervisor_twiddler <https://github.com/mnaberez/supervisor_twiddler>`_
  51. An RPC extension for Supervisor that allows Supervisor's
  52. configuration and state to be manipulated in ways that are not
  53. normally possible at runtime.
  54. `supervisor-stdout <https://github.com/coderanger/supervisor-stdout>`_
  55. An event listener that sends process output to supervisord's stdout.
  56. `supervisor-serialrestart <https://github.com/native2k/supervisor-serialrestart>`_
  57. Adds a ``serialrestart`` command to ``supervisorctl`` that restarts
  58. processes one after another rather than all at once.
  59. `supervisor-quick <http://lxyu.github.io/supervisor-quick/>`_
  60. Adds ``quickstart``, ``quickstop``, and ``quickrestart`` commands to
  61. ``supervisorctl`` that can be faster than the built-in commands. It
  62. works by using the non-blocking mode of the XML-RPC methods and then
  63. polling ``supervisord``. The built-in commands use the blocking mode,
  64. which can be slower due to ``supervisord`` implementation details.
  65. `supervisor-logging <https://github.com/infoxchange/supervisor-logging>`_
  66. An event listener that sends process log events to an external
  67. Syslog instance (e.g. Logstash).
  68. Libraries that integrate Third Party Applications with Supervisor
  69. -----------------------------------------------------------------
  70. These are libraries and plugins that makes it easier to use Supervisor
  71. with third party applications:
  72. `django-supervisor <http://pypi.python.org/pypi/django-supervisor/>`_
  73. Easy integration between djangocl and supervisord.
  74. `collective.recipe.supervisor <http://pypi.python.org/pypi/collective.recipe.supervisor>`_
  75. A buildout recipe to install supervisor.
  76. `puppet-module-supervisor <https://github.com/plathrop/puppet-module-supervisor>`_
  77. Puppet module for configuring the supervisor daemon tool.
  78. `puppet-supervisord <https://github.com/ajcrowe/puppet-supervisord>`_
  79. Puppet module to manage the supervisord process control system.
  80. `ngx_supervisord <https://github.com/FRiCKLE/ngx_supervisord>`_
  81. An nginx module providing API to communicate with supervisord and
  82. manage (start/stop) backends on-demand.
  83. `Supervisord-Nagios-Plugin <https://github.com/Level-Up/Supervisord-Nagios-Plugin>`_
  84. A Nagios/Icinga plugin written in Python to monitor individual supervisord processes.
  85. `nagios-supervisord-processes <https://github.com/blablacar/nagios-supervisord-processes>`_
  86. A Nagios/Icinga plugin written in PHP to monitor individual supervisord processes.
  87. `supervisord-nagios <https://github.com/3dna/supervisord-nagios>`_
  88. A plugin for supervisorctl to allow one to perform nagios-style checks
  89. against supervisord-managed processes.
  90. `php-supervisor-event <https://github.com/mtdowling/php-supervisor-event>`_
  91. PHP classes for interacting with Supervisor event notifications.
  92. `PHP5 Supervisor wrapper <https://github.com/yzalis/Supervisor>`_
  93. PHP 5 library to manage Supervisor instances as object.
  94. `Symfony2 SupervisorBundle <https://github.com/yzalis/SupervisorBundle>`_
  95. Provide full integration of Supervisor multiple servers management into Symfony2 project.
  96. `supervisord-php-client <https://github.com/mondalaci/supervisord-php-client>`_
  97. PHP client for the supervisord XML-RPC interface.
  98. `sd-supervisord <https://github.com/robcowie/sd-supervisord>`_
  99. `Server Density <http://www.serverdensity.com>`_ plugin for
  100. supervisor.
  101. `node-supervisord <https://github.com/crcn/node-supervisord>`_
  102. Node.js client for Supervisor's XML-RPC interface.
  103. `node-supervisord-eventlistener <https://github.com/sugendran/node-supervisord-eventlistener>`_
  104. Node.js implementation of an event listener for Supervisor.
  105. `ruby-supervisor <https://github.com/schmurfy/ruby-supervisor>`_
  106. Ruby client library for Supervisor's XML-RPC interface.
  107. `Sulphite <https://github.com/jib/sulphite>`_
  108. Sends supervisord events to `Graphite <https://github.com/graphite-project/graphite-web>`_.
  109. `supervisord.tmbundle <https://github.com/countergram/supervisord.tmbundle>`_
  110. `TextMate <http://macromates.com/>`_ bundle for supervisord.conf.
  111. `capistrano-supervisord <https://github.com/yyuu/capistrano-supervisord>`_
  112. `Capistrano <https://github.com/capistrano/capistrano>`_ recipe to deploy supervisord based services.
  113. `chef-supervisor <https://github.com/opscode-cookbooks/supervisor>`_
  114. `Chef <http://www.opscode.com/chef/>`_ cookbook install and configure supervisord.
  115. `PHP Supervisor <https://github.com/indigophp/supervisor>`_
  116. PHP client for the supervisord XML-RPC interface. Configuration generator. Event listener work in progress.
  117. `Supervisord-Client <http://search.cpan.org/~skaufman/Supervisord-Client>`_
  118. Perl client for the supervisord XML-RPC interface.
  119. `Supermann <https://github.com/borntyping/supermann>`_
  120. Supermann monitors processes running under Supervisor and sends metrics
  121. to `Riemann <http://riemann.io/>`_.
  122. `gulp-supervisor <https://github.com/leny/gulp-supervisor>`_
  123. Run Supervisor as a `Gulp <http://gulpjs.com/>`_ task.
  124. `Yeebase.Supervisor <https://github.com/yeebase/Yeebase.Supervisor>`_
  125. Control and monitor Supervisor from a TYPO3 Flow application.
  126. `dokku-supervisord <https://github.com/statianzo/dokku-supervisord>`_
  127. `Dokku <https://github.com/progrium/dokku>`_ plugin that injects ``supervisord`` to run
  128. applications.
  129. `dokku-logging-supervisord <https://github.com/sehrope/dokku-logging-supervisord>`_
  130. `Dokku <https://github.com/progrium/dokku>`_ plugin that injects ``supervisord`` to run
  131. applications. It also redirects ``stdout`` and ``stderr`` from processes to log files
  132. (rather than the Docker default per-container JSON files).