(file) Return to Device_StorageStatistics.mof CVS log (file) (dir) Up to [Pegasus] / pegasus / Schemas / CIMPrelim291

File: [Pegasus] / pegasus / Schemas / CIMPrelim291 / Attic / Device_StorageStatistics.mof (download)
Revision: 1.2, Tue Jan 17 20:13:15 2006 UTC (18 years, 4 months ago) by kumpf
Branch: MAIN
CVS Tags: TASK-PEP362_RestfulService-merged_out_from_trunk, TASK-PEP348_SCMO-merged_out_from_trunk, TASK-PEP317_pullop-merged_out_from_trunk, TASK-PEP317_pullop-merged_in_to_trunk, TASK-PEP311_WSMan-root, TASK-PEP311_WSMan-branch, HPUX_TEST, HEAD
Changes since 1.1: +4 -4 lines
FILE REMOVED
BUG#: 4664
TITLE: CIMPrelim291 schema is obsolete
DESCRIPTION: Removing the obsolete schema.

// ===================================================================
// Title:  Device Storage Statistics
// $State: dead $
// $Date: 2006/01/17 20:13:15 $
// $Source: /cvs/MSB/pegasus/Schemas/CIMPrelim291/Attic/Device_StorageStatistics.mof,v $
// $Revision: 1.2 $
// ===================================================================
//#pragma inLine ("Includes/copyright.inc")
// Copyright 1998-2005 Distributed Management Task Force, Inc. (DMTF).
// All rights reserved.
// DMTF is a not-for-profit association of industry members dedicated
// to promoting enterprise and systems management and interoperability.
// DMTF specifications and documents may be reproduced for uses
// consistent with this purpose by members and non-members,
// provided that correct attribution is given.
// As DMTF specifications may be revised from time to time,
// the particular version and release date should always be noted.
// 
// Implementation of certain elements of this standard or proposed
// standard may be subject to third party patent rights, including
// provisional patent rights (herein "patent rights"). DMTF makes
// no representations to users of the standard as to the existence
// of such rights, and is not responsible to recognize, disclose, or
// identify any or all such third party patent right, owners or
// claimants, nor for any incomplete or inaccurate identification or
// disclosure of such rights, owners or claimants. DMTF shall have no
// liability to any party, in any manner or circumstance, under any
// legal theory whatsoever, for failure to recognize, disclose, or
// identify any such third party patent rights, or for such party's
// reliance on the standard or incorporation thereof in its product,
// protocols or testing procedures. DMTF shall have no liability to
// any party implementing such standard, whether such implementation
// is foreseeable or not, nor to any patent owner or claimant, and shall
// have no liability or responsibility for costs or losses incurred if
// a standard is withdrawn or modified after publication, and shall be
// indemnified and held harmless by any party implementing the
// standard from any and all claims of infringement by a patent owner
// for such implementations.
// 
// For information about patents held by third-parties which have
// notified the DMTF that, in their opinion, such patent may relate to
// or impact implementations of DMTF standards, visit
// http://www.dmtf.org/about/policies/disclosures.php.
//#pragma inLine
// ===================================================================
// Description: The Device Model extends the management concepts that
//              are related to LogicalDevices. This file defines
//              a model for storage statistics.
// 
//              The object classes below are listed in an order that
//              avoids forward references. Required objects, defined
//              by other working groups, are omitted.
// ==================================================================
// Change Log for v2.9 Preliminary
// CR1384 - Created this file
// ==================================================================

#pragma locale ("en_US")

// ==================================================================
// BlockStorageStatisticalData
// ==================================================================
   [Experimental, Version ( "2.8.1000" ), Description (
       "A subclass of StatisticalData which identifies individual "
       "statistics for an element of a block storage system. This "
       "class defines the metrics that MAY be kept for managed "
       "elements of the system.")]
class CIM_BlockStorageStatisticalData : CIM_StatisticalData {

      [Description (
          "The cumulative count of I/Os for the object."), 
       Counter]
   uint64 TotalIOs;

      [Description (
          "The cumulative count of data transferred in Kbytes "
          "(1024bytes = 1KByte)."), 
       Units ( "KiloBytes" ), Counter]
   uint64 KBytesTransfered;

      [Description (
          "The cumulative elapsed I/O time (number of Clock Tick "
          "Intervals) for all I/Os as defined in 'Total I/Os'. I/O "
          "response time is added to this counter at the completion of "
          "each measured I/O using ClockTickInterval units. This value "
          "can be divided by number of IOs to obtain an average "
          "response time."), 
       Counter]
   uint64 IOTimeCounter;

      [Description (
          "The cumulative count of all reads."), 
       Counter]
   uint64 ReadIOs;

      [Description (
          "The cumulative count of all read cache hits (Reads from "
          "Cache)."), 
       Counter]
   uint64 ReadHitIOs;

      [Description (
          "The cumulative elapsed time for all Read I/Os for all "
          "cumulative Read I/Os."), 
       Counter]
   uint64 ReadIOTimeCounter;

      [Description (
          "The cumulative elapsed time for all Read I/Os read from "
          "cache for all cumulative Read I/Os."), 
       Counter]
   uint64 ReadHitIOTimeCounter;

      [Description (
          "The cumulative count of data read in Kbytes (1024bytes = "
          "1KByte)."), 
       Units ( "KiloBytes" ), Counter]
   uint64 KBytesRead;

      [Description (
          "The cumulative count of all writes."), 
       Counter]
   uint64 WriteIOs;

      [Description (
          "The cumulative count of Write Cache Hits (Writes that went "
          "directly to Cache)."), 
       Counter]
   uint64 WriteHitIOs;

      [Description (
          "The cumulative elapsed time for all Write I/Os for all "
          "cumulative Writes."), 
       Counter]
   uint64 WriteIOTimeCounter;

      [Description (
          "The cumulative elapsed time using ClockTickInterval units "
          "for all Write I/Os written to cache for all cumulative "
          "Write I/Os."), 
       Counter]
   uint64 WriteHitIOTimeCounter;

      [Description (
          "The cumulative elapsed idle time using ClockTickInterval "
          "units (Cumulative Number of Time Units for all idle time in "
          "the array)."), 
       Counter]
   uint64 IdleTimeCounter;

      [Description (
          "The cumulative count of all disk maintenance operations "
          "(SCSI commands such as: Verify, skip-mask, XOR read, XOR "
          "write-read, etc).This is needed to understand the load on "
          "the disks that may interfere with normal read and write "
          "operations."), 
       Counter]
   uint64 MaintOp;

      [Description (
          "The cumulative elapsed disk mainenance time. Maintainance "
          "response time is added to this counter at the completion of "
          "each measured maintenance operation using ClockTickInterval "
          "units."), 
       Counter]
   uint64 MaintTimeCounter;
};

// ===================================================================
// end of file
// ===================================================================

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2