|
|
clearAgentStatData ()
|
/* Empties the cached agent request stats */
|
|
|
getAgentActiveRequestData (character, table-handle)
|
/* Returns the active request for a given sessionID
@param character in session id
@param longchar out request info for the given session id
*/
|
|
|
LOGICAL getAgentRequestData (table-handle)
|
/*
This method used to give all the requests that are running on the agent.
But because of the Issue:PSC00364863, we limited the API to return only
last 1000 requests information.
*/
|
|
|
INT64 getAgentRequestQty ()
|
/* Returns the number of agent requests being monitored
return int64 The number of agent requests. Returns -1 if not enabled */
|
|
|
LOGICAL getAgentSessionStack (character, longchar)
|
/* Returns the agent call stack for a given session
@param character The session id for which to return a call stack
@param longchar out JSON representation of the stack
@return logical */
|
|
|
LOGICAL getAgentSessionStack (integer, longchar)
|
/* Returns the agent call stack for a given session
@param integer The agent session id for which to return a call stack
@param longchar out JSON representation of the stack
@return logical */
|
|
|
LOGICAL getAgentStacks (longchar)
|
/* Returns the agent call stack for all sessions
@param longchar out JSON representation of the stack
@return logical */
|
|
|
LOGICAL GetDynamicABLSessionLimitInfo (longchar)
|
/* Returns the agent dynamic ABL session info
@param longchar out JSON representation of the stack
@return logical */
|
|
|
LOGICAL setArchiveAgentStats (logical)
|
/* Toggles the agent stats archive on and off.
If we turn gathering stats OFF (a FALSE parameter) then we also
empty the cached stats
@param logical TRUE to enabled archiving; FALSE to disable
@return logical TRUE when stats are archived, false otherwise */
|