Help us improve your experience.

Let us know what you think.

Do you have time for a two-minute survey?

header-navigation
keyboard_arrow_up
close
keyboard_arrow_left
list Table of Contents
file_download PDF
{ "lLangCode": "en", "lName": "English", "lCountryCode": "us", "transcode": "en_US" }
English
keyboard_arrow_right

Health Check Apstra VMs (API)

Release: Juniper Apstra 4.1
{}
Change Release
date_range 30-May-23
Note:

You can also check the health of Apstra VMs from the Apstra GUI.

From the left navigation menu of the Apstra GUI, navigate to Platform > Developers to access REST API documentation. From there you can access cluster APIs.

content_copy zoom_out_map
/api/cluster/nodes/{node_id}  .. Get AOS slave node status.
/api/cluster/nodes/{node_id}/errors  .. Retrieve error for an AOS cluster node.

Here is an example of REST API with curl command:

content_copy zoom_out_map
curl -X GET "https://172.20.159.3/api/cluster/nodes/AosController/errors" -H "accept: application/json"

If no error occurs, the output is as follows:

content_copy zoom_out_map
{
  "state": "active",
  "errors": []
}

If the agent process has rebooted, the error is shown as follows:

content_copy zoom_out_map
{
  "state": "active",
  "errors": [
    "agentReboot"
  ]
}
footer-navigation