(file) Return to CIM_CIMOMStatisticalData.mof CVS log (file) (dir) Up to [Pegasus] / pegasus / Schemas / CIM222 / DMTF / Interop

File: [Pegasus] / pegasus / Schemas / CIM222 / DMTF / Interop / CIM_CIMOMStatisticalData.mof (download)
Revision: 1.1, Fri Aug 14 12:17:24 2009 UTC (14 years, 10 months ago) by marek
Branch: MAIN
CVS Tags: preBug9676, postBug9676, TASK_PEP317_1JUNE_2013, TASK-TASK_PEP362_RestfulService_branch-root, TASK-TASK_PEP362_RestfulService_branch-merged_out_from_trunk, TASK-TASK_PEP362_RestfulService_branch-merged_in_to_trunk, TASK-TASK_PEP362_RestfulService_branch-merged_in_from_branch, TASK-TASK_PEP362_RestfulService_branch-branch, TASK-PEP362_RestfulService-root, TASK-PEP362_RestfulService-merged_out_to_branch, TASK-PEP362_RestfulService-merged_out_from_trunk, TASK-PEP362_RestfulService-merged_in_to_trunk, TASK-PEP362_RestfulService-merged_in_from_branch, TASK-PEP362_RestfulService-branch, TASK-PEP348_SCMO-merged_out_from_trunk, TASK-PEP317_pullop-root, TASK-PEP317_pullop-merged_out_to_branch, TASK-PEP317_pullop-merged_out_from_trunk, TASK-PEP317_pullop-merged_in_to_trunk, TASK-PEP317_pullop-merged_in_from_branch, TASK-PEP317_pullop-branch, RELEASE_2_14_1, RELEASE_2_14_0-RC2, RELEASE_2_14_0-RC1, RELEASE_2_14_0, RELEASE_2_14-root, RELEASE_2_14-branch, RELEASE_2_13_0-RC2, RELEASE_2_13_0-RC1, RELEASE_2_13_0-FC, RELEASE_2_13_0, RELEASE_2_13-root, RELEASE_2_13-branch, RELEASE_2_12_1-RC1, RELEASE_2_12_1, RELEASE_2_12_0-RC1, RELEASE_2_12_0-FC, RELEASE_2_12_0, RELEASE_2_12-root, RELEASE_2_12-branch, RELEASE_2_11_2-RC1, RELEASE_2_11_2, RELEASE_2_11_1-RC1, RELEASE_2_11_1, RELEASE_2_11_0-RC1, RELEASE_2_11_0-FC, RELEASE_2_11_0, RELEASE_2_11-root, RELEASE_2_11-branch, RELEASE_2_10_1-RC1, RELEASE_2_10_1, RELEASE_2_10_0-RC2, RELEASE_2_10_0-RC1, RELEASE_2_10_0, RELEASE_2_10-root, RELEASE_2_10-branch, PREAUG25UPDATE, POSTAUG25UPDATE, HEAD, CIMRS_WORK_20130824, BeforeUpdateToHeadOct82011
Branch point for: TASK-PEP348_SCMO-branch, RELEASE_2_9-branch
BUG#:8590
TITLE: Add Schema 222 to the cvs

DESCRIPTION:

// Copyright (c) 2008 DMTF.  All rights reserved.
   [Version ( "2.19.0" ), 
    UMLPackagePath ( "CIM::Interop" ), 
    Description ( 
       "CIM_CIMOMStatisticalData provides statistical data about the "
       "performance of the CIM Object Manager. Each object of this "
       "class provides elapsed time and size data for a particular "
       "type of CIM operation. All operations of that type, regardless "
       "of the CIM operations protocol being used, are accumulated in "
       "one object and covers the CIM operations issued by all clients "
       "of the Object Manager scoping the instance. Batched CIM "
       "operations are accumulated into a separate operation type for "
       "\"Batched\". The counters in this class SHOULD be implemented "
       "such that they always increment and naturally wrap around when "
       "their numerical limit is exceeded. A client that calculates "
       "the difference of two snapshots of a counter at the beginning "
       "and end of a measurement interval should get the correct "
       "result, even if there was a wrap-around in between obtaining "
       "the two snapshots. (Two or more wrap arounds will result in "
       "wrong data being calculated.) The gathering of the data can be "
       "controlled through the property, "
       "CIM_ObjectManager.GatherStatisticalData. The time interval to "
       "which the statistical data applies, ends at the current time "
       "and therefore includes the most current CIM operations. The "
       "interval starts when the statistical data gathering was last "
       "turned on for the Object Manager." )]
class CIM_CIMOMStatisticalData : CIM_StatisticalData {

      [Override ( "InstanceID" ), 
       Description ( 
          "The InstanceID property opaquely identifies a unique "
          "instance of CIMOMStatisticalData and MUST be unique "
          "within a namespace. In order to ensure uniqueness, the "
          "value of InstanceID MUST be constructed in the following "
          "manner: \n"
          "CIM<ID> \n"
          "The <ID> MUST include a CIM Object Manager specified "
          "unique identifier." )]
   string InstanceID;

      [Required, Description ( 
          "The OperationType property identifies the type of CIM "
          "operation for which data is reported in this instance. "
          "Batched CIM operations (consisting of multiple simple "
          "CIM operations) are reported against the \"Batched\" "
          "type only." ), 
       ValueMap { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", 
          "10", "11", "12", "13", "14", "15", "16", "17", "18", 
          "19", "20", "21", "22", "23", "24", "25", "26" }, 
       Values { "Unknown", "Other", "Batched", "GetClass", 
          "GetInstance", "DeleteClass", "DeleteInstance", 
          "CreateClass", "CreateInstance", "ModifyClass", 
          // 10              
          "ModifyInstance", 
          "EnumerateClasses", "EnumerateClassNames", 
          "EnumerateInstances", "EnumerateInstanceNames", 
          "ExecQuery", "Associators", "AssociatorNames", 
          "References", "ReferenceNames", 
          // 20              
          "GetProperty", 
          "SetProperty", "GetQualifier", "SetQualifier", 
          "DeleteQualifier", "EnumerateQualifiers", 
          "IndicationDelivery" }, 
       ModelCorrespondence { 
          "CIM_CIMOMStatisticalData.OtherOperationType" }]
   uint16 OperationType;

      [Description ( 
          "The OtherOperationType property identifies the operation "
          "if the OperationType property has a value of 1 "
          "(\"Other\"). For all other values of OperationType, the "
          "property is NULL." ), 
       MaxLen ( 64 ), 
       ModelCorrespondence { "CIM_CIMOMStatisticalData.OperationType" }]
   string OtherOperationType;

      [Required, Description ( 
          "The NumberOfOperations property contains the number of "
          "CIM operations of the specified type. This property can "
          "be used to calculate average values per CIM operation." ), 
       Counter]
   uint64 NumberOfOperations;

      [Required, Description ( 
          "The CimomElapsedTime property contains the elapsed time "
          "spent in the CIM Object Manager for this operation type, "
          "not counting the elapsed time spent in providers and the "
          "underlying instrumentation. The measurement points for "
          "this property SHOULD be at the transport layer interface "
          "on the network side, and at the provider interface on "
          "the instrumentation side of the CIM Object Manager." )]
   datetime CimomElapsedTime;

      [Required, Description ( 
          "The ProviderElapsedTime property contains the elapsed "
          "time spent in all providers involved with this operation "
          "type, including the underlying instrumentation. The "
          "measurement point for this property SHOULD be from the "
          "provider interface of the CIM Object Manager." )]
   datetime ProviderElapsedTime;

      [Description ( 
          "The RequestSize property contains the size of the "
          "operation requests sent to the CIM Object Manager. Any "
          "overhead of protocols above the transport protocol "
          "SHOULD be included in the count. For example, for the "
          "HTTP protocol, the size would include the size of the "
          "HTTP payload and the size of the HTTP headers." ), 
       Units ( "Bytes" ), 
       Counter, PUnit ( "byte" )]
   uint64 RequestSize;

      [Description ( 
          "The ResponseSize property contains the size of the "
          "operation responses sent back from the CIM Object "
          "Manager. Any overhead of protocols above the transport "
          "protocol SHOULD be included in the count. For example, "
          "for the HTTP protocol, the size would include the size "
          "of the HTTP payload and the size of the HTTP headers." ), 
       Units ( "Bytes" ), 
       Counter, PUnit ( "byte" )]
   uint64 ResponseSize;


};

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2