| OID symbolic | OID numeric | Type | Access | Description |
| C32 cempMemBufferCacheHit | 1.3.6.1.4.1.9.9.221.1.1.3.1.4 | Counter32 | read-only | Indicates the number of buffers successfully
allocated from the cache pool. |
| C32 cempMemBufferCacheMiss | 1.3.6.1.4.1.9.9.221.1.1.3.1.5 | Counter32 | read-only | Indicates the number of times a buffer has been
requested, but no buffers were available in the
cache pool. |
| cempMemBufferCachePoolEntry | 1.3.6.1.4.1.9.9.221.1.1.3.1 | | not-accessible | 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. |
| cempMemBufferCachePoolTable | 1.3.6.1.4.1.9.9.221.1.1.3 | | not-accessible | 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. |
| U32 cempMemBufferCacheSize | 1.3.6.1.4.1.9.9.221.1.1.3.1.1 | Unsigned32 | read-only | Indicates the number of buffers in the cache pool
on the physical entity. |
| G32 cempMemBufferCacheThreshold | 1.3.6.1.4.1.9.9.221.1.1.3.1.6 | Gauge32 | read-only | Indicates the threshold limit for number of cache
buffers used(cempMemBufferCacheUsed). |
| C32 cempMemBufferCacheThresholdCount | 1.3.6.1.4.1.9.9.221.1.1.3.1.7 | Counter32 | read-only | Indicates how many times the number of cache
buffers used(cempMemBufferCacheUsed) has crossed the
threshold value(cempMemBufferCacheThreshold). |
| G32 cempMemBufferCacheTotal | 1.3.6.1.4.1.9.9.221.1.1.3.1.2 | Gauge32 | read-only | Indicates the maximum number of free buffers
allowed in the cache pool. |
| G32 cempMemBufferCacheUsed | 1.3.6.1.4.1.9.9.221.1.1.3.1.3 | Gauge32 | read-only | 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. |
| T/F cempMemBufferDynamic | 1.3.6.1.4.1.9.9.221.1.1.2.1.4 | TruthValue | read-only | 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. |
| cempMemBufferExtGroup | 1.3.6.1.4.1.9.9.221.3.2.4 | | | A collection of objects providing additional memory
buffer pool monitoring. |
| C32 cempMemBufferFailures | 1.3.6.1.4.1.9.9.221.1.1.2.1.21 | Counter32 | read-only | 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. |
| G32 cempMemBufferFree | 1.3.6.1.4.1.9.9.221.1.1.2.1.11 | Gauge32 | read-only | 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. |
| C32 cempMemBufferFreeHit | 1.3.6.1.4.1.9.9.221.1.1.2.1.14 | Counter32 | read-only | Indicates the number of successful frees/deallocations
from the buffer pool. |
| C32 cempMemBufferFreeMiss | 1.3.6.1.4.1.9.9.221.1.1.2.1.15 | Counter32 | read-only | 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. |
| cempMemBufferGroup | 1.3.6.1.4.1.9.9.221.3.2.3 | | | A collection of objects providing memory buffer pool
monitoring. |
| C32 cempMemBufferGrow | 1.3.6.1.4.1.9.9.221.1.1.2.1.20 | Counter32 | read-only | The number of buffers that have been created in the
pool when the number of free buffers(cempMemBufferFree)
was less than minimum(cempMemBufferMix). |
| C32 cempMemBufferHit | 1.3.6.1.4.1.9.9.221.1.1.2.1.12 | Counter32 | read-only | Indicates the number of buffers successfully
allocated from the buffer pool. |
| U32 cempMemBufferMax | 1.3.6.1.4.1.9.9.221.1.1.2.1.7 | Unsigned32 | read-write | 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. |
| CEM cempMemBufferMemPoolIndex | 1.3.6.1.4.1.9.9.221.1.1.2.1.2 | CempMemPoolIndex | read-only | This index corresponds to the memory pool (with
cemMemPoolIndex as index in cempMemPoolTable)
from which buffers are allocated. |
| U32 cempMemBufferMin | 1.3.6.1.4.1.9.9.221.1.1.2.1.6 | Unsigned32 | read-write | 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. |
| C32 cempMemBufferMiss | 1.3.6.1.4.1.9.9.221.1.1.2.1.13 | Counter32 | read-only | 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. |
| STR cempMemBufferName | 1.3.6.1.4.1.9.9.221.1.1.2.1.3 | SnmpAdminString | read-only | 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. |
| C32 cempMemBufferNoStorage | 1.3.6.1.4.1.9.9.221.1.1.2.1.22 | Counter32 | read-only | The number of times the system tried to create new
buffers, but could not due to insufficient free
memory in the system. |
| NTF cempMemBufferNotify | 1.3.6.1.4.1.9.9.221.0.1 | | | 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. |
| T/F cempMemBufferNotifyEnabled | 1.3.6.1.4.1.9.9.221.1.2.1 | TruthValue | read-write | 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. |
| cempMemBufferNotifyEnableGroup | 1.3.6.1.4.1.9.9.221.3.2.5 | | | A group of objects related to enabling notifications. |
| cempMemBufferNotifyGroup | 1.3.6.1.4.1.9.9.221.3.2.6 | | | A group of notifications providing additional
memory buffer pool monitoring. |
| C32 cempMemBufferPeak | 1.3.6.1.4.1.9.9.221.1.1.2.1.17 | Counter32 | read-only | Indicates the peak number of buffers in pool on the
physical entity. |
| TIM cempMemBufferPeakTime | 1.3.6.1.4.1.9.9.221.1.1.2.1.18 | TimeStamp | read-only | Indicates the time of most recent change in the peak
number of buffers (cempMemBufferPeak object) in the pool. |
| U32 cempMemBufferPermanent | 1.3.6.1.4.1.9.9.221.1.1.2.1.8 | Unsigned32 | read-write | Indicates the total number of permanent buffers in the
pool on the physical entity. |
| I32 cempMemBufferPermChange | 1.3.6.1.4.1.9.9.221.1.1.2.1.16 | Integer32 | read-only | 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. |
| cempMemBufferPoolEntry | 1.3.6.1.4.1.9.9.221.1.1.2.1 | | not-accessible | This contains all the memory buffer pool
configurations object values. The
entPhysicalIndex identifies the entity on which
memory buffer pools are present. |
| CEM cempMemBufferPoolIndex | 1.3.6.1.4.1.9.9.221.1.1.2.1.1 | CempMemBufferPoolIndex | not-accessible | Within a physical entity, a unique value used
to represent each buffer pool. |
| cempMemBufferPoolTable | 1.3.6.1.4.1.9.9.221.1.1.2 | | not-accessible | 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. |
| U32 cempMemBufferSize | 1.3.6.1.4.1.9.9.221.1.1.2.1.5 | Unsigned32 | read-write | Indicates the size of buffer element in number of bytes
on the physical entity. |
| G32 cempMemBufferTotal | 1.3.6.1.4.1.9.9.221.1.1.2.1.10 | Gauge32 | read-only | Indicates the total number of buffers
(include allocated and free buffers) in the
buffer pool on the physical entity. |
| U32 cempMemBufferTransient | 1.3.6.1.4.1.9.9.221.1.1.2.1.9 | Unsigned32 | read-write | 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. |
| C32 cempMemBufferTrim | 1.3.6.1.4.1.9.9.221.1.1.2.1.19 | Counter32 | read-only | 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). |
| cempMemPool | 1.3.6.1.4.1.9.9.221.1.1 | | | |
| C32 cempMemPoolAllocHitEx | 1.3.6.1.4.1.9.9.221.1.1.1.1.12 | Counter32 | read-only | Indicates the number of successful allocations from
the memory pool |
| C32 cempMemPoolAllocMiss | 1.3.6.1.4.1.9.9.221.1.1.1.1.13 | Counter32 | read-only | Indicates the number of unsuccessful allocations from
the memory pool |
| CEM cempMemPoolAlternate | 1.3.6.1.4.1.9.9.221.1.1.1.1.5 | CempMemPoolIndexOrNone | read-only | 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. |
| cempMemPoolEntry | 1.3.6.1.4.1.9.9.221.1.1.1.1 | | not-accessible | An entry in the memory pool monitoring table. |
| cempMemPoolExtGroup | 1.3.6.1.4.1.9.9.221.3.2.2 | | | A collection of objects providing additional memory
pool information. This group is deprecated as new
objects cempMemPoolUsedLowWaterMark,
cempMemPoolAllocHit, cempMemPoolAllocMiss,
cempMemPoolFreeHit, cempMemPool are being added.
A new group cempMemPoolExtGroupRev1 is being added in
it's place. |
| cempMemPoolExtGroupRev1 | 1.3.6.1.4.1.9.9.221.3.2.7 | | | A group of objects providing additional memory
pool information.This group deprecates
cempMemPoolExtGroup. |
| G32 cempMemPoolFree | 1.3.6.1.4.1.9.9.221.1.1.1.1.8 | Gauge32 | read-only | 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 |
| C32 cempMemPoolFreeHit | 1.3.6.1.4.1.9.9.221.1.1.1.1.14 | Counter32 | read-only | Indicates the number of successful frees/
deallocations from the memory pool |
| C32 cempMemPoolFreeMiss | 1.3.6.1.4.1.9.9.221.1.1.1.1.15 | Counter32 | read-only | 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. |
| G32 cempMemPoolFreeOvrflw | 1.3.6.1.4.1.9.9.221.1.1.1.1.19 | Gauge32 | read-only | 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. |
| cempMemPoolGroup | 1.3.6.1.4.1.9.9.221.3.2.1 | | | A collection of objects providing memory pool
monitoring. |
| cempMemPoolGroupRev1 | 1.3.6.1.4.1.9.9.221.3.2.8 | | | A collection of objects providing memory pool
monitoring. This group deprecates
cempMemPoolGroup. |
| NUM cempMemPoolHCFree | 1.3.6.1.4.1.9.9.221.1.1.1.1.20 | CounterBasedGauge64 | read-only | 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. |
| cempMemPoolHCGroup | 1.3.6.1.4.1.9.9.221.3.2.9 | | | A collection of High Capacity(HC) objects providing memory pool
monitoring. |
| NUM cempMemPoolHCLargestFree | 1.3.6.1.4.1.9.9.221.1.1.1.1.22 | CounterBasedGauge64 | read-only | 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. |
| NUM cempMemPoolHCLowestFree | 1.3.6.1.4.1.9.9.221.1.1.1.1.24 | CounterBasedGauge64 | read-only | 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. |
| NUM cempMemPoolHCShared | 1.3.6.1.4.1.9.9.221.1.1.1.1.28 | CounterBasedGauge64 | read-only | 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. |
| NUM cempMemPoolHCUsed | 1.3.6.1.4.1.9.9.221.1.1.1.1.18 | CounterBasedGauge64 | read-only | 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. |
| NUM cempMemPoolHCUsedLowWaterMark | 1.3.6.1.4.1.9.9.221.1.1.1.1.26 | CounterBasedGauge64 | read-only | 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. |
| CEM cempMemPoolIndex | 1.3.6.1.4.1.9.9.221.1.1.1.1.1 | CempMemPoolIndex | not-accessible | 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. |
| G32 cempMemPoolLargestFree | 1.3.6.1.4.1.9.9.221.1.1.1.1.9 | Gauge32 | read-only | Indicates the largest number of contiguous bytes
from the memory pool that are currently unused on
the physical entity. |
| G32 cempMemPoolLargestFreeOvrflw | 1.3.6.1.4.1.9.9.221.1.1.1.1.21 | Gauge32 | read-only | 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. |
| G32 cempMemPoolLowestFree | 1.3.6.1.4.1.9.9.221.1.1.1.1.10 | Gauge32 | read-only | The lowest amount of available memory in the memory pool
recorded at any time during the operation of the system. |
| G32 cempMemPoolLowestFreeOvrflw | 1.3.6.1.4.1.9.9.221.1.1.1.1.23 | Gauge32 | read-only | 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. |
| STR cempMemPoolName | 1.3.6.1.4.1.9.9.221.1.1.1.1.3 | SnmpAdminString | read-only | 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. |
| cempMemPoolOvrflwGroup | 1.3.6.1.4.1.9.9.221.3.2.10 | | | A collection of Overflow (Ovrflw) objects providing memory pool
monitoring. |
| OID cempMemPoolPlatformMemory | 1.3.6.1.4.1.9.9.221.1.1.1.1.4 | AutonomousType | read-only | 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. |
| G32 cempMemPoolShared | 1.3.6.1.4.1.9.9.221.1.1.1.1.16 | Gauge32 | read-only | Indicates the number of bytes from the memory pool
that are currently shared on the physical entity. |
| G32 cempMemPoolSharedOvrflw | 1.3.6.1.4.1.9.9.221.1.1.1.1.27 | Gauge32 | read-only | 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. |
| cempMemPoolTable | 1.3.6.1.4.1.9.9.221.1.1.1 | | not-accessible | A table of memory pool monitoring entries for all
physical entities on a managed system. |
| CEM cempMemPoolType | 1.3.6.1.4.1.9.9.221.1.1.1.1.2 | CempMemPoolTypes | read-only | The type of memory pool for which this entry
contains information. |
| G32 cempMemPoolUsed | 1.3.6.1.4.1.9.9.221.1.1.1.1.7 | Gauge32 | read-only | Indicates the number of bytes from the memory pool
that are currently in use by applications on the
physical entity. |
| G32 cempMemPoolUsedLowWaterMark | 1.3.6.1.4.1.9.9.221.1.1.1.1.11 | Gauge32 | read-only | 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. |
| G32 cempMemPoolUsedLowWaterMarkOvrflw | 1.3.6.1.4.1.9.9.221.1.1.1.1.25 | Gauge32 | read-only | 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. |
| G32 cempMemPoolUsedOvrflw | 1.3.6.1.4.1.9.9.221.1.1.1.1.17 | Gauge32 | read-only | 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. |
| T/F cempMemPoolValid | 1.3.6.1.4.1.9.9.221.1.1.1.1.6 | TruthValue | read-only | 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). |
| cempMIBCompliance | 1.3.6.1.4.1.9.9.221.3.1.1 | | | The compliance statement for entities which
implement the Cisco Enhanced MemPool MIB. |
| cempMIBComplianceRev1 | 1.3.6.1.4.1.9.9.221.3.1.2 | | | The compliance statement for entities which
implement the Cisco Enhanced MemPool MIB.
This compliance module deprecates
cempMIBCompliance. |
| cempMIBComplianceRev2 | 1.3.6.1.4.1.9.9.221.3.1.3 | | | The compliance statement for entities which
implement the Cisco Enhanced MemPool MIB.
This compliance module deprecates
cempMIBComplianceRev1. |
| cempMIBComplianceRev3 | 1.3.6.1.4.1.9.9.221.3.1.4 | | | The compliance statement for entities which
implement the Cisco Enhanced MemPool MIB.
This compliance module deprecates
cempMIBComplianceRev2. |
| cempMIBCompliances | 1.3.6.1.4.1.9.9.221.3.1 | | | |
| cempMIBConformance | 1.3.6.1.4.1.9.9.221.3 | | | |
| cempMIBGroups | 1.3.6.1.4.1.9.9.221.3.2 | | | |
| cempMIBNotifications | 1.3.6.1.4.1.9.9.221.0 | | | |
| cempMIBObjects | 1.3.6.1.4.1.9.9.221.1 | | | |
| cempNotificationConfig | 1.3.6.1.4.1.9.9.221.1.2 | | | |
| ciscoEnhancedMemPoolMIB | 1.3.6.1.4.1.9.9.221 | | | New MIB module for monitoring the memory pools
of all physical entities on a managed system. |