(file) Return to CIM_DatabaseServiceStatistics.mof CVS log (file) (dir) Up to [Pegasus] / pegasus / Schemas / CIM231 / DMTF / Database

  1 marek 1.1 // Copyright (c) 2005 DMTF.  All rights reserved.
  2              [Version ( "2.7.0" ), 
  3               UMLPackagePath ( "CIM::Database::Statistics" ), 
  4               Description ( 
  5                  "The CIM_DatabaseServiceStatistics class contains the current "
  6                  "statistics for a database service. These statistics are "
  7                  "counters that are relative to the start of the service or from "
  8                  "the time when a reset was issued." )]
  9           class CIM_DatabaseServiceStatistics : CIM_StatisticalData {
 10           
 11                 [Description ( 
 12                     "The date and time when the most recent inbound activity "
 13                     "was observed for the database service. A value of all "
 14                     "zeros indicates that no inbound activity has taken place "
 15                     "since the service was started." ), 
 16                  MappingStrings { 
 17                     "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoLastInboundActivity" }]
 18              datetime LastActivity;
 19           
 20                 [Description ( 
 21                     "The number of active inbound connections that are "
 22 marek 1.1           "currently using the service." ), 
 23                  Counter, MappingStrings { 
 24                     "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoapplInboundAssociation" }]
 25              uint64 ActiveConnections;
 26           
 27                 [Description ( 
 28                     "The total number of inbound connections to the service "
 29                     "since it was started." ), 
 30                  Counter, MappingStrings { 
 31                     "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoapplAccumulatedInboundAssociations" }]
 32              uint64 CumulativeConnections;
 33           
 34                 [Description ( 
 35                     "The total number of inbound connections that were "
 36                     "rejected by the service since it was started." ), 
 37                  Counter, MappingStrings { 
 38                     "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoapplRejectedInboundAssociations" }]
 39              uint64 RejectedConnections;
 40           
 41                 [Description ( 
 42                     "The total number of transactions that have been "
 43 marek 1.1           "completed by a commit or abort. Some database "
 44                     "operations, such as read-only queries, might not create "
 45                     "a transaction." ), 
 46                  Counter, MappingStrings { 
 47                     "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoFinishedTransactions" }]
 48              uint64 CompletedTransactions;
 49           
 50                 [Description ( 
 51                     "The total number of database file reads that were issued "
 52                     "by the service since it was started." ), 
 53                  Counter, MappingStrings { 
 54                     "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoDiskReads" }]
 55              uint64 DiskReads;
 56           
 57                 [Description ( 
 58                     "The total number of database file writes that were "
 59                     "issued by the service since it was started." ), 
 60                  Counter, MappingStrings { 
 61                     "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoDiskWrites" }]
 62              uint64 DiskWrites;
 63           
 64 marek 1.1       [Description ( 
 65                     "The total number of logical database file reads that "
 66                     "were issued by the service since it was started." ), 
 67                  Counter, MappingStrings { 
 68                     "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoLogicalReads" }]
 69              uint64 LogicalReads;
 70           
 71                 [Description ( 
 72                     "The total number of logical database file writes that "
 73                     "were issued by the service since it was started. A "
 74                     "logical write is a count of the number of times that "
 75                     "parts of database files have been marked dirty to "
 76                     "indicate that they need to be written to disk." ), 
 77                  Counter, MappingStrings { 
 78                     "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoLogicalWrites" }]
 79              uint64 LogicalWrites;
 80           
 81                 [Description ( 
 82                     "The total number of database pages that have been read "
 83                     "by the service since it was started." ), 
 84                  Counter, MappingStrings { 
 85 marek 1.1           "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoPageReads" }]
 86              uint64 PageReads;
 87           
 88                 [Description ( 
 89                     "The total number of database pages that have been "
 90                     "written by the service since it was started." ), 
 91                  Counter, MappingStrings { 
 92                     "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoPageWrites" }]
 93              uint64 PageWrites;
 94           
 95                 [Description ( 
 96                     "The total number of times that the database requested "
 97                     "disk space and it was not available since the service "
 98                     "was started." ), 
 99                  Counter, MappingStrings { 
100                     "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoDiskOutOfSpaces" }]
101              uint64 DiskSpaceUnavailable;
102           
103                 [Description ( 
104                     "The total number of requests that have been received by "
105                     "the service since it was started." ), 
106 marek 1.1        Counter, MappingStrings { 
107                     "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoHandledRequests" }]
108              uint64 RequestsHandled;
109           
110                 [Description ( 
111                     "The total number of receive operations made by the "
112                     "service during request processing since it was started." ), 
113                  Counter, MappingStrings { 
114                     "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoRequestRecvs" }]
115              uint64 RequestsReceived;
116           
117                 [Description ( 
118                     "The total number of send operations made by the service "
119                     "during request processing since it was started." ), 
120                  Counter, MappingStrings { 
121                     "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoRequestsSent" }]
122              uint64 RequestsSent;
123           
124                 [Description ( 
125                     "The maximum number of active inbound connections that "
126                     "have been concurrently using the service since it was "
127 marek 1.1           "started." ), 
128                  Counter, MappingStrings { 
129                     "MIB.IETF|RDBMS-MIB.rdbmsSrvInfoHighwaterInboundAssociations" }]
130              uint64 HighwaterConnections;
131           
132           
133           };

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2