Returns a list of debugging sessions, the session ID for each session, and the state of each session.
/action=luaDebug&command=get-status[&session=SessionID]
Type: Synchronous
Parameter Name | Description | Required |
---|---|---|
Session
|
To return the status of a single session, use this parameter to specify the session ID. | No |
http://localhost:7000/action=luadebug&command=get-status
<autnresponse xmlns:autn="http://schemas.autonomy.com/aci/"> <action>LUADEBUG</action> <response>SUCCESS</response> <responsedata> <data> <command>get-status</command> <session id="be6c2082896e41d4a608d7fb919b7e61"> <status>Running</status> </session> <session id="e7eca9f82759d70dedae74b362c63eff"> <status>AtBreak</status> </session> </data> </responsedata> </autnresponse>
|