-- This file is corresponding to Release 6.3.1.100 from 2003/03/10 00:00:00 -- (C)opyright 1991-1999 BinTec Communications AG, All Rights Reserved -- $RCSfile: mibresource,v $ -- $Revision: 1.3 $ BIANCA-BRICK-MIBRES-MIB DEFINITIONS ::= BEGIN IMPORTS Counter FROM RFC1155-SMI OBJECT-TYPE FROM RFC-1212; org OBJECT IDENTIFIER ::= { iso 3 } dod OBJECT IDENTIFIER ::= { org 6 } internet OBJECT IDENTIFIER ::= { dod 1 } private OBJECT IDENTIFIER ::= { internet 4 } enterprises OBJECT IDENTIFIER ::= { private 1 } bintec OBJECT IDENTIFIER ::= { enterprises 272 } bibo OBJECT IDENTIFIER ::= { bintec 4 } sys OBJECT IDENTIFIER ::= { bibo 17 } resource OBJECT IDENTIFIER ::= { sys 4 } -- System Resources CpuTable OBJECT-TYPE SYNTAX SEQUENCE OF CpuEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "The CpuTable contains information about the processor statistics in the system." ::= { resource 1 } CpuEntry OBJECT-TYPE SYNTAX CpuEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "" INDEX { CpuNumber } ::= { CpuTable 1 } CpuEntry ::= SEQUENCE { CpuNumber INTEGER, CpuDescr DisplayString, CpuTotalUser INTEGER, CpuTotalSystem INTEGER, CpuTotalStreams INTEGER, CpuTotalIdle INTEGER, CpuLoadUser INTEGER, CpuLoadSystem INTEGER, CpuLoadStreams INTEGER, CpuLoadIdle INTEGER, CpuLoadUser10s INTEGER, CpuLoadSystem10s INTEGER, CpuLoadStreams10s INTEGER, CpuLoadIdle10s INTEGER, CpuLoadUser60s INTEGER, CpuLoadSystem60s INTEGER, CpuLoadStreams60s INTEGER, CpuLoadIdle60s INTEGER } CpuNumber OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "CPU Number." ::= { CpuEntry 1 } CpuDescr OBJECT-TYPE SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION "Description of CPU." ::= { CpuEntry 2 } CpuTotalUser OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total time in seconds spent in user mode since booting." ::= { CpuEntry 3 } CpuTotalSystem OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total time in seconds spent in sytem mode since booting." ::= { CpuEntry 4 } CpuTotalStreams OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total time in seconds spent with streams processing since booting." ::= { CpuEntry 5 } CpuTotalIdle OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Total idle time in seconds since booting." ::= { CpuEntry 6 } CpuLoadUser OBJECT-TYPE SYNTAX INTEGER (0..100) ACCESS read-only STATUS mandatory DESCRIPTION "Percentage of time spent in user mode for the last second." ::= { CpuEntry 7 } CpuLoadSystem OBJECT-TYPE SYNTAX INTEGER (0..100) ACCESS read-only STATUS mandatory DESCRIPTION "Percentage of time spent in system mode for the last second." ::= { CpuEntry 8 } CpuLoadStreams OBJECT-TYPE SYNTAX INTEGER (0..100) ACCESS read-only STATUS mandatory DESCRIPTION "Percentage of time spent with streams processing for the last second." ::= { CpuEntry 9 } CpuLoadIdle OBJECT-TYPE SYNTAX INTEGER (0..100) ACCESS read-only STATUS mandatory DESCRIPTION "Percentage of idle time for the last second." ::= { CpuEntry 10 } CpuLoadUser10s OBJECT-TYPE SYNTAX INTEGER (0..100) ACCESS read-only STATUS mandatory DESCRIPTION "Percentage of time spent in user mode for the last 10 seconds." ::= { CpuEntry 11 } CpuLoadSystem10s OBJECT-TYPE SYNTAX INTEGER (0..100) ACCESS read-only STATUS mandatory DESCRIPTION "Percentage of time spent in system mode for the last 10 seconds." ::= { CpuEntry 12 } CpuLoadStreams10s OBJECT-TYPE SYNTAX INTEGER (0..100) ACCESS read-only STATUS mandatory DESCRIPTION "Percentage of time spent with streams processing for the last 10 seconds." ::= { CpuEntry 13 } CpuLoadIdle10s OBJECT-TYPE SYNTAX INTEGER (0..100) ACCESS read-only STATUS mandatory DESCRIPTION "Percentage of idle time measured for the last 10 seconds." ::= { CpuEntry 14 } CpuLoadUser60s OBJECT-TYPE SYNTAX INTEGER (0..100) ACCESS read-only STATUS mandatory DESCRIPTION "Percentage of time spent in user mode for the last 60 seconds." ::= { CpuEntry 15 } CpuLoadSystem60s OBJECT-TYPE SYNTAX INTEGER (0..100) ACCESS read-only STATUS mandatory DESCRIPTION "Percentage of time spent in system mode for the last 60 seconds." ::= { CpuEntry 16 } CpuLoadStreams60s OBJECT-TYPE SYNTAX INTEGER (0..100) ACCESS read-only STATUS mandatory DESCRIPTION "Percentage of time spent with streams processing for the last 60 seconds." ::= { CpuEntry 17 } CpuLoadIdle60s OBJECT-TYPE SYNTAX INTEGER (0..100) ACCESS read-only STATUS mandatory DESCRIPTION "Percentage of idle time measured for the last 60 seconds." ::= { CpuEntry 18 } MemoryTable OBJECT-TYPE SYNTAX SEQUENCE OF MemoryEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "The MemoryTable contains information about the different memory in the system." ::= { resource 2 } MemoryEntry OBJECT-TYPE SYNTAX MemoryEntry ACCESS not-accessible STATUS mandatory DESCRIPTION "" INDEX { MemoryType } ::= { MemoryTable 1 } MemoryEntry ::= SEQUENCE { MemoryType INTEGER, MemoryDescr DisplayString, MemoryBlockSize INTEGER, MemoryTotal INTEGER, MemoryInuse INTEGER, MemoryDramUse INTEGER, MemoryNAllocs INTEGER, MemoryNFrees INTEGER, MemoryNFails INTEGER } MemoryType OBJECT-TYPE SYNTAX INTEGER { flash(1), dram(2), dpool(3) } ACCESS read-only STATUS mandatory DESCRIPTION "Type of memory: flash (1) : Non volatile memory dram (2) : Dynamic memory dpool (3) : Dynamic pool " ::= { MemoryEntry 1 } MemoryDescr OBJECT-TYPE SYNTAX DisplayString ACCESS read-only STATUS mandatory DESCRIPTION "Description of memory." ::= { MemoryEntry 2 } MemoryBlockSize OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Allocation size for memories from dpools." ::= { MemoryEntry 3 } MemoryTotal OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Amount of available units of this memory type measured in units for dpools and bytes for flash/dram." ::= { MemoryEntry 4 } MemoryInuse OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Used units of this memory type measured in units for dpools and bytes for flash/dram." ::= { MemoryEntry 5 } MemoryDramUse OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "dpools might take memory from dram. This variable gives the amount in bytes taken from a dram memory." ::= { MemoryEntry 6 } MemoryNAllocs OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Number of memory allocations." ::= { MemoryEntry 7 } MemoryNFrees OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Number of memory free operations." ::= { MemoryEntry 8 } MemoryNFails OBJECT-TYPE SYNTAX INTEGER ACCESS read-only STATUS mandatory DESCRIPTION "Number of failed memory operations." ::= { MemoryEntry 9 } END