// mpiowmi.h
typedef struct _MPIO_DISK_HEALTH_CLASS {
WCHAR Name[63 + 1];
ULONGLONG NumberReads;
ULONGLONG NumberWrites;
ULONGLONG NumberBytesRead;
ULONGLONG NumberBytesWritten;
ULONGLONG NumberRetries;
ULONGLONG NumberIoErrors;
ULONGLONG CreateTime;
ULONGLONG PathFailures;
ULONGLONG FailTime;
BOOLEAN DeviceOffline;
UCHAR NumberReadsWrap;
UCHAR NumberWritesWrap;
UCHAR NumberBytesReadWrap;
UCHAR NumberBytesWrittenWrap;
UCHAR Pad[3];
} MPIO_DISK_HEALTH_CLASS, *PMPIO_DISK_HEALTH_CLASS;
View the official Windows Driver Kit DDI referenceNo description available.
The MPIO_DISK_HEALTH_CLASS structure contains the health information for a multi-path disk.
NameThe name of this multi-path disk.
NumberReadsAn unsigned 64-bitfield that specifies the number of read requests that are serviced by this multi-path disk.
NumberWritesAn unsigned 64-bitfield that specifies the number of write requests that are serviced by this multi-path disk.
NumberBytesReadAn unsigned 64-bitfield that specifies the total number of bytes that are read from this multi-path disk.
NumberBytesWrittenAn unsigned 64-bitfield that specifies the total number of bytes that are written to this multi-path disk.
NumberRetriesAn unsigned 64-bitfield that specifies the total number of retries for this multi-path disk.
NumberIoErrorsAn unsigned 64-bitfield that specifies the total number of I/O errors that are encountered by this multi-path disk.
CreateTimeA 64-bit integer that specifies the system time when the health packet was created for this multi-path disk.
PathFailuresA 64-bit integer that specifies the total number of path failures for this multi-path disk.
FailTimeA 64-bit integer that specifies the system time when this multi-path disk went offline or failed.
DeviceOfflineA Boolean field that indicates whether the multi-path disk is offline or has failed.
NumberReadsWrapAn unsigned character field that specifies the total number of times that the NumberReads parameter has rolled around to zero.
NumberWritesWrapAn unsigned character field that specifies the total number of times the NumberWrites parameter has rolled around to zero.
NumberBytesReadWrapAn unsigned character field that specifies the total number of times that the NumberBytesRead parameter has rolled around to zero.
NumberBytesWrittenWrapAn unsigned character field that specifies the total number of times that the NumberBytesWritten parameter has rolled around to zero.
PadShould be zero.