Commit version 24.12.13800

This commit is contained in:
2025-01-06 17:35:06 -05:00
parent b7f6a79c2c
commit 55d9218816
6133 changed files with 4239740 additions and 1374287 deletions

View File

@ -0,0 +1,48 @@
-- ----------------------------------------------------------------------
-- Open Network Linux Resource MIB
-- ----------------------------------------------------------------------
OCP-ONL-RESOURCE-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE, MODULE-IDENTITY, Integer32, enterprises, Gauge32 FROM SNMPv2-SMI
DisplayString FROM SNMPv2-TC
ocp FROM OCP-MIB
OpenNetworkLinux FROM OCP-ONL-MIB;
onlResource MODULE-IDENTITY
LAST-UPDATED "201612120000Z"
ORGANIZATION "Open Compute Project"
CONTACT-INFO "http://www.opencompute.org"
DESCRIPTION
"This MIB describes objects for host resources used in Open Network Linux."
REVISION "201612120000Z"
DESCRIPTION "Initial revision"
::= { OpenNetworkLinux 3 }
--
-- Basic Resource Objects
--
-- These are simplified and useful version of common resource measurements.
--
Basic OBJECT IDENTIFIER ::= { onlResource 1 }
CpuAllPercentUtilization OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average CPU utilization in percent, multiplied by 100 and rounded to the nearest integer. Provided by mpstat."
::= { Basic 1 }
CpuAllPercentIdle OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average CPU idle time in percent, multiplied by 100 and rounded to the nearest integer. Provided by mpstat."
::= { Basic 2 }
END