Skip to main content

We've Moved!

Product Documentation has moved to docs.hitachivantara.com
Hitachi Vantara Knowledge

Get boot details

Get the details about the last boot for all nodes in a cluster, and their current uptimes.

HTTP request syntax (URI)
GET <base_URI>/v8/storage/nodes/boot-details
Return codes
Code Data Description
200 bootDetails Boot details successfully retrieved.
500 Error message Error associated with the storage system.

Any HTTP status code other than 200 indicates that the API did not complete successfully.

Request example
curl -vk -H "X-Api-Key: zrxvSDAv9x.RIP4gkmKarG3beF.or.4Tc2im7oeqYN88C9XPGHxbXC" https://172.17.11.11:8444/v8/storage/nodes/boot-details
Response example
HTTP/1.1 200 OK
{
  "bootDetails": [
    {
      "bootReason": "LPAR boot reason: BALI reboot; Software boot reason: Normal",
      "bootTime": "2022-07-25 12:41:53+01:00",
      "nodeId": 1,
      "uptime": "38 minutes 30 seconds",
      "uptimeInSeconds": 2310
    },
    {
      "bootReason": "LPAR boot reason: BALI reboot; Software boot reason: Normal",
      "bootTime": "2022-07-25 12:40:58+01:00",
      "nodeId": 2,
      "uptime": "39 minutes 25 seconds",
      "uptimeInSeconds": 2365
    }
  ]
}

 

  • Was this article helpful?