
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-25-2022 06:54 AM
Hi,
I am working to get data about a VMAX storage array into the CMDB. We don't have a CIM or SMI-S server available, so I am using the PowerMax REST API to gather the information.
I am able to get the data from the array, but I am struggling to map the data into the CMDB.
For example in volume JSON below from VMAX what values should map to the name field in the cmdb_ci_storage_volume table. Would it be the wwn?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2022 08:12 AM
Here is what I ended up mapping the values too. Maybe it will help someone.
The referenced storage server and storage pool are not in the JSON listed in the original post.
cmdb_ci_storage_volume = {
"name": "naa.60000970000197500352533030303031",
"volume_id": "60000970000197500352533030303031",
"storage_type": "TDEV",
"size": "6.0",
"lun": "60000970000197500352533030303031",
"provided_by": {
"display_value": "<arrayId>:<storageResourcePoolId>",
"class": "cmdb_ci_storage_pool"
},
"computer": {
"display_value": "VMAX_<arrayId>",
"class": "cmdb_ci_storage_server"
}
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2022 08:12 AM
Here is what I ended up mapping the values too. Maybe it will help someone.
The referenced storage server and storage pool are not in the JSON listed in the original post.
cmdb_ci_storage_volume = {
"name": "naa.60000970000197500352533030303031",
"volume_id": "60000970000197500352533030303031",
"storage_type": "TDEV",
"size": "6.0",
"lun": "60000970000197500352533030303031",
"provided_by": {
"display_value": "<arrayId>:<storageResourcePoolId>",
"class": "cmdb_ci_storage_pool"
},
"computer": {
"display_value": "VMAX_<arrayId>",
"class": "cmdb_ci_storage_server"
}
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-28-2023 01:18 AM
Hi @codycotulla that's great , Can you post the stepwise approach to configure this discovery if its possible.
Thanks!!