plugins.rst 7.8 KB

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