// mpiodisk.h
typedef struct _MPIO_DEVINSTANCE_HEALTH_CLASS {
ULONGLONG PathId;
ULONGLONG NumberReads;
ULONGLONG NumberWrites;
ULONGLONG NumberBytesRead;
ULONGLONG NumberBytesWritten;
ULONGLONG NumberRetries;
ULONGLONG NumberIoErrors;
ULONGLONG CreateTime;
ULONGLONG FailTime;
BOOLEAN DeviceOffline;
UCHAR NumberReadsWrap;
UCHAR NumberWritesWrap;
UCHAR NumberBytesReadWrap;
UCHAR NumberBytesWrittenWrap;
UCHAR Pad[3];
} MPIO_DEVINSTANCE_HEALTH_CLASS, *PMPIO_DEVINSTANCE_HEALTH_CLASS;
View the official Windows Driver Kit DDI referenceNo description available.
The MPIO_DEVINSTANCE_HEALTH_CLASS structure holds the health information for an instance of a device exposed through the specified path identifiers.
PathIdAn unsigned 64-bitfield that returns the path identifier that is associated with this instance of a multi-path disk.
NumberReadsAn unsigned 64-bitfield that specifies the number of read requests that are serviced by the specified path identifier.
NumberWritesAn unsigned 64-bitfield that specifies the number of write requests that are serviced by the specified path identifier
NumberBytesReadAn unsigned 64-bitfield that specifies the total number of bytes that are read through the specified path identifier
NumberBytesWrittenAn unsigned 64-bitfield that specifies the total number of bytes that are written through the specified path identifier.
NumberRetriesAn unsigned 64-bitfield that specifies the total number of retries through the specified path identifier.
NumberIoErrorsAn unsigned 64-bitfield that specifies the total number of I/O errors that are encountered through the specified path identifier.
CreateTimeA 64-bit integer that specifies the system time when this instance was created and exposed.
FailTimeA 64-bit integer that specifies the system time when the path associated with this path ID was removed.
DeviceOfflineA Boolean field that indicates whether the path associated with this path ID has been removed.
NumberReadsWrapAn unsigned character field that specifies the total number of times 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 the NumberBytesRead parameter has rolled around to zero.
NumberBytesWrittenWrapAn unsigned character field that specifies the total number of times the NumberBytesWritten parameter has rolled around to zero.
PadShould be zero.