#Health Monitor String

1 messages · Page 1 of 1 (latest)

quasi quarry
#

Hi All, Is there a string curl or API that could return if the active iq service/server is up? Using windows install

nova wedge
#

You can use the following.
GET "/api/management-server/system"

Example output for a Vapp.

Response body
Download

{
"uuid": "4072b704-ac18-4b34-944a-34fc4f9f08ac",
"version": "9.16RC1",
"vendor": "NetApp",
"services": [
{
"name": "ocie",
"status": "running",
"description": "Application service"
},
{
"name": "ocie_au",
"status": "running",
"description": "Acquisition service"
}
],
"deployment": "vApp",
"product": "Active IQ Unified Manager",
"_links": {
"self": {
"href": "/api/management-server/system"
}
}
}

Example output for a Windows box

{
"uuid": "051f2b4b-84f3-4439-a849-a1e136e254cf",
"version": "9.13",
"vendor": "NetApp",
"services": [
{
"name": "ocie",
"status": "running",
"description": "Application service"
},
{
"name": "ocie_au",
"status": "running",
"description": "Acquisition service"
}
],
"deployment": "Windows",
"product": "Active IQ Unified Manager",
"_links": {
"self": {
"href": "/api/management-server/system"
}
}
}

#

For more information on APIs you can look at the Swagger documentation.
https://<um hostname or ip>/docs/api