HP 3PAR CIM API Programming Reference (OS 3.1.2 MU2) (QL226-97015, June 2013)

};
// ==================================================================
// Volume Statistical Data
// ==================================================================
[Description (
"Statistical data for the Volume")]
class TPD_VolumeStatisticalData : CIM_BlockStorageStatisticalData
{
[Description (
"The service time since system start time, using ClockTickInterval "
"units, for the Read I/Os." ),
Counter]
uint64 ReadServiceTimeCounter;
[Description (
"The service time since system start time, using ClockTickInterval "
"units, for the Write I/Os." ),
Counter]
uint64 WriteServiceTimeCounter;
[Description (
"The service time since system start time, using ClockTickInterval "
"units, for the total I/Os." ),
Counter]
uint64 TotalServiceTimeCounter;
[Description (
"The queue length")]
uint32 QueueLength;
[Description (
"Percent of current busy use."),
Units( "Percent" )]
uint32 PercentBusy;
[Description (
"The cumulative count of all Read Cache misses.")]
uint64 ReadMissIOs;
[Description (
"The cumulative count of all Write Cache misses.")]
uint64 WriteMissIOs;
};
// ==================================================================
// Storage Volume Element Statistical Data
// ==================================================================
[Association, Description (
"An association that relates a "
"ManagedElement to its StatisticalData. Note that the "
"cardinality of the ManagedElement reference is Min(1), Max(1). "
"This cardinality mandates the instantiation of the "
"ElementStatisticalData association for the referenced instance "
"of CIM_StatisticalData. ElementStatisticalData describes the "
"existence requirements and context for the "
"CIM_StatisticalData, relative to a specific ManagedElement.")]
class TPD_VolumeElementStatisticalData : CIM_ElementStatisticalData
{
[Key, Min ( 1 ), Max ( 1 ), Description (
"The ManagedElement for which statistical or metric data is "
"defined.")]
TPD_StorageVolume REF ManagedElement;
[Key, Description (
"The statistic information/object.")]
3PAR_TPDStats.mof 303