Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
An MPIO driver uses the MPIO_EventEntry WMI class to report any MPIO-related events. This class is currently not implemented.
class MPIO_EventEntry : WMIEvent
{
[key, read]
string InstanceName;
[read]
boolean Active;
//
// Current system time at time of logging.
//
[WmiDataId(1),
read,
Description("Time Stamp") : amended,
WmiTimeStamp
] uint64 TimeStamp;
//
// Indicates severity of event being logged.
//
[WmiDataId(2),
read,
Values{"Fatal Error",
"Error",
"Warning",
"Information"} : amended,
DefineValues{"MPIO_FATAL_ERROR",
"MPIO_ERROR",
"MPIO_WARNING",
"MPIO_INFORMATION"},
ValueMap{"1", "2", "3", "4"}
] uint32 Severity;
//
// Multi-path disk's name that this event is being logged for.
//
[WmiDataId(3),
read,
MaxLen(63),
Description("Component") : amended
] string Component;
//
// Description of event.
//
[WmiDataId(4),
read,
MaxLen(63),
Description("Event Description") : amended
] string EventDescription;
};
There are no methods associated with this WMI class.