Unable to fetch flash drive metrics using VSN SDK, am getting null values. Kindly let me know which service call I have to use to get the flash dish health summary and what we have to pass in managed object.
VsanClusterHealthSummary summary = healthPort.vsanQueryVcClusterHealthSummary(
clusterHealthSystem, // managed object reference
clusterObj, // reference to cluster
null, // VmCreateTimeout
null, // ObjectUUIDs
false, // Include Object UUIDs
fields, // fields
true, // fetchfromcache
"defaultView", // perspective
null);
List<VsanPhysicalDiskHealthSummary> diskHealth = summary.getPhysicalDisksHealth();
System.out.println("Capacity :: "+disk.getCapacity()); // Always null for flash drives, for HD Drives values are coming properly
Thanks in advance