1 INTEL-MCELOG-MIB DEFINITIONS ::= BEGIN
4 MODULE-IDENTITY, OBJECT-TYPE, Integer32
13 --*****************************************************************************
15 -- MODULE IDENTITY AND REVISION GROUP
17 --*****************************************************************************
19 intelMcelog MODULE-IDENTITY
20 LAST-UPDATED "201610241700Z" -- coordinated universal time UTC format is YYMMDDHHmmZ
21 ORGANIZATION "Intel, Server Management Software"
23 DESCRIPTION "This SNMP MIB module logs and accounts machine memory, IO, and CPU
24 hardware errors on modern x86 Linux systems.
26 Version: 1.0 10/24/2016
28 Intel copyright information 2016"
31 OneBasedIndex ::= Integer32(1..2147483647)
33 -------------------------------------------------------------------------------
35 -------------------------------------------------------------------------------
37 memoryTable OBJECT-TYPE
38 SYNTAX SEQUENCE OF MemoryTableEntry
39 MAX-ACCESS not-accessible
42 "This Group defines the Intel RDT Groups Table."
45 memoryTableEntry OBJECT-TYPE
46 SYNTAX MemoryTableEntry
47 MAX-ACCESS not-accessible
49 DESCRIPTION "This Group defines the Mcelog Memory Table Entry."
50 INDEX { memoryGroupIndex }
53 MemoryTableEntry ::= SEQUENCE {
54 memoryGroupIndex OneBasedIndex,
55 memoryGroupDescr DisplayString,
56 memoryCorrectedErrors Integer32,
57 memoryCorrectedTimedErrors Integer32,
58 memoryUncorrectedErrors Integer32,
59 memoryUncorrectedTimedErrors Integer32
62 memoryGroupIndex OBJECT-TYPE
67 "This attribute defines the index of the Mcelog memory group."
68 ::= { memoryTableEntry 1 }
70 memoryGroupDescr OBJECT-TYPE
71 SYNTAX DisplayString (SIZE (0..255))
75 "A textual string containing information about the socket and
77 ::= { memoryTableEntry 2 }
79 memoryCorrectedErrors OBJECT-TYPE
84 "This counter defines the total number of corrected errors."
85 ::= { memoryTableEntry 3 }
87 memoryCorrectedTimedErrors OBJECT-TYPE
93 "This counter defines the number of corrected errors in
95 ::= { memoryTableEntry 4 }
97 memoryUncorrectedErrors OBJECT-TYPE
102 "This counter defines the total number of uncorrected errors."
103 ::= { memoryTableEntry 5 }
105 memoryUncorrectedTimedErrors OBJECT-TYPE
111 "This counter defines the number of uncorrected errors in
113 ::= { memoryTableEntry 6 }