import xmlrpclib
server = xmlrpclib.Server('http://localhost:9001/RPC2')
status_response = server.supervisor.getAllProcessInfo()
print status_response
References :
XML-RPC API Documentation — Supervisor 3.1.3 documentation
import xmlrpclib
server = xmlrpclib.Server('http://localhost:9001/RPC2')
status_response = server.supervisor.getAllProcessInfo()
print status_response
import gearman
gm_admin_client = gearman.GearmanAdminClient(['localhost:4730'])
status_response = gm_admin_client.get_status()
print status_response
$ php composer.phar install