CISCO-ENHANCED-MEMPOOL-MIB

New MIB module for monitoring the memory pools of all physical entities on a managed system.

  • Version: 2008-12-05

    CISCO-ENHANCED-MEMPOOL-MIB@2008-12-05


    
      module CISCO-ENHANCED-MEMPOOL-MIB {
    
        yang-version 1;
    
        namespace
          "urn:ietf:params:xml:ns:yang:smiv2:CISCO-ENHANCED-MEMPOOL-MIB";
    
        prefix CISCO-ENHANCED-MEMPOOL-MIB;
    
        import ENTITY-MIB {
          prefix entity-mib;
        }
        import SNMP-FRAMEWORK-MIB {
          prefix snmp-framework;
        }
        import SNMPv2-TC {
          prefix snmpv2-tc;
        }
        import ietf-yang-smiv2 {
          prefix smiv2;
        }
        import ietf-yang-types {
          prefix yang;
        }
    
        organization "Cisco Systems, Inc.";
    
        contact
          "Cisco Systems
        Customer Service
        
        Postal: 170 W Tasman Drive
        San Jose, CA  95134
        USA
        
        Tel: +1 800 553-NETS
        
        E-mail: cs-memory@cisco.com";
    
        description
          "New MIB module for monitoring the memory pools
        of all physical entities on a managed system.";
    
        revision "2008-12-05" {
          description
            "Added the following High Capacity and Overflow objects
          in cempMemPoolTable.
          cempMemPoolUsedOvrflw, cempMemPoolHCUsed,
          cempMemPoolFreeOvrflw, cempMemPoolHCFree,
          cempMemPoolLargestFreeOvrflw, cempMemPoolHCLargestFree,
          cempMemPoolLowestFreeOvrflw, cempMemPoolHCLowestFree,
          cempMemPoolUsedLowWaterMarkOvrflw,
          cempMemPoolHCUsedLowWaterMark,
          cempMemPoolSharedOvrflw, cempMemPoolHCShared.
          Added couple of new groups cempMemPoolHCGroup and
          cempMemPoolOvrflwGroup.
          Added a new compliance cempMIBComplianceRev3 which deprecates
          cempMIBComplianceRev2.";
        }
    
        revision "2008-05-07" {
          description
            "Added a new object cempMemPoolShared in cempMemPoolTable.
          Deprecated cempMemPoolGroup OBJECT-GROUP. 
          Added cempMemPoolGroupRev1 OBJECT-GROUP.  
          Deprecated cempMIBComplianceRev1 MODULE-COMPLIANCE. 
          Added cempMIBComplianceRev2 MODULE-COMPLIANCE.";
        }
    
        revision "2003-02-24" {
          description
            "Revised version of this MIB,added Objects
          to the existing cempMemPoolTable, added buffer pools.
             Different types of memory buffer pools
             may be present in a managed device. For example:
             1. Public buffers, these are standard pools of packets 
                of different sizes (eg: 104B, 600B, 1536B, 4520B,
                5024B, 18024B ...). 
             2. Private [Interface] buffers (eg. ipc, channel ...).
             3. Header pool. 
                Pool of dynamic packet headers. Header buffers 
                have no associated data blocks or particles.
                (Particles are a mechanism for representing a 
                data packet as a collection of discontigious 
                buffers.).
                The new objects added are
                cempMemPoolUsedLowWaterMark, cempMemPoolAllocHit,
                cempMemPoolAllocMiss, cempMemPoolFreeHit, 
                cempMemPoolFreeMiss, cempMemBufferPoolTable
                & cempMemBufferCachePoolTable.";
        }
    
        revision "2001-06-05" {
          description
            "Initial version of this MIB.";
        }
    
        smiv2:alias "ciscoEnhancedMemPoolMIB" {
          smiv2:oid "1.3.6.1.4.1.9.9.221";
        }
        smiv2:alias "cempMIBNotifications" {
          smiv2:oid "1.3.6.1.4.1.9.9.221.0";
        }
        smiv2:alias "cempMIBObjects" {
          smiv2:oid "1.3.6.1.4.1.9.9.221.1";
        }
        smiv2:alias "cempMemPool" {
          smiv2:oid "1.3.6.1.4.1.9.9.221.1.1";
        }
        smiv2:alias "cempNotificationConfig" {
          smiv2:oid "1.3.6.1.4.1.9.9.221.1.2";
        }
        smiv2:alias "cempMIBConformance" {
          smiv2:oid "1.3.6.1.4.1.9.9.221.3";
        }
        smiv2:alias "cempMIBCompliances" {
          smiv2:oid "1.3.6.1.4.1.9.9.221.3.1";
        }
        smiv2:alias "cempMIBGroups" {
          smiv2:oid "1.3.6.1.4.1.9.9.221.3.2";
        }
    
        typedef CempMemPoolIndex {
          type int32 {
            range "1..2147483647";
          }
          description
            "A unique value, greater than zero, for each memory
          pool in a particular physical entity. It is recommended 
          that values are assigned contiguously starting from 1 
          such that the index will be unique within a particular 
          physical entity.";
        }
    
        typedef CempMemPoolIndexOrNone {
          type int32 {
            range "0..2147483647";
          }
          description
            "This textual convention is an extension of the
          CempMemPoolIndex. The latter defines a value greater 
          than zero to identify a memory pool in a particular 
          physical entity. This extension permits the additional 
          value of zero. The value zero is object-specific and 
          must therefore be defined as part of the description 
          of any object which uses this syntax. Examples of the 
          usage of zero might include situations where memory
          pool was unknown, or when none or all memory pools 
          need to be referenced.";
        }
    
        typedef CempMemPoolTypes {
          type enumeration {
            enum "other" {
              value 1;
            }
            enum "processorMemory" {
              value 2;
            }
            enum "ioMemory" {
              value 3;
            }
            enum "pciMemory" {
              value 4;
            }
            enum "fastMemory" {
              value 5;
            }
            enum "multibusMemory" {
              value 6;
            }
            enum "interruptStackMemory" {
              value 7;
            }
            enum "processStackMemory" {
              value 8;
            }
            enum "localExceptionMemory" {
              value 9;
            }
            enum "virtualMemory" {
              value 10;
            }
            enum "reservedMemory" {
              value 11;
            }
            enum "imageMemory" {
              value 12;
            }
            enum "asicMemory" {
              value 13;
            }
            enum "posixMemory" {
              value 14;
            }
          }
          description
            "Represents the different types of memory pools that
          may be present in a managed device. 
          Note that only the processor pool is required to be
          supported by all devices.  Support for other pool types
          is dependent on the device being managed.
          
          processorMemory -
                   processor associated heap memory.
          ioMemory - 
                   shared memory for buffer data and
                   controller descriptor blocks.
          pciMemory - 
                   Peripheral Component Interconnect bus
                   memory which is visible to all devices on 
                   the PCI buses in a platform.
          fastMemory - 
                   memory defined by the particular platform 
                   for speed critical applications.
          multibusMemory - 
                   memory present on some platforms that
                   is used as a fallback pool.
          interruptStackMemory - 
                   memory for allocating interrupt stacks. 
                   It is usually allocated from heap.
          processStackMemory - 
                   memory for allocating process stacks. 
                   It is usually allocated from heap.
          localExceptionMemory - 
                   memory reserved for processing 
                   a system core dump.
          virtualMemory - 
                   memory used to increase available RAM.
          reservedMemory - 
                   memory used for packet headers, 
                   particle headers and particles. 
          imageMemory - 
                   memory which corresponds to the image 
                   file system.
          asicMemory - 
                   Application Specific Integrated Circuit
                   memory.
          posixMemory -
                    Heap memory associated with posix style
                    processes in ion.";
        }
    
        typedef CempMemBufferPoolIndex {
          type uint32 {
            range "0..4294967295";
          }
          description
            "A unique value, greater than zero, for each buffer
          pool in the memory pool on a physical entity. It is 
          recommended that values are assigned contiguously 
          starting from 1 such that the index will be unique
          within a physical entity. Note that the index does 
          not overlap among different memory pools.";
        }
    
        container CISCO-ENHANCED-MEMPOOL-MIB {
          config false;
          container cempNotificationConfig {
            smiv2:oid "1.3.6.1.4.1.9.9.221.1.2";
            leaf cempMemBufferNotifyEnabled {
              smiv2:defval "false";
              smiv2:max-access "read-write";
              smiv2:oid "1.3.6.1.4.1.9.9.221.1.2.1";
              type boolean;
              description
                "This variable controls generation of the
              cempMemBufferNotify.
              
              When this variable is 'true', generation of
              cempMemBufferNotify is enabled.  When this variable
              is 'false', generation of cempMemBufferNotify
              is disabled.";
            }
          }  // container cempNotificationConfig
    
          container cempMemPoolTable {
            smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1";
            description
              "A table of memory pool monitoring entries for all
            physical entities on a managed system.";
            list cempMemPoolEntry {
              smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1";
              key "entPhysicalIndex cempMemPoolIndex";
              description
                "An entry in the memory pool monitoring table.";
              leaf entPhysicalIndex {
                type leafref {
                  path "/entity-mib:ENTITY-MIB/entity-mib:entPhysicalTable/entity-mib:entPhysicalEntry/entity-mib:entPhysicalIndex";
                }
              }
    
              leaf cempMemPoolIndex {
                smiv2:max-access "not-accessible";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.1";
                type CempMemPoolIndex;
                description
                  "Within each physical entity, the unique value
                greater than zero, used to represent each memory pool.  
                It is recommended that values are assigned
                contiguously starting from 1.";
              }
    
              leaf cempMemPoolType {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.2";
                type CempMemPoolTypes;
                description
                  "The type of memory pool for which this entry
                contains information.";
              }
    
              leaf cempMemPoolName {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.3";
                type snmp-framework:SnmpAdminString;
                description
                  "A textual name assigned to the memory pool. This
                object is suitable for output to a human operator,
                and may also be used to distinguish among the various
                pool types.";
              }
    
              leaf cempMemPoolPlatformMemory {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.4";
                type snmpv2-tc:AutonomousType;
                description
                  "An indication of the platform-specific memory
                pool type. The associated instance of cempMemPoolType
                is used to indicate the general type of memory pool.
                
                If no platform specific memory hardware type
                identifier exists for this physical entity, or the
                value is unknown by this agent, then the value { 0 0 }
                is returned.";
              }
    
              leaf cempMemPoolAlternate {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.5";
                type CempMemPoolIndexOrNone;
                description
                  "Indicates whether or not this memory pool has an
                alternate pool configured.  Alternate pools are
                used for fallback when the current pool runs out
                of memory.
                
                If an instance of this object has a value of zero,
                then this pool does not have an alternate.  Otherwise
                the value of this object is the same as the value of
                cempMemPoolType of the alternate pool.";
              }
    
              leaf cempMemPoolValid {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.6";
                type boolean;
                description
                  "Indicates whether or not cempMemPoolUsed,
                cempMemPoolFree, cempMemPoolLargestFree and 
                cempMemPoolLowestFree in this entry contain accurate 
                data. If an instance of this object has the value 
                false (which in and of itself indicates an internal 
                error condition), the values of these objects
                in the conceptual row may contain inaccurate 
                information (specifically, the reported values may be 
                less than the actual values).";
              }
    
              leaf cempMemPoolUsed {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.7";
                type yang:gauge32;
                units "bytes";
                description
                  "Indicates the number of bytes from the memory pool
                that are currently in use by applications on the
                physical entity.";
              }
    
              leaf cempMemPoolFree {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.8";
                type yang:gauge32;
                units "bytes";
                description
                  "Indicates the number of bytes from the memory pool
                that are currently unused on the physical entity.
                
                Note that the sum of cempMemPoolUsed and cempMemPoolFree 
                is the total amount of memory in the pool";
              }
    
              leaf cempMemPoolLargestFree {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.9";
                type yang:gauge32;
                units "bytes";
                description
                  "Indicates the largest number of contiguous bytes
                from the memory pool that are currently unused on
                the physical entity.";
              }
    
              leaf cempMemPoolLowestFree {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.10";
                type yang:gauge32;
                units "bytes";
                description
                  "The lowest amount of available memory in the memory pool
                recorded at any time during the operation of the system.";
              }
    
              leaf cempMemPoolUsedLowWaterMark {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.11";
                type yang:gauge32;
                description
                  "Indicates the lowest number of bytes from the memory pool
                that have been used by applications on the physical entity
                since sysUpTime.Similarly,the Used High
                Watermark indicates the largest number of bytes from
                the memory pool that have been used by applications on
                the physical entity since sysUpTime.This can be
                derived as follows:
                Used High Watermark = cempMemPoolUsed +
                cempMemPoolFree  - cempMemPoolLowestFree.";
              }
    
              leaf cempMemPoolAllocHit {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.12";
                type yang:counter32;
                description
                  "Indicates the number of successful allocations from
                the memory pool";
              }
    
              leaf cempMemPoolAllocMiss {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.13";
                type yang:counter32;
                description
                  "Indicates the number of unsuccessful allocations from
                the memory pool";
              }
    
              leaf cempMemPoolFreeHit {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.14";
                type yang:counter32;
                description
                  "Indicates the number of successful frees/
                deallocations from the memory pool";
              }
    
              leaf cempMemPoolFreeMiss {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.15";
                type yang:counter32;
                description
                  "Indicates the number of unsuccessful attempts
                to free/deallocate memory from the memory pool.
                For example, this could be due to ownership errors 
                where the application that did not assign the 
                memory is trying to free it.";
              }
    
              leaf cempMemPoolShared {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.16";
                type yang:gauge32;
                units "bytes";
                description
                  "Indicates the number of bytes from the memory pool
                that are currently shared on the physical entity.";
              }
    
              leaf cempMemPoolUsedOvrflw {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.17";
                type yang:gauge32;
                units "bytes";
                description
                  "This object represents the upper 32-bits of cempMemPoolUsed.
                This object needs to be supported only if the used bytes in the
                memory pool exceeds 32-bits, otherwise this object value would
                be set to 0.";
              }
    
              leaf cempMemPoolHCUsed {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.18";
                type yang:gauge64;
                units "bytes";
                description
                  "Indicates the number of bytes from the memory pool
                that are currently in use by applications on the
                physical entity. This object is a 64-bit version of
                cempMemPoolUsed.";
              }
    
              leaf cempMemPoolFreeOvrflw {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.19";
                type yang:gauge32;
                units "bytes";
                description
                  "This object represents the upper 32-bits of cempMemPoolFree.
                This object needs to be supported only if the unused bytes in
                the memory pool exceeds 32-bits, otherwise this object value
                would be set to 0.";
              }
    
              leaf cempMemPoolHCFree {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.20";
                type yang:gauge64;
                units "bytes";
                description
                  "Indicates the number of bytes from the memory pool
                that are currently unused on the physical entity.
                This object is a 64-bit version of cempMemPoolFree.";
              }
    
              leaf cempMemPoolLargestFreeOvrflw {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.21";
                type yang:gauge32;
                units "bytes";
                description
                  "This object represents the upper 32-bits of
                cempMemPoolLargestFree. This object needs to 
                be supported only if the value of 
                cempMemPoolLargestFree exceeds 32-bits, otherwise
                this object value would be set to 0.";
              }
    
              leaf cempMemPoolHCLargestFree {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.22";
                type yang:gauge64;
                units "bytes";
                description
                  "Indicates the largest number of contiguous bytes from the
                memory pool that are currently unused on the physical entity.
                This object is a 64-bit version of cempMemPoolLargestFree.";
              }
    
              leaf cempMemPoolLowestFreeOvrflw {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.23";
                type yang:gauge32;
                units "bytes";
                description
                  "This object represents the upper 32-bits of
                cempMemPoolLowestFree. This object needs to
                be supported only if the value of
                cempMemPoolLowestFree exceeds 32-bits, otherwise
                this object value would be set to 0.";
              }
    
              leaf cempMemPoolHCLowestFree {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.24";
                type yang:gauge64;
                units "bytes";
                description
                  "The lowest amount of available memory in the memory pool
                recorded at any time during the operation of the system.
                This object is a 64-bit version of cempMemPoolLowestFree.";
              }
    
              leaf cempMemPoolUsedLowWaterMarkOvrflw {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.25";
                type yang:gauge32;
                units "bytes";
                description
                  "This object represents the upper 32-bits of
                cempMemPoolUsedLowWaterMark. This object
                needs to be supported only if the value of
                cempMemPoolUsedLowWaterMark exceeds 32-bits,
                otherwise this object value would be set to 0.";
              }
    
              leaf cempMemPoolHCUsedLowWaterMark {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.26";
                type yang:gauge64;
                units "bytes";
                description
                  "Indicates the lowest number of bytes from the memory
                pool that have been used by applications on the physical
                entity since sysUpTime. This object is a 64-bit version
                of cempMemPoolUsedLowWaterMark.";
              }
    
              leaf cempMemPoolSharedOvrflw {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.27";
                type yang:gauge32;
                units "bytes";
                description
                  "This object represents the upper 32-bits of cempMemPoolShared.
                This object needs to be supported only if the value of
                cempMemPoolShared exceeds 32-bits, otherwise this object value
                would be set to 0.";
              }
    
              leaf cempMemPoolHCShared {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.1.1.28";
                type yang:gauge64;
                units "bytes";
                description
                  "Indicates the number of bytes from the memory pool that are
                currently shared on the physical entity. This object is a
                64-bit version of cempMemPoolShared.";
              }
            }  // list cempMemPoolEntry
          }  // container cempMemPoolTable
    
          container cempMemBufferPoolTable {
            smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2";
            description
              "Entries in this table define entities (buffer pools
            in this case) which are contained in an entity 
            (memory pool) defined by an entry from
            cempMemPoolTable.
            -- Basic Pool Architecture --
            1)Pools are classified as being either Static or 
              Dynamic. Static pools make no attempt to increase 
              the number of buffers contained within them if the 
              number of free buffers (cempMemBufferFree) are less
              than the number of minimum buffers (cempMemBufferMin).
              With Dynamic pools, the pool attempts to meet the 
              demands of its users.
            2)Buffers in a pool are classified as being either 
              Permanent or Temporary. Permanent buffers, as their
              name suggests, are always in the pool and are never
              destroyed unless the number of permanent buffers 
              (cempMemBufferPermanent) is changed. Temporary
              buffers are transient buffers that are created in
              dynamic pools whenever the free count 
              (cempMemBufferFree) of buffers in the pool drops 
              below the minimum (cempMemBufferMin).
            3)Buffers pools are classified as either Public or 
              Private. Public pools are available for all users 
              to allocate buffers from. Private pools are
              primarily used by interface drivers.";
            list cempMemBufferPoolEntry {
              smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1";
              key "entPhysicalIndex cempMemBufferPoolIndex";
              description
                "This contains all the memory buffer pool
              configurations object values. The 
              entPhysicalIndex identifies the entity on which
              memory buffer pools are present.";
              leaf entPhysicalIndex {
                type leafref {
                  path "/entity-mib:ENTITY-MIB/entity-mib:entPhysicalTable/entity-mib:entPhysicalEntry/entity-mib:entPhysicalIndex";
                }
              }
    
              leaf cempMemBufferPoolIndex {
                smiv2:max-access "not-accessible";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.1";
                type CempMemBufferPoolIndex;
                description
                  "Within a physical entity, a unique value used
                to represent each buffer pool.";
              }
    
              leaf cempMemBufferMemPoolIndex {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.2";
                type CempMemPoolIndexOrNone;
                description
                  "This index corresponds to the memory pool (with
                cemMemPoolIndex as index in cempMemPoolTable) 
                from which buffers are allocated.";
              }
    
              leaf cempMemBufferName {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.3";
                type snmp-framework:SnmpAdminString;
                description
                  "A textual name assigned to the buffer pool. This
                object is suitable for output to a human operator,
                and may also be used to distinguish among the various
                buffer types.
                For example: 'Small', 'Big', 'Serial0/1' etc.";
              }
    
              leaf cempMemBufferDynamic {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.4";
                type boolean;
                description
                  "Boolean poolDynamic; if TRUE, the number of buffers
                in the pool is adjusted (adding more packet buffers 
                or deleting excesses) dynamically by the background 
                process. If FALSE, the number of buffers in the pool 
                is never adjusted, even if it falls below the minimum,
                or to zero.";
              }
    
              leaf cempMemBufferSize {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.5";
                type uint32;
                units "bytes";
                description
                  "Indicates the size of buffer element in number of bytes
                on the physical entity.";
              }
    
              leaf cempMemBufferMin {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.6";
                type uint32;
                description
                  "Indicates the minimum number of free buffers
                allowed in the buffer pool or low-water mark (lwm). 
                For example of its usage :
                If cempMemBufferFree < cempMemBufferMin & pool is 
                dynamic, then signal for growth of particular buffer
                pool.";
              }
    
              leaf cempMemBufferMax {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.7";
                type uint32;
                description
                  "Indicates the maximum number of free buffers
                allowed in the buffer pool or high-water mark (hwm).
                For example of its usage :
                If cempMemBufferFree > cempMemBufferMax & pool is 
                dynamic, then signal for trim of particular buffer
                pool.";
              }
    
              leaf cempMemBufferPermanent {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.8";
                type uint32;
                description
                  "Indicates the total number of permanent buffers in the
                pool on the physical entity.";
              }
    
              leaf cempMemBufferTransient {
                smiv2:max-access "read-write";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.9";
                type uint32;
                description
                  "Indicates the initial number of temporary buffers
                in the pool on the physical entity. This object 
                instructs the system to create this many number of
                temporary extra buffers, just after a system restart. 
                A change in this object will be effective only after
                a system restart.";
              }
    
              leaf cempMemBufferTotal {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.10";
                type yang:gauge32;
                description
                  "Indicates the total number of buffers
                (include allocated and free buffers) in the
                buffer pool on the physical entity.";
              }
    
              leaf cempMemBufferFree {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.11";
                type yang:gauge32;
                description
                  "Indicates the current number of free buffers in
                the buffer pool on the physical entity.
                Note that the cempMemBufferFree is less than or equal 
                to cempMemBufferTotal.";
              }
    
              leaf cempMemBufferHit {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.12";
                type yang:counter32;
                description
                  "Indicates the number of buffers successfully
                allocated from the buffer pool.";
              }
    
              leaf cempMemBufferMiss {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.13";
                type yang:counter32;
                description
                  "Indicates the number of times a buffer has been
                requested, but no buffers were available in the
                buffer pool, or when there were fewer than min 
                buffers(cempMemBufferMin) in the buffer pool.
                Note : For interface pools, a miss is actually 
                a fall back to its corresponding public buffer pool.";
              }
    
              leaf cempMemBufferFreeHit {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.14";
                type yang:counter32;
                description
                  "Indicates the number of successful frees/deallocations
                from the buffer pool.";
              }
    
              leaf cempMemBufferFreeMiss {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.15";
                type yang:counter32;
                description
                  "Indicates the number of unsuccessful attempts
                to free/deallocate a buffer from the buffer pool. 
                For example, this could be due to ownership errors
                where the application that did not assign the 
                buffer is trying to free it.";
              }
    
              leaf cempMemBufferPermChange {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.16";
                type int32;
                description
                  "This value is the difference of the desired number
                of permanent buffer & total number of permanent 
                buffers present in the pool. A positive value of 
                this object tells the number of buffers needed & a 
                negative value of the object tells the extra number 
                of buffers in the pool.";
              }
    
              leaf cempMemBufferPeak {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.17";
                type yang:counter32;
                description
                  "Indicates the peak number of buffers in pool on the
                physical entity.";
              }
    
              leaf cempMemBufferPeakTime {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.18";
                type yang:timestamp;
                description
                  "Indicates the time of most recent change in the peak
                number of buffers (cempMemBufferPeak object) in the pool.";
              }
    
              leaf cempMemBufferTrim {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.19";
                type yang:counter32;
                description
                  "The number of buffers that have been trimmed from the
                pool when the number of free buffers 
                (cempMemBufferFree) exceeded the number of max
                allowed buffers(cempMemBufferMax).";
              }
    
              leaf cempMemBufferGrow {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.20";
                type yang:counter32;
                description
                  "The number of buffers that have been created in the
                pool when the number of free buffers(cempMemBufferFree)
                was less than minimum(cempMemBufferMix).";
              }
    
              leaf cempMemBufferFailures {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.21";
                type yang:counter32;
                description
                  "The number of failures to grant a buffer to a
                requester due to reasons other than insufficient 
                memory. For example, in systems where there are 
                different execution contexts, it may be too
                expensive to create new buffers when running in
                certain contexts. In those cases it may be 
                preferable to fail the request.";
              }
    
              leaf cempMemBufferNoStorage {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.2.1.22";
                type yang:counter32;
                description
                  "The number of times the system tried to create new
                buffers, but could not due to insufficient free 
                memory in the system.";
              }
            }  // list cempMemBufferPoolEntry
          }  // container cempMemBufferPoolTable
    
          container cempMemBufferCachePoolTable {
            smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.3";
            description
              "A table that lists the cache buffer pools
            configured on a managed system. 
            1)To provide a noticeable performance boost, 
              Cache Pool can be used. A Cache Pool is effectively
              a lookaside list of free buffers that can be 
              accessed quickly. Cache Pool is tied to Buffer Pool. 
            2)Cache pools can optionally have a threshold value
              on the number of cache buffers used in a pool. This
              can provide flow control management by having a 
              implementation specific approach such as invoking a
              vector when pool cache rises above the optional 
              threshold set for it on creation.";
            list cempMemBufferCachePoolEntry {
              smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.3.1";
              key "entPhysicalIndex cempMemBufferPoolIndex";
              description
                "Each entry represents one of the cache buffer pools
              available in the system and it contains the
              parameters configured for it.
              Note : cempMemBufferCachePoolTable has a sparse
              dependency with cempMemBufferPoolTable (i.e all the
              entires in cempMemBufferPoolTable need not have an
              entry in cempMemBufferCachePoolTable.";
              leaf entPhysicalIndex {
                type leafref {
                  path "/entity-mib:ENTITY-MIB/entity-mib:entPhysicalTable/entity-mib:entPhysicalEntry/entity-mib:entPhysicalIndex";
                }
              }
    
              leaf cempMemBufferPoolIndex {
                type leafref {
                  path "/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolTable/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolEntry/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolIndex";
                }
              }
    
              leaf cempMemBufferCacheSize {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.3.1.1";
                type uint32;
                description
                  "Indicates the number of buffers in the cache pool
                on the physical entity.";
              }
    
              leaf cempMemBufferCacheTotal {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.3.1.2";
                type yang:gauge32;
                description
                  "Indicates the maximum number of free buffers
                allowed in the cache pool.";
              }
    
              leaf cempMemBufferCacheUsed {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.3.1.3";
                type yang:gauge32;
                description
                  "Indicates the number of cache buffers from the
                pool that are currently used on the physical entity.
                Note that the cempMemBufferCacheUsed is less than or 
                equal to cempMemBufferCacheTotal.";
              }
    
              leaf cempMemBufferCacheHit {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.3.1.4";
                type yang:counter32;
                description
                  "Indicates the number of buffers successfully
                allocated from the cache pool.";
              }
    
              leaf cempMemBufferCacheMiss {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.3.1.5";
                type yang:counter32;
                description
                  "Indicates the number of times a buffer has been
                requested, but no buffers were available in the
                cache pool.";
              }
    
              leaf cempMemBufferCacheThreshold {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.3.1.6";
                type yang:gauge32;
                description
                  "Indicates the threshold limit for number of cache
                buffers used(cempMemBufferCacheUsed).";
              }
    
              leaf cempMemBufferCacheThresholdCount {
                smiv2:max-access "read-only";
                smiv2:oid "1.3.6.1.4.1.9.9.221.1.1.3.1.7";
                type yang:counter32;
                description
                  "Indicates how many times the number of cache
                buffers used(cempMemBufferCacheUsed) has crossed the
                threshold value(cempMemBufferCacheThreshold).";
              }
            }  // list cempMemBufferCachePoolEntry
          }  // container cempMemBufferCachePoolTable
        }  // container CISCO-ENHANCED-MEMPOOL-MIB
    
        notification cempMemBufferNotify {
          smiv2:oid "1.3.6.1.4.1.9.9.221.0.1";
          description
            "Whenever cempMemBufferPeak object is updated in the
          buffer pool, a cempMemBufferNotify notification
          is sent. The sending of these notifications can be 
          enabled/disabled via the cempMemBufferNotifyEnabled object.";
          container object-1 {
            leaf entPhysicalIndex {
              type leafref {
                path "/entity-mib:ENTITY-MIB/entity-mib:entPhysicalTable/entity-mib:entPhysicalEntry/entity-mib:entPhysicalIndex";
              }
            }
    
            leaf cempMemBufferPoolIndex {
              type leafref {
                path "/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolTable/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolEntry/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolIndex";
              }
            }
    
            leaf cempMemBufferName {
              type leafref {
                path "/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolTable/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolEntry/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferName";
              }
            }
          }  // container object-1
    
          container object-2 {
            leaf entPhysicalIndex {
              type leafref {
                path "/entity-mib:ENTITY-MIB/entity-mib:entPhysicalTable/entity-mib:entPhysicalEntry/entity-mib:entPhysicalIndex";
              }
            }
    
            leaf cempMemBufferPoolIndex {
              type leafref {
                path "/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolTable/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolEntry/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolIndex";
              }
            }
    
            leaf cempMemBufferPeak {
              type leafref {
                path "/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolTable/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolEntry/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPeak";
              }
            }
          }  // container object-2
    
          container object-3 {
            leaf entPhysicalIndex {
              type leafref {
                path "/entity-mib:ENTITY-MIB/entity-mib:entPhysicalTable/entity-mib:entPhysicalEntry/entity-mib:entPhysicalIndex";
              }
            }
    
            leaf cempMemBufferPoolIndex {
              type leafref {
                path "/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolTable/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolEntry/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolIndex";
              }
            }
    
            leaf cempMemBufferPeakTime {
              type leafref {
                path "/CISCO-ENHANCED-MEMPOOL-MIB:CISCO-ENHANCED-MEMPOOL-MIB/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolTable/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPoolEntry/CISCO-ENHANCED-MEMPOOL-MIB:cempMemBufferPeakTime";
              }
            }
          }  // container object-3
        }  // notification cempMemBufferNotify
      }  // module CISCO-ENHANCED-MEMPOOL-MIB
    

© 2023 YumaWorks, Inc. All rights reserved.