Hello
I’m was really aware of the “solidfire” solution, a quick search send me to the restapi for “Netapp Element” which seems to be the OS/system for solidfire, it seems quite different from the classic “SAN” OS from netapp : OnTap
so neither the restapi from ontap or the snmp will work. I see this kind of api endpoint in the ontap restapi
https://github.com/centreon/centreon-plugins/blob/c43b8ae476fefe5c99e06ceb4d3db20ba360bfed/src/storage/netapp/ontap/restapi/mode/hardware.pm#L71
for example, /api/storage/disks , while on the element api you have “drives”
on ontap you have shelves and lun, on element you don’t have this concept
Even the Endpoints are completely different Request endpoints (netapp.com) vs Your first API call (netapp.com)
basically it’s a completely different product than what the plugin was made for (and as this product is being discontinued by netapp, you probably won’t have a community member that will develop something for it, but who knows, personnaly i didn’t even know the product existed)
given that the auth method for the api is “basic auth”, you could try to git clone the plugin, duplicate the src/storage/netapp/ontap/restapi folder to something like src/storage/netapp/element/restapi then edit all the file to point to this new folder then play around with the endpoint and the plugin modes (if you are brave enough to tackle perl, and are understanding how api and json are working, some information here on how it should work Plugins development guidelines | Centreon Documentation nice example with some explanation)
but you need to know how to code a bit (a lot)
good luck