I want to create a widget that shows the status of the Disks in SRM.
I have one Netapp storage and have 90 disks.
I want to create a widget that shows the status of the disks.
Can you use the built in one? Otherwise you can query SWQL
SELECT Description, PhysicalDiskID, StorageArrayID, ID, Name, Vendor, Model, Type, SerialNumber, Capacity, OperStatus, OperStatusDescription, Status, LastSync, Spare, StatusDescription, Disk.StorageArray.NameFROM Orion.SRM.PhysicalDisks diskWhere Disk.StorageArray.Name like 'YourArray'
I think I saw for a minute you wanted a pie chart, and I bet you figured it out, but if you want to summarize for a modern dashboard
SELECT Count(Disk.PhysicalDiskID) as [Disks], Disk.OperStatusDescription as [Disk Status]FROM Orion.SRM.PhysicalDisks diskWhere Disk.StorageArray.Name like 'YourArray'Group By Disk.OperStatusDescription
Thank You so much.
Thank you so much