1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- XML-RPC API Documentation
- =========================
- .. automodule:: supervisor.rpcinterface
- Status and Control
- ------------------
- .. autoclass:: SupervisorNamespaceRPCInterface
- .. automethod:: getAPIVersion
- .. automethod:: getSupervisorVersion
- .. automethod:: getIdentification
-
- .. automethod:: getState
-
- .. automethod:: getPID
-
- .. automethod:: readLog
-
- .. automethod:: clearLog
-
- .. automethod:: shutdown
-
- .. automethod:: restart
-
- Process Control
- ---------------
- .. autoclass:: SupervisorNamespaceRPCInterface
- .. automethod:: getProcessInfo
-
- .. automethod:: getAllProcessInfo
-
- .. automethod:: startProcess
-
- .. automethod:: startAllProcesses
-
- .. automethod:: startProcessGroup
-
- .. automethod:: stopProcessGroup
-
- .. automethod:: sendProcessStdin
-
- .. automethod:: sendRemoteCommEvent
-
- .. automethod:: addProcessGroup
-
- .. automethod:: removeProcessGroup
- Process Logging
- ---------------
- .. autoclass:: SupervisorNamespaceRPCInterface
- .. automethod:: readProcessStdoutLog
- .. automethod:: readProcessStderrLog
- .. automethod:: tailProcessStdoutLog
- .. automethod:: tailProcessStderrLog
- .. automethod:: clearProcessLogs
- .. automethod:: clearAllProcessLogs
- .. automodule:: supervisor.xmlrpc
- System Methods
- --------------
- .. autoclass:: SystemNamespaceRPCInterface
- .. automethod:: listMethods
- .. automethod:: methodHelp
- .. automethod:: methodSignature
- .. automethod:: multicall
-
|