diff options
| author | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
|---|---|---|
| committer | David Leutgeb <david.leutgeb@mannundmouse.com> | 2023-12-05 12:25:34 +0100 |
| commit | 98a672123c7872f6b9b75a9a2b6bb3aea504de6a (patch) | |
| tree | 9b13bd7f563c3198047bd359195327cf28b3caf0 /MIBS/ubiquoss/UBQS-CPU-STATS-MIB | |
| download | mibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.tar.gz mibs-98a672123c7872f6b9b75a9a2b6bb3aea504de6a.zip | |
Diffstat (limited to 'MIBS/ubiquoss/UBQS-CPU-STATS-MIB')
| -rw-r--r-- | MIBS/ubiquoss/UBQS-CPU-STATS-MIB | 107 |
1 files changed, 107 insertions, 0 deletions
diff --git a/MIBS/ubiquoss/UBQS-CPU-STATS-MIB b/MIBS/ubiquoss/UBQS-CPU-STATS-MIB new file mode 100644 index 0000000..54e7da1 --- /dev/null +++ b/MIBS/ubiquoss/UBQS-CPU-STATS-MIB @@ -0,0 +1,107 @@ +-- *****************************************************************
+-- UBQS-CPU-STATS-MIB : Ubiquoss CPU queue Statistic information
+--
+-- Sep 2015, Choi Jang Hee
+--
+-- Copyright (c) 2015 by Ubiquoss, Corp.
+--
+-- All rights reserved.
+-- ***************************************************************
+
+UBQS-CPU-STATS-MIB DEFINITIONS ::= BEGIN
+
+IMPORTS
+ IpAddress
+ FROM RFC1155-SMI
+ OBJECT-TYPE
+ FROM RFC-1212
+ DisplayString, PhysAddress
+ FROM SNMPv2-TC
+ ubiMgmtv2
+ FROM UBQS-SMI;
+
+ubiCpuStatsMIB MODULE-IDENTITY
+ LAST-UPDATED "201512230000Z"
+ ORGANIZATION "Ubiquoss Corp."
+ CONTACT-INFO
+ " Ubiquoss
+ Customer Service"
+
+ DESCRIPTION
+ "The UBQS-CPU-STATS-MIB is used to get
+ the CPU queue statistic information."
+ REVISION "201512230000Z"
+ DESCRIPTION
+ "Add system clock table"
+
+ ::= { ubiMgmtv2 36 }
+
+-- ***********************************************************
+-- Textual Conventions
+-- ***********************************************************
+
+-- ***************************************************************
+-- ubiCpuStatsMIB
+-- ***************************************************************
+ubiCpuStatsMIBNotificationPrefix OBJECT IDENTIFIER ::= { ubiCpuStatsMIB 1 }
+ubiCpuStatsMIBObjects OBJECT IDENTIFIER ::= { ubiCpuStatsMIB 2 }
+ubiCpuStatsMIBConformance OBJECT IDENTIFIER ::= { ubiCpuStatsMIB 3 }
+
+-- ***************************************************************
+-- ubiCpuStatsTable
+-- ***************************************************************
+
+
+ ubiCpuStatsTable OBJECT-TYPE
+ SYNTAX SEQUENCE OF UbiCpuStatsEntry
+ ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "The table of CPU queue counter"
+ ::= { ubiCpuStatsMIBObjects 1 }
+
+ ubiCpuStatsEntry OBJECT-TYPE
+ SYNTAX UbiCpuStatsEntry
+ ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "An entry in the CPU queue counter table, representing
+ 1. CPU Rx packet couner
+ 2. CPU drop packet counter"
+ INDEX {ubiCpuStatsIndex}
+ ::= { ubiCpuStatsTable 1 }
+
+ UbiCpuStatsEntry ::= SEQUENCE {
+ ubiCpuStatsIndex INTEGER,
+ ubiCpuStatsInPkts Counter64,
+ ubiCpuStatsDropPkts Counter64
+ }
+
+ ubiCpuStatsIndex OBJECT-TYPE
+ SYNTAX INTEGER
+ ACCESS not-accessible
+ STATUS current
+ DESCRIPTION
+ "Index of CPU queue counter table"
+ ::= {ubiCpuStatsEntry 1}
+
+ ubiCpuStatsInPkts OBJECT-TYPE
+ SYNTAX Counter64
+ ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "received packet counter of CPU queue"
+ ::= {ubiCpuStatsEntry 2}
+
+ ubiCpuStatsDropPkts OBJECT-TYPE
+ SYNTAX Counter64
+ ACCESS read-only
+ STATUS current
+ DESCRIPTION
+ "dropped packet counter of CPU queue"
+ ::= {ubiCpuStatsEntry 3}
+
+END
+
+
+
|