-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathIBM-SYSTEM-SMART-MIB.mib
121 lines (103 loc) · 4.09 KB
/
IBM-SYSTEM-SMART-MIB.mib
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
IBM-SYSTEM-SMART-MIB DEFINITIONS ::= BEGIN
IMPORTS
OBJECT-TYPE
FROM RFC-1212
TRAP-TYPE
FROM RFC-1215
ibmSystemSmartDisk,
Boolean, Uint8, Sint8, Uint16, Sint16, Uint32,
Sint32, Uint64, Sint64, Real32, Real64, String, Datetime
FROM IBM-SYSTEM-MIB;
ibmSystemSmartDiskTable OBJECT-TYPE
SYNTAX SEQUENCE OF IbmSystemSmartDiskEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "The IBMPSG_StorageFailurePredictionSettings class represents SMART enabled disk"
REFERENCE "IBMPSG_StorageFailurePredictionSettings"
::= { ibmSystemSmartDisk 1 }
ibmSystemSmartDiskEntry OBJECT-TYPE
SYNTAX IbmSystemSmartDiskEntry
ACCESS not-accessible
STATUS mandatory
DESCRIPTION "This class defines an entry for each IBMPSG_StorageFailurePredictionSettings
instance. Each instance of the IBMPSG_StorageFailurePredictionSettings class
contains status and descriptive information for each disk
recognized by the Director SMART provider."
INDEX { ibmSystemSmartDiskKeyIndex }
::= { ibmSystemSmartDiskTable 1 }
IbmSystemSmartDiskEntry ::= SEQUENCE
{
ibmSystemSmartDiskKeyIndex String,
ibmSystemSmartDiskDeviceId String,
ibmSystemSmartDiskDefunct Boolean,
ibmSystemSmartDiskEventAutoClearEnabled Boolean,
ibmSystemSmartDiskEventsEnabled Boolean,
ibmSystemSmartDiskOutOfSync Boolean,
ibmSystemSmartDiskPeriod Uint32,
ibmSystemSmartDiskPredictsFailure Boolean,
ibmSystemSmartDiskSmartEnabled Boolean
}
ibmSystemSmartDiskKeyIndex OBJECT-TYPE
SYNTAX String
ACCESS read-only
STATUS mandatory
DESCRIPTION "The index used by this table"
REFERENCE "IBMPSG_StorageFailurePredictionSettings.KeyIndex"
::= { ibmSystemSmartDiskEntry 1 }
ibmSystemSmartDiskDeviceId OBJECT-TYPE
SYNTAX String
ACCESS read-only
STATUS mandatory
DESCRIPTION "The DeviceID that identifies the disk"
REFERENCE "IBMPSG_StorageFailurePredictionSettings.DeviceID"
::= { ibmSystemSmartDiskEntry 2 }
ibmSystemSmartDiskDefunct OBJECT-TYPE
SYNTAX Boolean
ACCESS read-only
STATUS mandatory
DESCRIPTION "TRUE if drive is defunct."
REFERENCE "IBMPSG_StorageFailurePredictionSettings.Defunct"
::= { ibmSystemSmartDiskEntry 3 }
ibmSystemSmartDiskEventAutoClearEnabled OBJECT-TYPE
SYNTAX Boolean
ACCESS read-only
STATUS mandatory
DESCRIPTION "TRUE if auto-clear is enabled for events."
REFERENCE "IBMPSG_StorageFailurePredictionSettings.EventAutoClearEnabled"
::= { ibmSystemSmartDiskEntry 4 }
ibmSystemSmartDiskEventsEnabled OBJECT-TYPE
SYNTAX Boolean
ACCESS read-only
STATUS mandatory
DESCRIPTION "TRUE if events are enabled"
REFERENCE "IBMPSG_StorageFailurePredictionSettings.EventsEnabled"
::= { ibmSystemSmartDiskEntry 5 }
ibmSystemSmartDiskOutOfSync OBJECT-TYPE
SYNTAX Boolean
ACCESS read-only
STATUS mandatory
DESCRIPTION "TRUE if drive is Out of Sync."
REFERENCE "IBMPSG_StorageFailurePredictionSettings.OutOfSync"
::= { ibmSystemSmartDiskEntry 6 }
ibmSystemSmartDiskPeriod OBJECT-TYPE
SYNTAX Uint32
ACCESS read-only
STATUS mandatory
DESCRIPTION "Period in seconds to poll for failure prediction."
REFERENCE "IBMPSG_StorageFailurePredictionSettings.Period"
::= { ibmSystemSmartDiskEntry 7 }
ibmSystemSmartDiskPredictsFailure OBJECT-TYPE
SYNTAX Boolean
ACCESS read-only
STATUS mandatory
DESCRIPTION "TRUE if drive is predicting a failure."
REFERENCE "IBMPSG_StorageFailurePredictionSettings.PredictsFailure"
::= { ibmSystemSmartDiskEntry 8 }
ibmSystemSmartDiskSmartEnabled OBJECT-TYPE
SYNTAX Boolean
ACCESS read-only
STATUS mandatory
DESCRIPTION "TRUE if drive is SMART capable."
REFERENCE "IBMPSG_StorageFailurePredictionSettings.SmartEnabled"
::= { ibmSystemSmartDiskEntry 9 }
END