Home/Catalog/CPQLINOS-MIB

CPQLINOS-MIB

Detailed view of the defined objects, syntax rules, and hierarchical paths.

82
Objects
Active
Status
4
Dependencies

Imported Objects

Objects

82 total
Object Name
cpqLinOsMgmt
OBJECT IDENTIFIER
.1.3.6.1.4.1.232.23
RFC1213-MIB
Unknown
.1.3.6.1.4.1.232.23
cpqLinOsMibRev
OBJECT IDENTIFIER
.1.3.6.1.4.1.232.23.1
cpqLinOsMibRevMajorThe Major Revision level of the MIB. A change in the major revision level represents a major change in the architecture of the MIB. A change in the major revision level may indicate a significant change in the information supported and/or the meaning of the supported information, correct interpretation of data may require a MIB document with the same major revision level.ro
INTEGER
.1.3.6.1.4.1.232.23.1.1
cpqLinOsMibRevMinorThe Minor Revision level of the MIB. A change in the minor revision level may represent some minor additional support, no changes to any pre-existing information has occurred.ro
INTEGER
.1.3.6.1.4.1.232.23.1.2
cpqLinOsMibConditionThe overall condition. This object represents the overall status of the Operating System management system represented by this MIB.ro
Enumeration
.1.3.6.1.4.1.232.23.1.3
cpqLinOsComponent
OBJECT IDENTIFIER
.1.3.6.1.4.1.232.23.2
cpqLinOsInterface
OBJECT IDENTIFIER
.1.3.6.1.4.1.232.23.2.1
cpqLinOsCommon
OBJECT IDENTIFIER
.1.3.6.1.4.1.232.23.2.1.4
cpqLinOsCommonPollFreqThe Management Agent's polling frequency. The frequency, in seconds, at which the Agent requests information from the device driver. A frequency of zero (0) indicates that the Insight Agent retrieves the information upon request of a management station, it does not poll the device driver at a specific interval. If the poll frequency is zero (0) all attempts to write to this object will fail. If the poll frequency is non-zero, setting this value will change the polling frequency of the Insight Agent. Setting the poll frequency to zero (0) will always fail, an agent may also choose to fail any request to change the poll frequency to a value that would severely impact system performance.rw
INTEGER
.1.3.6.1.4.1.232.23.2.1.4.1
cpqLinOsCommonLastObservedPollCycleThe Management Agent's last polling cycle, measured in milliseconds. This quantity should be approximately the desired polling frequency, but because of scheduling variances, slight distortions are to be expected.ro
INTEGER
.1.3.6.1.4.1.232.23.2.1.4.2
cpqLinOsCommonLastObservedTimeSecThe point in time where the last polling occured. This quantity counts the seconds from January 1, 1970 (UTC) on. This time stamp is implemented with the Linux gettimeofday call.ro
INTEGER
.1.3.6.1.4.1.232.23.2.1.4.3
cpqLinOsCommonLastObservedTimeMSecThe point in time where the last polling occured. This quantity counts milliseconds of the last fraction of a second transpired. This time stamp is implemented with the Linux gettimeofday call and is only useful in conjunction with the previously described quantity.ro
INTEGER
.1.3.6.1.4.1.232.23.2.1.4.4
cpqLinOsSystem
OBJECT IDENTIFIER
.1.3.6.1.4.1.232.23.2.2
cpqLinOsSystemUpTimeTotal Time that the computer has been operational since it was last started.ro
DisplayString
.1.3.6.1.4.1.232.23.2.2.2
cpqLinOsSysContextSwitchesPersecContext Switches/sec is the combined rate at which all processors on the computer are switched from one thread to another. Context switches occur when a running thread voluntarily relinquishes the processor, is preempted by a higher priority ready thread, or switches between user-mode and privileged (kernel) mode to use an Executive or subsystem service. It is the sum of Thread: Context Switches/sec for all threads running on all processors in the computer and is measured in numbers of switches. There are context switch counters on the System and Thread objects.ro
INTEGER
.1.3.6.1.4.1.232.23.2.2.4
cpqLinOsSysProcessesProcesses is the number of processes in the computer at the time of data collection. Notice that this is an instantaneous count, not an average over the time interval. Each process represents the running of a program.ro
INTEGER
.1.3.6.1.4.1.232.23.2.2.6
cpqLinOsProcessor
OBJECT IDENTIFIER
.1.3.6.1.4.1.232.23.2.3
cpqLinOsProcessorTableA table of Processor Entries.
SEQUENCE OF CpqLinOsProcessorEntry
.1.3.6.1.4.1.232.23.2.3.2
cpqLinOsProcessorEntryA Processor Entry.
CpqLinOsProcessorEntry
.1.3.6.1.4.1.232.23.2.3.2.1
cpqLinOsCpuIndexThis Processor Instance number.ro
INTEGER
.1.3.6.1.4.1.232.23.2.3.2.1.1
cpqLinOsCpuInstanceThis Processor Instance Name.ro
DisplayString
.1.3.6.1.4.1.232.23.2.3.2.1.2
cpqLinOsCpuInterruptsPerSecInterrupts/sec is the average number of hardware interrupts the processor is receiving and servicing in each second. It does not include DPCs, which are counted separately. This value is an indirect indicator of the activity of devices that generate interrupts, such as the system clock, the mouse, disk drivers, data communication lines, network interface cards and other peripheral devices. These devices normally interrupt the processor when they have completed a task or require attention. Normal thread execution is suspended during interrupts. Most system clocks interrupt the processor every 10 milliseconds, creating a background of interrupt activity.ro
INTEGER
.1.3.6.1.4.1.232.23.2.3.2.1.3
cpqLinOsCpuTimePercent%Processor Time is the percentage of time that the processor is executing a non-Idle thread. This counter was designed as a primary indicator of processor activity. It is calculated by measuring the time that the processor spends executing the thread of the Idle process in each sample interval, and subtracting that value from 100%. (Each processor has an Idle thread which consumes cycles when no other threads are ready to run.) It can be viewed as the fraction of the time spent doing useful work.ro
INTEGER
.1.3.6.1.4.1.232.23.2.3.2.1.4
cpqLinOsCpuUserTimePercent%User Time is the percentage of non-idle processor time spent in user mode. User mode is a restricted processing mode designed for applications, environment subsystems, and integral subsystems. The alternative, privileged mode, is designed for operating system components and allows direct access to hardware and all memory. The operating system switches application threads to privileged mode to obtain operating system services.ro
INTEGER
.1.3.6.1.4.1.232.23.2.3.2.1.7
cpqLinOsCpuPrivilegedTimePercent%Privileged Time is the percentage of non-idle processor time spent in privileged mode. (Privileged mode is a processing mode designed for operating system components and hardware-manipulating drivers. It allows direct access to hardware and all memory. The alternative, user mode, is a restricted processing mode designed for applications, environment subsystems, and integral subsystems. The operating system switches application threads to privileged mode to obtain operating system services.) %Privileged Time includes time servicing interrupts and DPCs. A high rate of privileged time might be attributable to a large number of interrupts generated by a failing device.ro
INTEGER
.1.3.6.1.4.1.232.23.2.3.2.1.8
cpqLinOsMemory
OBJECT IDENTIFIER
.1.3.6.1.4.1.232.23.2.4
cpqLinOsMemTotalTotal amount of RAM available to the operating system. This is in most cases slightly less than the total amount of system memory and might be further restricted by the boot parameter 'mem'.ro
INTEGER
.1.3.6.1.4.1.232.23.2.4.2
cpqLinOsMemFreeTotal amount of RAM that the operating system is currently not claiming.ro
INTEGER
.1.3.6.1.4.1.232.23.2.4.3
cpqLinOsMemHighTotalTotal amount of memory in the high region. Highmem is all memory above (approx) 860MB of physical RAM. The kernel uses indirect tricks to access the high memory region. Data cache can go in this memory region.ro
INTEGER
.1.3.6.1.4.1.232.23.2.4.4
cpqLinOsMemHighFreeThe amount of free memory of the high memory region.ro
INTEGER
.1.3.6.1.4.1.232.23.2.4.5
cpqLinOsMemLowTotalThe total amount of memory in the low memory region. This is the memory the kernel can address directly. All kernel datastructures need to go into low memory.ro
INTEGER
.1.3.6.1.4.1.232.23.2.4.6
cpqLinOsMemLowFreeThe amount of free memory of the low memory region.ro
INTEGER
.1.3.6.1.4.1.232.23.2.4.7
cpqLinOsMemSwapTotalThe total amount of swap space. This is the sum of the capacities of all swap partitions.ro
INTEGER
.1.3.6.1.4.1.232.23.2.4.8
cpqLinOsMemSwapFreeThe amount of free swap space.ro
INTEGER
.1.3.6.1.4.1.232.23.2.4.9
cpqLinOsMemCachedMemory in the page cache (diskcache) minus SwapCache.ro
INTEGER
.1.3.6.1.4.1.232.23.2.4.10
cpqLinOsMemSwapCachedMemory that once was swapped out, is swapped back in but still also is in the swapfile. If memory is needed it doesn't need to be swapped out again, because it is already in the swapfile. This saves I/O.ro
INTEGER
.1.3.6.1.4.1.232.23.2.4.11
cpqLinOsMemActiveMemory that has been used more recently and usually not reclaimed unless absolutely necessary.ro
INTEGER
.1.3.6.1.4.1.232.23.2.4.12
cpqLinOsMemInactiveDirtyDirty means 'might need writing to disk or swap'. This takes more work to free. Examples might be files that have not been written to yet. They aren't written to memory too soon in order to keep the I/O down. For instance, if you're writing logs, it might be better to wait until you have a complete log ready before sending it to disk.ro
INTEGER
.1.3.6.1.4.1.232.23.2.4.13
cpqLinOsMemInactiveCleanAssumed to be easily freeable. The kernel will try to keep some clean stuff around always to have a bit of breathing room.ro
INTEGER
.1.3.6.1.4.1.232.23.2.4.14
cpqLinOsCache
OBJECT IDENTIFIER
.1.3.6.1.4.1.232.23.2.5
cpqLinOsPagingFile
OBJECT IDENTIFIER
.1.3.6.1.4.1.232.23.2.6
cpqLinOsSwapInPerSecThe amount of memory being swapped in from swap files. This might be pages being retrieved because of a page fault or any other data. The unit is kB/s.ro
INTEGER
.1.3.6.1.4.1.232.23.2.6.2
cpqLinOsSwapOutPerSecThe amount of memory being swapped out into swap files. This might be pages or any other data. The unit is kB/s.ro
INTEGER
.1.3.6.1.4.1.232.23.2.6.3
cpqLinOsPageSwapInPerSecThe amount of pages being swapped in from swap files. This is in response to a major page fault.ro
INTEGER
.1.3.6.1.4.1.232.23.2.6.4
cpqLinOsPageSwapOutPerSecThe amount of pages being swapped out to disk. This is usually in response to tight memory situations where sleeping processes get put out to disk.ro
INTEGER
.1.3.6.1.4.1.232.23.2.6.5
cpqLinOsMinFltPerSecThe amount of minor faults per second system wide. Minor page faults are faults that trigger a page transfer from somewhere in memory as opposed to page transfer from a hard disk.ro
INTEGER
.1.3.6.1.4.1.232.23.2.6.6
cpqLinOsMajFltPerSecThe amount of major faults per second system wide. Major page faults are faults that trigger a page transfer from a hard disk s opposed to page transfer from memory.ro
INTEGER
.1.3.6.1.4.1.232.23.2.6.7
cpqLinOsDisk
OBJECT IDENTIFIER
.1.3.6.1.4.1.232.23.2.7
cpqLinOsDiskTableA table of Physical Disk Entries.
SEQUENCE OF CpqLinOsDiskEntry
.1.3.6.1.4.1.232.23.2.7.2
cpqLinOsDiskEntryA Physical Disk Entry.
CpqLinOsDiskEntry
.1.3.6.1.4.1.232.23.2.7.2.1
cpqLinOsDiskMajorIndexThe major number of the device (in the traditional Unix sense).ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.1
cpqLinOsDiskMinorIndexThe minor number of the device (in the traditional Unix sense).ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.2
cpqLinOsDiskNameThe Physical Disk Instance Name.ro
DisplayString
.1.3.6.1.4.1.232.23.2.7.2.1.3
cpqLinOsDiskScsiIndexThese are the four numbers that the SCSI subsystem uses to index devices, often written as <host_no, channel, id, lun>. The index can be expressed as (id | (lun << 8) | (channel << 16) | (host_no << 24)).ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.4
cpqLinOsDiskWriteIosNumber of write operations that transpired within the last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.5
cpqLinOsDiskWriteMergesNumber of write operations that were coalesced with other operations during the last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.6
cpqLinOsDiskWriteSectorsNumber of sectors written out to disk during the last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.7
cpqLinOsDiskWriteDurationMsCumulative and concurrent count of milliseconds all write operations took to complete in the last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.8
cpqLinOsDiskWriteIosPerSecWrite operations per second within that last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.9
cpqLinOsDiskWriteSectorsPerSecWrite sectors per second within the last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.10
cpqLinOsDiskWriteDurationMsPerIosAverage milliseconds it took to complete a write operation.ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.11
cpqLinOsDiskReadIosNumber of read operations that transpired within the last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.12
cpqLinOsDiskReadMergesNumber of read operations that were coalesced with other operations during the last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.13
cpqLinOsDiskReadSectorsNumber of sectors written out to disk during the last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.14
cpqLinOsDiskReadDurationMsCumulative and concurrent count of milliseconds all read operations took to complete in the last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.15
cpqLinOsDiskReadIosPerSecRead operations per second within that last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.16
cpqLinOsDiskReadSectorsPerSecRead sectors per second within the last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.17
cpqLinOsDiskReadDurationMsPerIosAverage milliseconds it took to complete a write operation.ro
INTEGER
.1.3.6.1.4.1.232.23.2.7.2.1.18
cpqLinOsNetworkInterface
OBJECT IDENTIFIER
.1.3.6.1.4.1.232.23.2.10
cpqLinOsNetworkInterfaceTableA table of Network Interface Entries.
SEQUENCE OF CpqLinOsNetworkInterfaceEntry
.1.3.6.1.4.1.232.23.2.10.2
cpqLinOsNetworkInterfaceEntryA Network Interface Entry.
CpqLinOsNetworkInterfaceEntry
.1.3.6.1.4.1.232.23.2.10.2.1
cpqLinOsNetworkInterfaceIndexThe Network Interface Instance number.ro
INTEGER
.1.3.6.1.4.1.232.23.2.10.2.1.1
cpqLinOsNetworkInterfaceNameThe Network Interface Instance Name.ro
DisplayString
.1.3.6.1.4.1.232.23.2.10.2.1.2
cpqLinOsNetworkInterfaceTxBytesNumber of bytes that were transmitted from the network interface within the last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.10.2.1.3
cpqLinOsNetworkInterfaceTxPacketsNumber of packets that were transmitted from the network interface within the last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.10.2.1.4
cpqLinOsNetworkInterfaceTxBytesPerSecNumber of bytes per second that were transmitted from the network interface.ro
INTEGER
.1.3.6.1.4.1.232.23.2.10.2.1.5
cpqLinOsNetworkInterfaceTxPacketsPerSecNumber of packets per second that were transmitted from the network interface.ro
INTEGER
.1.3.6.1.4.1.232.23.2.10.2.1.6
cpqLinOsNetworkInterfaceRxBytesNumber of bytes that were received from the network interface within the last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.10.2.1.7
cpqLinOsNetworkInterfaceRxPacketsNumber of packets that were received from the network interface within the last polling interval.ro
INTEGER
.1.3.6.1.4.1.232.23.2.10.2.1.8
cpqLinOsNetworkInterfaceRxBytesPerSecNumber of bytes per second that were received from the network interface.ro
INTEGER
.1.3.6.1.4.1.232.23.2.10.2.1.9
cpqLinOsNetworkInterfaceRxPacketsPerSecNumber of packets per second that were received from the network interface.ro
INTEGER
.1.3.6.1.4.1.232.23.2.10.2.1.10
CPQLINOS-MIB - SNMP MIB Reference | MIBs Explorer