Skip to main content

Status

Display current status for the system.

GET https://instance.securid.com/aveksa/command.submit?cmd=status

Request

Parameters

status
format

properties - (Default) key=value. most useful when requesting a single object. If multiple objects are returned, values is a csv. ie key=value1,value2,value3 where value1 is the value for the first object, value2 is the value for the 2nd object, etc.

json - Useful format for parsing into javascript or other languages. See www.json.org for details.

Headers

Acceptapplication/json
Content-Typeapplication/json

Response

Parameters

typeExecuted command name
DB-TEMP-total-space???
dateDate of the status check
son-statusStatus of System Operations Node (SON)
maintenance-modeIndicates if the server is in maintenance mode
DB-TEMP-free-space???
database-statusThe status of database used by the system.
product-versionInformation on current product version with patch / hotfix
local-afx-statusThe status of local AFX server (if configured).
DB-TEMP-used-space???
root-logger-levelThe root logger level. Possible values :
  • OFF
  • FATAL
  • ERROR
  • WARN
  • INFO
  • DEBUG
  • TRACE
  • ALL
email-server-statusThe status of email server in the system(if configured).
overall-status???
jms-statusThe status of JMS module in the system.
default-agent-statusThe status of default agent used by the system.

Examples

Request

curl -K -X GET  \
"https://instance.securid.com/aveksa/command.submit?cmd=status&format=json" \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json"

Response

{
"data": {
"type": "status",
"DB-TEMP-total-space": "571",
"date": "2023-08-27 16:58:23",
"son-status": "HEALTHY",
"maintenance-mode": "off",
"DB-TEMP-free-space": "552",
"database-status": "HEALTHY",
"product-version": "7.5.2.184537 P07_HF02",
"local-afx-status": "HEALTHY",
"DB-TEMP-used-space": "19",
"root-logger-level": "INFO",
"email-server-status": "UNHEALTHY",
"overall-status": "HEALTHY",
"jms-status": "HEALTHY",
"default-agent-status": "UNHEALTHY"
}
}
Feedback