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

  1 kumpf 1.2 // ===================================================================
  2           // Title:       Database MOF Specification 2.7
  3           // Filename:    CIM_Database27.mof
  4           // Version:     2.7.0
  5           // Status:      Final
  6           // Date:        03/31/2003
  7           // ===================================================================
  8           // Copyright 2002-2003 Distributed Management Task Force, Inc. (DMTF).
  9           // All rights reserved.  
 10           // DMTF is a not-for-profit association of industry members dedicated 
 11           // to promoting enterprise and systems management and interoperability. 
 12           // DMTF specifications and documents may be reproduced for uses
 13           // consistent with this purpose by members and non-members, 
 14           // provided that correct attribution is given. 
 15           // As DMTF specifications may be revised from time to time, 
 16           // the particular version and release date should always be noted.
 17           //
 18           // Implementation of certain elements of this standard or proposed 
 19           // standard may be subject to third party patent rights, including 
 20           // provisional patent rights (herein "patent rights"). DMTF makes 
 21           // no representations to users of the standard as to the existence 
 22 kumpf 1.2 // of such rights, and is not responsible to recognize, disclose, or
 23           // identify any or all such third party patent right, owners or 
 24           // claimants, nor for any incomplete or inaccurate identification or 
 25           // disclosure of such rights, owners or claimants. DMTF shall have no 
 26           // liability to any party, in any manner or circumstance, under any 
 27           // legal theory whatsoever, for failure to recognize, disclose, or 
 28           // identify any such third party patent rights, or for such party's
 29           // reliance on the standard or incorporation thereof in its product, 
 30           // protocols or testing procedures. DMTF shall have no liability to 
 31           // any party implementing such standard, whether such implementation 
 32           // is foreseeable or not, nor to any patent owner or claimant, and shall 
 33           // have no liability or responsibility for costs or losses incurred if 
 34           // a standard is withdrawn or modified after publication, and shall be
 35           // indemnified and held harmless by any party implementing the 
 36           // standard from any and all claims of infringement by a patent owner 
 37           // for such implementations.
 38           //
 39           // For information about patents held by third-parties which have 
 40           // notified the DMTF that, in their opinion, such patent may relate to 
 41           // or impact implementations of DMTF standards, visit 
 42           // http://www.dmtf.org/about/policies/disclosures.php.
 43 kumpf 1.2 // ===================================================================
 44           // Description: 
 45           //       The database model provides a set of classes and
 46           //       associations for managing database systems.  
 47           //       This MOF describes a three level model for a database
 48           //       environment.
 49           //          1) The database system software
 50           //          2) The common database entity
 51           //          3) The database services which perform tasks for the
 52           //             database, such as coordinating user access
 53           //
 54           //       The classes and associations provided in this model are
 55           //       intended to be common across all database organizations 
 56           //       and vendor implementations.  The database model
 57           //       represents the entities, associations, and properties that
 58           //       at an abstract level are appropriate for all database
 59           //       organizations and vendor implementations.  For readability 
 60           //       purposes, the term database when used in this MOF refers to 
 61           //       the common database entity.
 62           //
 63           //       The database working group has focused its efforts in 
 64 kumpf 1.2 //       this initial V2.7 release of the database model on 
 65           //       providing content that is consistent with the SNMP RDBMS
 66           //       MIB (RFC 1697).  Future versions of the MOF will extent
 67           //       the initial set of properties to provide a more 
 68           //       comprehensive model for database management.
 69           //
 70           //       The object classes below are listed in an order that
 71           //       avoids forward references. Required objects that have been 
 72           //       defined by other working groups are omitted.
 73           // ==================================================================
 74           // Change Log for V2.7.0 Final
 75           // CR776 - Initial submission of the Database Model 
 76           // CR847 - InstanceID is the Key of CommonDatabase
 77           // CR984 - Request to move the Database Model to final
 78           // CR994 - Fix description of InstanceID
 79           // ==================================================================
 80           
 81           #pragma Locale ("en-US")
 82           
 83           
 84           // ==================================================================
 85 kumpf 1.2 // Compile prerequisite:  Core, User-Security, Application and
 86           //                        System MOFs
 87           // User-Security MOF required - User27_Org.mof
 88           // Application MOF required - Application27_DeploymentModel.mof
 89           // System MOF required - System27_SystemResources.mof
 90           // ==================================================================
 91           
 92           
 93           // ==================================================================
 94           // DatabaseSystem Class
 95           // ==================================================================
 96           
 97              [Version ("2.7.0"), 
 98                 Description 
 99                    ("The CIM_DatabaseSystem class is used to represent the "
100                     "application software portion of a database environment."
101                     "\n"
102                     "A database environment is composed of a database system "
103                     "(the application software represented by this class), one "
104                     "or more database services, and one or more databases.  "
105                     "See the descriptions of CIM_DatabaseService and "
106 kumpf 1.2           "CIM_CommonDatabase to get more detailed information about "
107                     "database services and databases."
108                     "\n"
109                     "Many of the management capabilities needed to represent "
110                     "the software aspects of a database system have already "
111                     "been modeled in the CIM_ApplicationSystem class from "
112                     "which CIM_DatabaseSystem extends.  This class provides a "
113                     "logical entity to define the relationships that are "
114                     "specific to the database management domain.") ]
115           class CIM_DatabaseSystem : CIM_ApplicationSystem {
116           };
117           
118           
119           // ==================================================================
120           // CommonDatabase Class
121           // ==================================================================
122           
123              [Version ("2.7.0"), 
124                 Description 
125                    ("A database is a collection of interrelated data, treated "
126                     "as a unit, which is organized into one or more schemas.  "
127 kumpf 1.2           "The CIM_CommonDatabase class defines the properties that "
128                     "are common across database model and vendor "
129                     "implementations for the database entity that is represented "
130                     "by the unit of interrelated data."
131                     "\n"
132                     "Databases are manipulated through one or more "
133                     "database services.  More detailed information on "
134                     "database services is provided in the description of the "
135                     "CIM_DatabaseService class."
136                     "\n") ] 
137           class CIM_CommonDatabase : CIM_EnabledLogicalElement {
138           
139               [Key, Description (
140                   "Within the scope of the instantiating Namespace, InstanceID " 
141                   "opaquely and uniquely identifies an instance of this class. "
142                   "In order to ensure uniqueness within the NameSpace, the "
143                   "value of InstanceID SHOULD be constructed using the "
144                   "following 'preferred' algorithm: \n"
145                   " <OrgID>:<LocalID> \n"
146                   "Where <OrgID> and <LocalID> are separated by a colon ':', "
147                   "and where <OrgID> MUST include a copyrighted, trademarked "
148 kumpf 1.2         "or otherwise unique name that is owned by the business entity "
149                   "creating/defining the InstanceID, or is a registered ID that "
150                   "is assigned to the business entity by a recognized global "
151                   "authority. (This is similar to the <Schema Name>_<Class Name> "
152                   "structure of Schema class names.) In addition, to ensure "
153                   "uniqueness <OrgID> MUST NOT contain a colon (':'). When "
154                   "using this algorithm, the first colon to appear in "
155                   "InstanceID MUST appear between <OrgID> and <LocalID>. \n"
156                   " <LocalID> is chosen by the business entity and SHOULD not be "
157                   "re-used to identify different underlying (real-world) elements. " 
158                   "If the above 'preferred' algorithm is not used, the defining "
159                   "entity MUST assure that the resultant InstanceID is not "
160                   "re-used across any InstanceIDs produced by this or other "
161                   "providers for this instance's NameSpace. \n"
162                   "For DMTF defined instances, the 'preferred' algorithm MUST be "
163                   "used with the <OrgID> set to 'CIM'.") ] 
164               string InstanceID;
165           
166                 [Description 
167                    ("The version number for the database.  If the version is not "
168                     "relevant, the value for this property must be set to NULL."), 
169 kumpf 1.2        MappingStrings 
170                     {"MIB.IETF|RDBMS-MIB.rdbmsDbInfoVersion"} ] 
171               string DatabaseVersion;
172           
173                 [Description 
174                    ("The date and time when the latest complete or partial "
175                     "backup of the database was performed.  If the "
176                     "database has never been backed up, then this "
177                     "property has no meaning.  The value of this property "
178                     "should be set to all zeros if the database has never "
179                     "been backed up."), 
180                  MappingStrings 
181                     {"MIB.IETF|RDBMS-MIB.rdbmsDbInfoLastBackup"} ] 
182               datetime LastBackup;
183           
184                [Description 
185                    ("The estimated amount of disk space (in units) that has been "
186                     "reserved for database use."), 
187                  MappingStrings 
188                     {"MIB.IETF|RDBMS-MIB.rdbmsDbInfoSizeAllocated"} ] 
189              uint32 SizeAllocated;
190 kumpf 1.2 
191                 [Description 
192                    ("The units for the SizeAllocated property and the SizeUsed "
193                     "property that is defined in the "
194                     "CIM_CommonDatabaseStatistics class.  Mapping is 1 - Bytes, "
195                     "2 - Kilobytes, 3 - Megabytes, 4 - Gigabytes and "
196                     "5 - Terabytes."),
197                  ValueMap {"1", "2", "3", "4", "5"}, 
198                  Values {"Bytes", "Kilobyes", "Megabytes", "Gigabytes", 
199                          "Terabytes"},
200                  MappingStrings 
201                     {"MIB.IETF|RDBMS-MIB.rdbmsDbInfoSizeUnits"} ]
202              uint16 SizeUnits;
203           };
204           
205           
206           // ==================================================================
207           // AssociatedDatabaseSystem Association
208           // ==================================================================
209           
210              [Association, Version ("2.7.0"), 
211 kumpf 1.2       Description 
212                    ("The CIM_AssociatedDatabaseSystem association identifies "
213                     "the database system that is responsible for the database.") ]
214           class CIM_AssociatedDatabaseSystem : CIM_Dependency {
215           
216                 [Override ("Antecedent"), Min (1),
217                  Description 
218                     ("The database system that is responsible for the "
219                      "database.") ]
220              CIM_DatabaseSystem REF Antecedent;
221           
222                 [Override ("Dependent"), 
223                  Description 
224                     ("The database.") ]
225              CIM_CommonDatabase REF Dependent;
226           };
227           
228           
229           // ==================================================================
230           // DatabaseAdministrator Association
231           // ==================================================================
232 kumpf 1.2 
233              [Association, Version ("2.7.0"), 
234                 Description 
235                    ( "The CIM_DatabaseAdministrator association identifies " 
236                      "a CIM_UserEntity as a database administrator "
237                      "of a CIM_CommonDatabase.") ]
238           class CIM_DatabaseAdministrator : CIM_Dependency {
239           
240                 [Override ("Antecedent"),
241                  Description 
242                     ("The database that is being administered.") ]
243              CIM_CommonDatabase REF Antecedent;
244           
245                 [Override ("Dependent"), 
246                  Description 
247                     ("The user entity who is responsible for the administration "
248                      "of the database.") ]
249              CIM_UserEntity REF Dependent;
250           };
251           
252           
253 kumpf 1.2 // ==================================================================
254           // DatabaseService Class
255           // ==================================================================
256           
257              [Version ("2.7.0"), 
258                 Description 
259                    ("Database services perform tasks for a database.  "
260                     "Examples of tasks that are performed by a database service "
261                     "include providing user access to the database, performing "
262                     "data and metadata manipulation, database administration, "
263                     "and maintenance operations."
264                      "\n"
265                     "One or more database services can perform tasks for a "
266                     "database.  The database services can reside on "
267                     "the same computer system as the database or on "
268                     "different computer systems.  Database services may be "
269                     "implemented as one or more processes.") ]
270           class CIM_DatabaseService : CIM_Service {
271           
272                 [Description 
273                    ("The date and time when the database service was last "
274 kumpf 1.2           "started.  If the database service has an OperationalStatus "
275                     "of Stopped or Starting, then this value is not meaningful "
276                     "and the contents MUST be set to zeros."), 
277                  MappingStrings 
278                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoStartupTime"} ] 
279              datetime StartupTime;
280           
281                 [Override ("OperationalStatus"), 
282                  Description 
283                     ("This property contains the operational status of the "
284                      "database service.  OK means that the database service is "
285                      "operational and available for general use.  Stopped "
286                      "means that the service is unavailable and cannot be "
287                      "used.  Service implies an administrative state of "
288                      "unavailability.  Degraded means that the database "
289                      "service is operating at a less than optimal level. "
290                      "Starting means that the database service is in the "
291                      "process of becoming operational."
292                      "\n"
293                      "These status values map to the RFC1697 OperStatus "
294                      "values as follows: OK - UP, Stopped - DOWN, "
295 kumpf 1.2            "In Service - HALTED, Stressed - CONGESTED, and "
296                      "Starting - RESTARTING.  Any additional status variables "
297                      "that are defined are CIM specific."), 
298                  MappingStrings 
299                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoOperStatus"} ]
300              uint16 OperationalStatus[]; 
301           
302                 [Description 
303                    ("The date and time when the status of the database "
304                     "service last changed."), 
305                  MappingStrings 
306                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoLastChange"} ] 
307              datetime LastStatusChangeTime;
308           
309                 [Description 
310                    ("The maximum number of active inbound connections that "
311                     "can be concurrently opened on the service."), 
312                  MappingStrings 
313                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoMaxInboundAssociations"} ] 
314              uint32 ConnectionLimit;
315           };
316 kumpf 1.2 
317           
318           // ==================================================================
319           // ServiceAvailableToDatabase Association
320           // ==================================================================
321           
322              [Association, Version ("2.7.0"), 
323                 Description 
324                    ("The CIM_ServiceAvailableToDatabase association relates "
325                     "databases to the database services that are available "
326                     "for database use.") ]
327           class CIM_ServiceAvailableToDatabase : CIM_ServiceAvailableToElement {
328           
329                 [Override ("ServiceProvided"),
330                  Description 
331                     ("The database service that is providing service.") ]
332              CIM_DatabaseService REF ServiceProvided;
333           
334                 [Override ("UserOfService"), 
335                  Description 
336                     ("The database that is being served.") ]
337 kumpf 1.2    CIM_CommonDatabase REF UserOfService;
338           
339                [Description 
340                    ("The AvailableState property indicates the current state of "
341                     "a database service regarding its ability to access a "
342                     "specific database.  A service can be actively using a "
343                     "database (ACTIVE), or it can be waiting for a task to "
344                     "perform (AVAILABLE), or the service can be less than "
345                     "completely available for use by the database (RESTRICTED), "
346                     "or the database is not accessible from this "
347                     "service (UNAVAILABLE).  Any service states that do not "
348                     "match one of these values should specify (OTHER)."),
349                  ValueMap {"1", "2", "3", "4", "5"}, 
350                  Values {"Other", "Active", "Available", "Restricted", 
351                         "Unavailable"},
352                  MappingStrings 
353                     {"MIB.IETF|RDBMS-MIB.rdbmsRelState"}, 
354                  ModelCorrespondence 
355                     {"CIM_ServiceAvailableToDatabase.OtherAvailableState"} ]
356              uint16 AvailableState;
357           
358 kumpf 1.2      [Description 
359                    ("A string describing the service's available state when "
360                     "the AvailableState property is set to 1 (\"Other\"). This "
361                     "property MUST be set to NULL when AvailableState "
362                      "is any value other than 1."),
363                 ModelCorrespondence 
364                    {"CIM_ServiceAvailableToDatabase.AvailableState"} ]
365              string OtherAvailableState;
366           
367                [Description 
368                    ("The time that the database was made active by this "
369                     "service.  If the AvailableState property is not "
370                     "active, then the value of this property MUST be set "
371                     "to zero."),
372                  MappingStrings 
373                     {"MIB.IETF|RDBMS-MIB.rdbmsRelActiveTime"} ]
374              datetime ActiveTime;
375           };
376           
377           
378           // ==================================================================
379 kumpf 1.2 // DatabaseParameter Class
380           // ==================================================================
381           
382              [Abstract, Version ("2.7.0"), 
383                 Description 
384                    ("The CIM_DatabaseParameter class extends from "
385                     "CIM_ScopedSettingData.  This is an abstract class that "
386                     "specifies the database and service configuration "
387                     "parameters that are common across database models and "
388                     "vendor implementations."
389                     "\n"   
390                     "The SNMP RDBMS MIB defines database and service "
391                     "parameters as name/value pair combinations rather than "
392                     "as specific named properties of the class.  In order "
393                     "to maintain a consistent mapping between SNMP and CIM "
394                     "a CIM_SNMPDatabaseParameter class extends from the "
395                     "abstract CIM_DatabaseParameter class which defines "
396                     "parameters as a name value pair."           
397                     "\n"
398                     "In a future release of the database MOF, the working "
399                     "group may choose to create a new class that extends "
400 kumpf 1.2           "from CIM_DatabaseParameter that specifies properties "
401                     "for common configuration parameters."             
402                     "\n" 
403                     "The parameter context for a specific database or database "
404                     "service is established by collecting the SettingData "
405                     "using the CIM_ElementProfile association."
406                     "\n"           
407                     "The SNMP RDBMS MIB defines generic tables that contain "
408                     "rows of named database or service configuration "
409                     "entries.  A parameter entry contains a parameter name, "
410                     "description, and value.  See the description of the "
411                     "rdbmsDbParamTable or the rdbmsSrvParamTable for more "
412                     "information on the SNMP definitions.") ]
413           class CIM_DatabaseParameter : CIM_ScopedSettingData {
414           };
415           
416           
417           // ==================================================================
418           // SNMPDatabaseParameter Class
419           // ==================================================================
420           
421 kumpf 1.2    [Version ("2.7.0"), 
422                 Description 
423                    ( "The CIM_SNMPDatabaseParameter class extends from "
424                      "CIM_DatabaseParameter.  This class is included in the "
425                      "CIM database schema to provide explicit mapping to the "
426                      "way that the SNMP MIB defines database and service "
427                      "parameters.  More information on the SNMP MIB parameters "
428                      "can be found in RFC 1697."
429                      "\n" 
430                      "The SNMP RDBMS MIB defines generic tables that contain "
431                      "rows of named database or service configuration "
432                      "entries.  A parameter entry contains a parameter name, "
433                      "description, and value.  See the description of the "
434                      "rdbmsDbParamTable or the rdbmsSrvParamTable for more "
435                      "information on the SNMP definitions.") ]
436           class CIM_SNMPDatabaseParameter : CIM_DatabaseParameter {
437           
438                 [Description 
439                    ("The value of a database or service parameter represented as "
440                     "a string."), 
441                  MappingStrings 
442 kumpf 1.2           {"MIB.IETF|RDBMS-MIB.rdbmsDbParamCurrValue"} ] 
443               string ParameterValue;
444           };
445           
446           
447           // ==================================================================
448           // DatabaseServiceStatistics Class
449           // ==================================================================
450           
451              [Version ("2.7.0"), 
452                 Description 
453                    ( "The CIM_DatabaseServiceStatistics class contains the "
454                      "current statistics for a database service.  These are "
455                      "counters that are relative to the start of the service "
456                      "or from the time when a reset was issued.") ]
457           class CIM_DatabaseServiceStatistics : CIM_StatisticalData {
458           
459                 [Description 
460                    ("The date and time when the most recent inbound "
461                     "activity was observed for the database service.  A "
462                     "value of all zeros indicates that no inbound activity "
463 kumpf 1.2           "has taken place since the service was started."), 
464                  MappingStrings 
465                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoLastInboundActivity"} ] 
466              datetime LastActivity;
467           
468                 [Counter, Description 
469                    ("The number of active inbound connections that "
470                     "are currently using the service."), 
471                  MappingStrings 
472                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoapplInboundAssociation"} ] 
473              uint64 ActiveConnections;
474           
475                 [Counter, Description 
476                    ("The total number of inbound connections to the service "
477                     "since it was started."), 
478                  MappingStrings 
479                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoapplAccumulated"
480                      "InboundAssociations"} ] 
481              uint64 CumulativeConnections;
482           
483                 [Counter, Description 
484 kumpf 1.2          ("The total number of inbound connections that were rejected "
485                     "by the service since it was started."), 
486                  MappingStrings 
487                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoapplRejected"
488                      "InboundAssociations"} ] 
489              uint64 RejectedConnections;
490           
491                 [Counter, Description 
492                    ("The total number of transactions that have been completed "
493                     "by a commit or abort.  Some database operations, such as "
494                     "read-only queries, may not create a transaction."), 
495                  MappingStrings 
496                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoFinishedTransactions"} ] 
497              uint64 CompletedTransactions;
498           
499                 [Counter, Description 
500                    ("The total number of database file reads that were issued "
501                     "by the service since it was started."), 
502                  MappingStrings 
503                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoDiskReads"} ] 
504              uint64 DiskReads;
505 kumpf 1.2 
506                 [Counter, Description 
507                    ("The total number of database file writes that were issued "
508                     "by the service since it was started."), 
509                  MappingStrings 
510                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoDiskWrites"} ] 
511              uint64 DiskWrites;
512           
513                 [Counter, Description 
514                    ("The total number of logical database file reads that were "
515                     "issued by the service since it was started."), 
516                  MappingStrings 
517                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoLogicalReads"} ] 
518              uint64 LogicalReads;
519           
520                 [Counter, Description 
521                    ("The total number of logical database file writes that were "
522                     "issued by the service since it was started.  A logical "
523                     "write is a count of the number of times that parts of "
524                     "database files have been marked dirty to indicate that "
525                     "they need to be written to disk."), 
526 kumpf 1.2        MappingStrings 
527                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoLogicalWrites"} ] 
528              uint64 LogicalWrites;
529           
530                 [Counter, Description 
531                    ("The total number of database pages that have been "
532                     "read by the service since it was started."), 
533                  MappingStrings 
534                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoPageReads"} ] 
535              uint64 PageReads;
536           
537                 [Counter, Description 
538                    ("The total number of database pages that have been "
539                     "written by the service since it was started."), 
540                  MappingStrings 
541                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoPageWrites"} ] 
542              uint64 PageWrites;
543           
544                 [Counter, Description 
545                    ("The total number of times the database requested disk "
546                     "space and it was not available since the service was "
547 kumpf 1.2           "started."), 
548                  MappingStrings 
549                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoDiskOutOfSpaces"} ] 
550              uint64 DiskSpaceUnavailable;
551           
552                 [Counter, Description 
553                    ("The total number of requests that have been "
554                     "received by the service since it was started."), 
555                  MappingStrings 
556                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoHandledRequests"} ] 
557              uint64 RequestsHandled;
558           
559                 [Counter, Description 
560                    ("The total number of receive operations made by the service " 
561                     "during request processing since it was started."), 
562                  MappingStrings 
563                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoRequestRecvs"} ] 
564              uint64 RequestsReceived;
565           
566                 [Counter, Description 
567                     ("The total number of send operations made by the service " 
568 kumpf 1.2           "during request processing since it was started."), 
569                  MappingStrings 
570                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoRequestsSent"} ] 
571              uint64 RequestsSent;
572           
573                 [Counter, Description  
574                    ("The maximum number of active inbound connections that "
575                     "have been concurrently using the service since it was "
576                     "started."), 
577                  MappingStrings 
578                     {"MIB.IETF|RDBMS-MIB.rdbmsSrvInfoHighwater"
579                      "InboundAssociations"} ] 
580              uint64 HighwaterConnections;
581           };
582           
583           
584           // ==================================================================
585           // CommonDatabaseStatistics Class
586           // ==================================================================
587           
588              [Version ("2.7.0"), 
589 kumpf 1.2       Description 
590                     ("The CIM_CommonDatabaseStatistics class contains the "
591                      "current statistics for a database.") ]
592           class CIM_CommonDatabaseStatistics : CIM_StatisticalData {
593           
594                 [Description 
595                    ("The estimated amount of disk space (in units) that is "
596                     "currently used by the database."), 
597                  MappingStrings 
598                     {"MIB.IETF|RDBMS-MIB.rdbmsDbInfoSizeUsed"} ] 
599              uint32 SizeUsed;
600           };
601           
602           
603           // ==================================================================
604           // DatabaseResourceStatistics Class
605           // ==================================================================
606           
607              [Version ("2.7.0"), 
608                 Description 
609                    ("The CIM_DatabaseServiceStatistics class contains the "
610 kumpf 1.2           "current statistics for a database resource.  This class "
611                     "maps to the database and server limited resource tables "
612                     "in the SNMP RDBMS MIB as defined in RFC 1697.") ]
613           class CIM_DatabaseResourceStatistics : CIM_StatisticalData {
614           
615                 [Counter, Description  
616                    ("The current value of a limited database resource."), 
617                  MappingStrings 
618                     {"MIB.IETF|RDBMS-MIB.rdbmsDbLimitedResourceCurrent"} ] 
619              uint64 Current;
620           
621                 [Description 
622                    ("The maximum value that the database resource can attain."), 
623                  MappingStrings 
624                     {"MIB.IETF|RDBMS-MIB.rdbmsDbLimitedResourceLimit"} ] 
625              uint64 Limit;
626           
627                 [Counter, Description  
628                    ("The number of database resources used measured "
629                     "from the time when the first service was started for the "
630                     "database.  Other external factors, such as an explicit "
631 kumpf 1.2           "reset of the statistics may cause this measurement to "
632                     "begin at a later point in time."), 
633                  MappingStrings 
634                     {"MIB.IETF|RDBMS-MIB.rdbmsDbLimitedResourceHighwater"} ] 
635              uint64 Highwater;
636           
637                 [Counter, Description  
638                    ("The number of times that the system wanted to exceed the "
639                     "database resource limit measured from the time when the "
640                     "first service was started for the database."), 
641                  MappingStrings 
642                     {"MIB.IETF|RDBMS-MIB.rdbmsDbLimitedResourceFailures"} ] 
643              uint32 Failures;
644           };
645           
646           
647           // ===================================================================
648           // end of file
649           // ===================================================================

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2