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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
|
ISILON-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,
Integer32, Gauge32, enterprises
FROM SNMPv2-SMI
CounterBasedGauge64
FROM HCNUM-TC
DisplayString
FROM SNMPv2-TC
MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF;
isilon MODULE-IDENTITY
LAST-UPDATED "201509230000Z" --23 SEP 2015
ORGANIZATION "Isilon Systems LLC"
CONTACT-INFO
"Isilon Systems LLC
Support phone: 1-800.782.4362
Support website: http://support.emc.com
"
DESCRIPTION
"The base MIB module for Isilon Systems OneFS operating system."
REVISION "201509230000Z" --23 SEP 2015
DESCRIPTION
"Removed support for the iSCSI protocol in nodeProtocolPerfTable"
REVISION "201504070000Z" --07 APR 2015
DESCRIPTION
"MIB maintenance, using smilint to fix errors and warnings in MIB as
well as improving descriptions and fixing spelling and grammar errors.
Added compliance groups for SMIv2, and removed unused imports."
REVISION "201010210000Z" --21 OCT 2010
DESCRIPTION
"The list of protocols supported by OneFS and reported in the
nodeProtocolPerfEntry tables has changed: CIFS was
renamed to SMB1, SMB2 was added, NFS was renamed to
NFS3 (which includes also version 2), and NFS4 was added."
REVISION "201006290000Z" --29 JUN 2010
DESCRIPTION
"diskPerfOutBytesPerSecond was renamed to diskPerfOutBitsPerSecond.
The value returned by the OID was and is bits per second.
ifsFreeBytes was added, comparing with ifsAvailableBytes will
show space used for Virtual Hot Spares (system reserve)."
REVISION "200912150000Z" --15 DEC 2009
DESCRIPTION
"iSCSI and SyncIQ protocols were added to nodeProtocolPerfTable."
REVISION "200911100000Z" --10 NOV 2009
DESCRIPTION
"The following OIDs were obsoleted: clusterNetworkInBytes,
clusterNetworkOutBytes, nodeNetworkInBytes, and
nodeNetworkOutBytes."
REVISION "200905290000Z" --29 MAY 2009
DESCRIPTION
"Initial revision."
::= { enterprises 12124 }
--ISILON OBJECT--
-- { isilon 3 } is used by the deprecated ONEFS-SNAPSHOT-MIB.
-- { isilon 4 } is defined as local, used for non-MIB API identifiers
cluster OBJECT IDENTIFIER ::= { isilon 1 }
node OBJECT IDENTIFIER ::= { isilon 2 }
local OBJECT IDENTIFIER ::= { isilon 4 }
conformance OBJECT IDENTIFIER ::= { isilon 5 }
--CLUSTER--
--CLUSTER GROUPS--
clusterStatus OBJECT IDENTIFIER ::= { cluster 1 }
clusterPerformance OBJECT IDENTIFIER ::= { cluster 2 }
ifsFilesystem OBJECT IDENTIFIER ::= { cluster 3 }
licenses OBJECT IDENTIFIER ::= { cluster 5 }
quotas OBJECT IDENTIFIER ::= { cluster 12 }
snapshots OBJECT IDENTIFIER ::= { cluster 13 }
--CLUSTER STATUS OBJECTS--
clusterName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the cluster."
::= { clusterStatus 1 }
clusterHealth OBJECT-TYPE
SYNTAX INTEGER{ok(0),attn(1),down(2),invalid(3)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall health of the cluster."
::= { clusterStatus 2 }
clusterGUID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The globally unique identifier for the cluster."
::= { clusterStatus 3 }
nodeCount OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of nodes in the cluster."
::={ clusterStatus 4 }
configuredNodes OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A comma-separted list of the logical node numbers
of the configured nodes in the cluster."
::= { clusterStatus 5 }
onlineNodes OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A comma-separted list of the logical node numbers
of the online nodes in the cluster."
::= { clusterStatus 6 }
offlineNodes OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A comma-separted list of the logical node numbers
of the offline nodes in the cluster."
::= { clusterStatus 7 }
--CLUSTER PREFORMANCE OBJECTS--
--CLUSTER FILESYSTEM PERFORMANCE OBJECTS--
clusterIfsPerf OBJECT IDENTIFIER ::= { clusterPerformance 1 }
clusterIfsInBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cumulative number of bytes into /ifs."
::= { clusterIfsPerf 1 }
clusterIfsInBitsPerSecond OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cumulative throughput rate (bits per second) into /ifs."
::= { clusterIfsPerf 2 }
clusterIfsOutBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cumulative number of bytes out of /ifs."
::= { clusterIfsPerf 3 }
clusterIfsOutBitsPerSecond OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cumulative throughput rate (bits per second) out of /ifs."
::= { clusterIfsPerf 4 }
--CLUSTER NETWORK PERFORMANCE OBJECT--
clusterNetworkPerf OBJECT IDENTIFIER ::= { clusterPerformance 2 }
clusterNetworkInBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The cumulative input bytes for all external interfaces.
Obsolete."
::= { clusterNetworkPerf 1 }
clusterNetworkInBitsPerSecond OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cumulative input rate (bits per second) for
all external interfaces."
::= { clusterNetworkPerf 2 }
clusterNetworkOutBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"The cumulative output bytes for all external interfaces.
Obsolete."
::= { clusterNetworkPerf 3 }
clusterNetworkOutBitsPerSecond OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cumulative output rate (bits per second) for
all external interfaces."
::= { clusterNetworkPerf 4 }
--CLUSTER CPU PERF TABLE
clusterCPUPerf OBJECT IDENTIFIER ::= { clusterPerformance 3 }
clusterCPUUser OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average amount of CPU time (per mil) used by user processes
averaged for all nodes over the last 5 seconds."
::= { clusterCPUPerf 1 }
clusterCPUNice OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average amount of CPU time (per mil) used by nice processes
averaged for all nodes over the last 5 seconds."
::= { clusterCPUPerf 2 }
clusterCPUSystem OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average amount of CPU time (per mil) used by system processes
averaged for all nodes over the last 5 seconds."
::= { clusterCPUPerf 3 }
clusterCPUInterrupt OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average amount of CPU time (per mil) used by interrupts
averaged for all nodes over the last 5 seconds."
::= { clusterCPUPerf 4 }
clusterCPUIdlePct OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average amount of idle CPU time (per mil) averaged for all nodes
averaged for all nodes over the last 5 seconds."
::= { clusterCPUPerf 5 }
--FILESYSTEM OBJECTS--
ifsTotalBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total cluster capacity of the /ifs filesystem in bytes."
::= { ifsFilesystem 1 }
ifsUsedBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes used in the /ifs filesystem."
::= { ifsFilesystem 2 }
ifsAvailableBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes available for use in the /ifs filesystem."
::= { ifsFilesystem 3 }
ifsFreeBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes free in the /ifs filesystem (includes
Virtual Hot Spare)."
::= { ifsFilesystem 4 }
accessTimeEnabled OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if access time tracking is enabled on the /ifs filesystem."
::= { ifsFilesystem 10 }
accessTimeGracePeriod OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Tthe minimum amount of time (in milliseconds)
between updates to a file's last access time."
::= { ifsFilesystem 11 }
--LICENSES TABLE--
licenseTable OBJECT-TYPE
SYNTAX SEQUENCE OF LicenseEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Licensing information for OneFS software modules."
::= { licenses 1 }
licenseEntry OBJECT-TYPE
SYNTAX LicenseEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A software module's license status."
INDEX { licenseIndex }
::= { licenseTable 1 }
LicenseEntry ::= SEQUENCE {
licenseIndex Integer32,
licenseModuleName DisplayString ,
licenseStatus INTEGER,
licenseExpirationDate Gauge32
}
licenseIndex OBJECT-TYPE
SYNTAX Integer32(0..99)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of a row in the licensed modules table."
::= { licenseEntry 1 }
licenseModuleName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the licensable module."
::= { licenseEntry 2 }
licenseStatus OBJECT-TYPE
SYNTAX INTEGER{inactive(-2),
expired(-1),
activated(0),
evaluation(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the license. It may be licensed, unlicensed
(inactive or expired), or an evaluation license."
::= { licenseEntry 3 }
licenseExpirationDate OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The UNIX epoch time that the license expires. This value is only
present for evaluation licenses as normal licenses do not expire."
::= { licenseEntry 5 }
--QUOTAS OBJECTS--
quotaTable OBJECT-TYPE
SYNTAX SEQUENCE OF QuotaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of specific directory, user, and group quotas."
::= { quotas 1 }
quotaEntry OBJECT-TYPE
SYNTAX QuotaEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A quota."
INDEX { quotaDomainID }
::= { quotaTable 1 }
QuotaEntry ::= SEQUENCE {
quotaDomainID DisplayString,
quotaType INTEGER,
quotaID Gauge32,
quotaIncludesSnapshotUsage INTEGER,
quotaPath DisplayString,
quotaHardThresholdDefined INTEGER,
quotaHardThreshold CounterBasedGauge64,
quotaSoftThresholdDefined INTEGER,
quotaSoftThreshold CounterBasedGauge64,
quotaAdvisoryThresholdDefined INTEGER,
quotaAdvisoryThreshold CounterBasedGauge64,
quotaGracePeriod Integer32,
quotaUsage CounterBasedGauge64,
quotaUsageWithOverhead CounterBasedGauge64,
quotaInodeUsage CounterBasedGauge64,
quotaIncludesOverhead INTEGER
}
quotaDomainID OBJECT-TYPE
SYNTAX DisplayString(SIZE(48))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique identifier for the quota."
::= { quotaEntry 1 }
quotaType OBJECT-TYPE
SYNTAX INTEGER{defaultUser(0),
user(1),
defaultGroup(2),
group(3),
directory(4),
special(5),
max(6)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of quota."
::= { quotaEntry 2 }
quotaID OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The user or group ID governed by this quota, if this is a
user or group quota; otherwise 0."
::= { quotaEntry 3 }
quotaIncludesSnapshotUsage OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates whether or not snapshot usage is included
in the quota usage."
::= { quotaEntry 4 }
quotaPath OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The path governed by this quota."
::= { quotaEntry 5 }
quotaHardThresholdDefined OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if a hard threshold is enforced for the quota."
::= { quotaEntry 6 }
quotaHardThreshold OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hard threshold in bytes."
::= { quotaEntry 7 }
quotaSoftThresholdDefined OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if a soft threshold is enforced for the quota."
::= { quotaEntry 8 }
quotaSoftThreshold OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The soft threshold in bytes."
::= { quotaEntry 9 }
quotaAdvisoryThresholdDefined OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if an advisory threshold is enforced for the quota."
::= { quotaEntry 10 }
quotaAdvisoryThreshold OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The advisory threshold in bytes."
::= { quotaEntry 11 }
quotaGracePeriod OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The grace period for the soft threshold. If the soft threshold
is exceeded for this time period, write access will be denied."
::= { quotaEntry 12 }
quotaUsage OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current quota usage in bytes."
::= { quotaEntry 13 }
quotaUsageWithOverhead OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current quota usage in bytes including FlexProtect overhead."
::= { quotaEntry 14 }
quotaInodeUsage OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of inodes (directories and files) covered by the quota."
::= { quotaEntry 15}
quotaIncludesOverhead OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the quota includes data protection overhead."
::= { quotaEntry 16 }
--SNAPSHOT OBJECT--
snapshotSettings OBJECT IDENTIFIER ::= { snapshots 1 }
--SNAPSHOT SETTINGS--
snapshotScheduledCreateEnabled OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the scheduled (automatic) creation of snapshots
should occur."
::= { snapshotSettings 1 }
snapshotScheduledDeleteEnabled OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if scheduled (automatic) deletion of snapshots
should occur."
::= { snapshotSettings 2 }
snapshotReservedPct OBJECT-TYPE
SYNTAX Integer32(0..99)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percent of storage space reserved for snapshots. The value
report is a percentage of total cluster storage capacity."
::= { snapshotSettings 3 }
snapshotRootVisibilityNFS OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the /ifs/.snapshot directory is visible
to NFS clients."
::= { snapshotSettings 4 }
snapshotRootAccessNFS OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the /ifs/.snapshot directory is accessible
to NFS clients."
::= { snapshotSettings 5 }
snapshotSubdirAccessNFS OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if .snapshot directories in subdirectories of /ifs are
visible to NFS clients."
::= { snapshotSettings 6 }
snapshotRootVisibilityCIFS OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the /ifs/.snapshot directory is visible
to CIFS clients."
::= { snapshotSettings 7 }
snapshotRootAccessCIFS OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the /ifs/.snapshot directory is accessible
to CIFS clients."
::= { snapshotSettings 8 }
snapshotSubdirAccessCIFS OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if .snapshot directories in subdirectories of /ifs are
visible to CIFS clients."
::= { snapshotSettings 9 }
snapshotRootVisibilityLocal OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if .snapshot directories in subdirectories of /ifs are
visible to local users."
::= { snapshotSettings 10 }
snapshotRootAccessLocal OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the /ifs/.snapshot directory is visible
to local users."
::= { snapshotSettings 11 }
snapshotSubdirAccessLocal OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the /ifs/.snapshot directory is accessible
to local users."
::= { snapshotSettings 12 }
--SNAPSHOT SCHEDULE TABLE--
snapshotScheduleTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnapshotScheduleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of snapshot schedules."
::= { snapshots 2 }
snapshotScheduleEntry OBJECT-TYPE
SYNTAX SnapshotScheduleEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A snapshot schedule."
INDEX { snapshotScheduleIndex }
::= { snapshotScheduleTable 1 }
SnapshotScheduleEntry ::= SEQUENCE {
snapshotScheduleIndex Integer32,
snapshotScheduleName DisplayString,
snapshotScheduleAlias DisplayString,
snapshotScheduleNamingPattern DisplayString,
snapshotScheduleSchedule DisplayString,
snapshotScheduleExpiration DisplayString,
snapshotSchedulePath DisplayString
}
snapshotScheduleIndex OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique identifier for a snapshot schedule."
::= { snapshotScheduleEntry 1 }
snapshotScheduleName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the schedule."
::= { snapshotScheduleEntry 2 }
snapshotScheduleAlias OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The alias for snapshots created by the schedule."
::= { snapshotScheduleEntry 3 }
snapshotScheduleNamingPattern OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The naming pattern for snapshots created by the schedule."
::= { snapshotScheduleEntry 4 }
snapshotScheduleSchedule OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The date, time, and frequency that snapshots
will be created by this schedule."
::= { snapshotScheduleEntry 5 }
snapshotScheduleExpiration OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description of when snapshots created by the schedule will expire."
::= { snapshotScheduleEntry 6 }
snapshotSchedulePath OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The paths that snapshots will be created from for the schedule."
::= { snapshotScheduleEntry 7 }
--SNAPSHOT TABLE--
snapshotTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnapshotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of snapshots."
::= { snapshots 3 }
snapshotEntry OBJECT-TYPE
SYNTAX SnapshotEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A snapshot."
INDEX { snapshotIndex }
::= { snapshotTable 1 }
SnapshotEntry ::= SEQUENCE {
snapshotIndex Integer32,
snapshotName DisplayString,
snapshotCreated Gauge32,
snapshotExpires Gauge32,
snapshotSize CounterBasedGauge64,
snapshotPath DisplayString,
snapshotAliasFor DisplayString,
snapshotLocked INTEGER
}
snapshotIndex OBJECT-TYPE
SYNTAX Integer32(0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The unique identifier of the snapshot."
::= { snapshotEntry 1 }
snapshotName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the snapshot."
::= { snapshotEntry 2 }
snapshotCreated OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The UNIX epoch time at which the snapshot was created."
::= { snapshotEntry 3 }
snapshotExpires OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The UNIX epoch time that the snapshot expires in seconds."
::= { snapshotEntry 4 }
snapshotSize OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The amount of storage space consumed by the snapshot in bytes."
::= { snapshotEntry 5 }
snapshotPath OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The path covered by the snapshot."
::= { snapshotEntry 6 }
snapshotAliasFor OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An alternate name for the snapshot."
::= { snapshotEntry 7 }
snapshotLocked OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the snapshot is locked."
::= { snapshotEntry 8 }
--NODE OBJECTS--
--NODE OBJECT GROUPS--
nodeStatus OBJECT IDENTIFIER ::= { node 1 }
nodePerformance OBJECT IDENTIFIER ::= { node 2 }
--NODE STATUS--
nodeName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hostname of the node."
::= { nodeStatus 1 }
nodeHealth OBJECT-TYPE
SYNTAX INTEGER{ok(0),attn(1),down(2),invalid(3)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall health of the node."
::= { nodeStatus 2 }
nodeType OBJECT-TYPE
SYNTAX INTEGER{storage(0), accelerator(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The general type of the node."
::= { nodeStatus 3 }
readOnly OBJECT-TYPE
SYNTAX INTEGER{no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if this node in read-only mode."
::= { nodeStatus 4 }
--NODE PERFORMANCE GROUP--
--NODE FILESYSTEM PERFORMANCE GROUP--
nodeIfsPerf OBJECT IDENTIFIER ::= { nodePerformance 1 }
nodeIfsInBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes into /ifs through this node."
::= { nodeIfsPerf 1 }
nodeIfsInBitsPerSecond OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The throughput rate (bytes per second) into /ifs through this node."
::= { nodeIfsPerf 2 }
nodeIfsOutBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of bytes out of /ifs through this node."
::= { nodeIfsPerf 3 }
nodeIfsOutBitsPerSecond OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The throughput rate (bytes per second) out of /ifs through this node."
::= { nodeIfsPerf 4 }
--NODE NETWORK PERFORMANCE GROUP--
nodeNetworkPerf OBJECT IDENTIFIER ::= { nodePerformance 2 }
nodeNetworkInBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Total bytes into the node's external interfaces.
Obsolete."
::= { nodeNetworkPerf 1 }
nodeNetworkInBitsPerSecond OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total input rate (bits per second) into the
node's external interfaces."
::= { nodeNetworkPerf 2 }
nodeNetworkOutBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS obsolete
DESCRIPTION
"Total bytes out of the node's external interfaces.
Obsolete."
::= { nodeNetworkPerf 3 }
nodeNetworkOutBitsPerSecond OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total output rate (bits per second) from the
node's external interfaces."
::= { nodeNetworkPerf 4 }
--NODE CPU PERF AGGREGATES
nodeCPUPerf OBJECT IDENTIFIER ::= { nodePerformance 3 }
nodeCPUUser OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average amount of CPU (per mil) used by user processes
within the last 5 seconds for all CPUs."
::= { nodeCPUPerf 1 }
nodeCPUNice OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average amount of CPU (per mil) used by nice processes
within the last 5 seconds for all CPUs."
::= { nodeCPUPerf 2 }
nodeCPUSystem OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average amount of CPU (per mil) used by system processes
within the last 5 seconds for all CPUs."
::= { nodeCPUPerf 3 }
nodeCPUInterrupt OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average amount of CPU (per mil) used by interrupts
within the last 5 seconds for all CPUs."
::= { nodeCPUPerf 4 }
nodeCPUIdle OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average amount of CPU (per mil) used by idle processes
within the last 5 seconds for all CPUs."
::= { nodeCPUPerf 5 }
--NODE PER CPU PERF TABLE
nodeCPUPerfTable OBJECT-TYPE
SYNTAX SEQUENCE OF NodeCPUPerfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Per CPU usage metrics."
::= { nodeCPUPerf 10 }
NodeCPUPerfEntry ::= SEQUENCE {
nodePerCPUUser Gauge32,
nodePerCPUNice Gauge32,
nodePerCPUSystem Gauge32,
nodePerCPUInterrupt Gauge32,
nodePerCPUIdle Gauge32,
nodePerCPUID Integer32
}
nodeCPUPerfEntry OBJECT-TYPE
SYNTAX NodeCPUPerfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"CPU usage metrics for one CPU/core.
"
INDEX { nodePerCPUID }
::= { nodeCPUPerfTable 1 }
nodePerCPUUser OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Amount of CPU (per mil) used by user processes
within the last 5 seconds for the CPU."
::= { nodeCPUPerfEntry 1 }
nodePerCPUNice OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Amount of CPU (per mil) used by nice processes
within the last 5 seconds for the CPU."
::= { nodeCPUPerfEntry 2 }
nodePerCPUSystem OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Amount of CPU (per mil) used by system processes
within the last 5 seconds for the CPU."
::= { nodeCPUPerfEntry 3 }
nodePerCPUInterrupt OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Amount of CPU (per mil) used by interrupts
within the last 5 seconds for the CPU."
::= { nodeCPUPerfEntry 4 }
nodePerCPUIdle OBJECT-TYPE
SYNTAX Gauge32(0..1000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Amount of CPU (per mil) used by idle processes
within the last 5 seconds for the CPU."
::= { nodeCPUPerfEntry 5 }
nodePerCPUID OBJECT-TYPE
SYNTAX Integer32(0..64)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ID of the CPU."
::= { nodeCPUPerfEntry 6 }
--PROTOCOL PERFORMANCE TABLE--
nodeProtocolPerfTable OBJECT-TYPE
SYNTAX SEQUENCE OF NodeProtocolPerfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Per-protocol performance metrics and statistics."
::= { nodePerformance 10 }
NodeProtocolPerfEntry ::= SEQUENCE {
protocolName DisplayString,
protocolOpCount Gauge32,
protocolOpsPerSecond Gauge32,
inMinBytes Gauge32,
inMaxBytes Gauge32,
inAvgBytes Gauge32,
inStdDevBytes Gauge32,
inBitsPerSecond CounterBasedGauge64,
outMinBytes Gauge32,
outMaxBytes Gauge32,
outAvgBytes Gauge32,
outStdDevBytes Gauge32,
outBitsPerSecond CounterBasedGauge64,
latencyMin Gauge32,
latencyMax Gauge32,
latencyAverage Gauge32,
latencyStdDev Gauge32
}
nodeProtocolPerfEntry OBJECT-TYPE
SYNTAX NodeProtocolPerfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Basic protocol performance metrics and statistics.
Each row represents a protocol. The procotols
are: SMB1, SMB2, FTP, HTTP, NFS3, NFS4, NLM, SYNCIQ.
"
INDEX { IMPLIED protocolName }
::= { nodeProtocolPerfTable 1 }
protocolName OBJECT-TYPE
SYNTAX DisplayString(SIZE(3..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the protocol."
::= { nodeProtocolPerfEntry 1 }
protocolOpCount OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of operations for the protocol.
"
::= { nodeProtocolPerfEntry 2 }
protocolOpsPerSecond OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of operations per second for the last 5 second."
::= { nodeProtocolPerfEntry 3 }
inMinBytes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The smallest input size in bytes of all operations for the protocol."
::= { nodeProtocolPerfEntry 4 }
inMaxBytes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The largest input size in bytes of all operations for the protocol."
::= { nodeProtocolPerfEntry 5 }
inAvgBytes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average input size in bytes for all operations for the protocol."
::= { nodeProtocolPerfEntry 6 }
inStdDevBytes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The standard deviation input size in bytes
for all operations for the protocol."
::= { nodeProtocolPerfEntry 7 }
inBitsPerSecond OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The input rate (bits per second) for the protocol."
::= { nodeProtocolPerfEntry 8 }
outMinBytes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The smallest output size in bytes of all operations for the protocol."
::= { nodeProtocolPerfEntry 9 }
outMaxBytes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The largest output size in bytes of all operations for the protocol."
::= { nodeProtocolPerfEntry 10 }
outAvgBytes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average output size in bytes of all operations for the protocol."
::= { nodeProtocolPerfEntry 11 }
outStdDevBytes OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The standard deviation output size in bytes
for all operations for the protocol."
::= { nodeProtocolPerfEntry 12 }
outBitsPerSecond OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The output rate (bits per second)
for all operations for the protocol."
::= { nodeProtocolPerfEntry 13 }
latencyMin OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The minimum latency in microseconds
for all operations for the protocol."
::= { nodeProtocolPerfEntry 14 }
latencyMax OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum latency in microseconds
for all operations for the protocol."
::= { nodeProtocolPerfEntry 15 }
latencyAverage OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The average latency in microseconds
for all operations for the protocol."
::= { nodeProtocolPerfEntry 16 }
latencyStdDev OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The latency standard deviation in microseconds
for all operations for the protocol."
::= { nodeProtocolPerfEntry 17 }
--DISK PERFORMANCE TABLE--
diskPerfTable OBJECT-TYPE
SYNTAX SEQUENCE OF DiskPerfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Disk performance metrics and statistics."
::= { nodePerformance 52 }
DiskPerfEntry ::= SEQUENCE {
diskPerfBay Integer32,
diskPerfDeviceName DisplayString,
diskPerfOpsPerSecond Gauge32,
diskPerfInBitsPerSecond Gauge32,
diskPerfOutBitsPerSecond Gauge32
}
diskPerfEntry OBJECT-TYPE
SYNTAX DiskPerfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Performance metrics and statistics for a disk.
Each row in the table represents a disk."
INDEX { diskPerfBay }
::= { diskPerfTable 1 }
diskPerfBay OBJECT-TYPE
SYNTAX Integer32(1..256)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bay that contains the disk."
::= { diskPerfEntry 1 }
diskPerfDeviceName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device name for this disk. This value
correspond to the diskBay column in the diskTable."
::= { diskPerfEntry 2 }
diskPerfOpsPerSecond OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of disk operations per second."
::= { diskPerfEntry 3 }
diskPerfInBitsPerSecond OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The input rate (bits per second) into this disk."
::= { diskPerfEntry 4 }
diskPerfOutBitsPerSecond OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The output rate (bits per second) from this disk."
::= { diskPerfEntry 5 }
--CHASSIS HARDWARE TABLE--
chassisTable OBJECT-TYPE
SYNTAX SEQUENCE OF ChassisEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of chassis that comprise the node."
::= { node 51 }
ChassisEntry ::= SEQUENCE {
chassisNumber Integer32,
chassisConfigNumber DisplayString ,
chassisSerialNumber DisplayString,
chassisModel DisplayString,
chassisUnitIDLEDOn INTEGER
}
chassisEntry OBJECT-TYPE
SYNTAX ChassisEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A node chassis."
INDEX { chassisNumber }
::= { chassisTable 1 }
chassisNumber OBJECT-TYPE
SYNTAX Integer32(1..5)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A logical chassis number."
::= { chassisEntry 1 }
chassisConfigNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis configuration number."
::= { chassisEntry 2 }
chassisSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis serial number."
::= { chassisEntry 3 }
chassisModel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis model name."
::= { chassisEntry 4 }
chassisUnitIDLEDOn OBJECT-TYPE
SYNTAX INTEGER{na(-1),no(0),yes(1)}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates if the unit ID light on the chassis is lighted.
This is the blue service light on the back of the chassis.
A value of NA indicates that no Unit ID LED exists
on the chassis.
"
::= { chassisEntry 5 }
--DISKS HARDWARE TABLE--
diskTable OBJECT-TYPE
SYNTAX SEQUENCE OF DiskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of disk state and properties for all disk in the node
including expansion chassis."
::= { node 52 }
DiskEntry ::= SEQUENCE {
diskBay Integer32,
diskLogicalNumber Integer32,
diskChassisNumber Integer32,
diskDeviceName DisplayString,
diskStatus DisplayString,
diskModel DisplayString,
diskSerialNumber DisplayString,
diskFirmwareVersion DisplayString,
diskSizeBytes CounterBasedGauge64
}
diskEntry OBJECT-TYPE
SYNTAX DiskEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A disk."
INDEX { diskBay }
::= { diskTable 1 }
diskBay OBJECT-TYPE
SYNTAX Integer32(1..256)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bay that contains the disk."
::= { diskEntry 1 }
diskLogicalNumber OBJECT-TYPE
SYNTAX Integer32(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The disk logical identification number."
::= { diskEntry 2 }
diskChassisNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The chassis which contains the disk."
::= { diskEntry 3 }
diskDeviceName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The device name for this disk."
::= { diskEntry 4 }
diskStatus OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational status of the disk.
Gone drives are considered not part of /ifs.
Commonly returned values include (but not limited to):
HEALTHY - Drive is healthy
L3 - Drive is being used for L3 caching
DEAD - Drive is dead
SMARTFAIL - Drive is smartfailed"
::= { diskEntry 5 }
diskModel OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The manufacture and model name of the disk."
::= { diskEntry 6 }
diskSerialNumber OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the disk."
::= { diskEntry 7 }
diskFirmwareVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The firmware version installed on the disk."
::= { diskEntry 8 }
diskSizeBytes OBJECT-TYPE
SYNTAX CounterBasedGauge64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The size of the disk in bytes."
::= { diskEntry 9 }
--FAN HARDWARE TABLE--
fanTable OBJECT-TYPE
SYNTAX SEQUENCE OF FanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of fans in the node including expansion chassis."
::= { node 53 }
FanEntry ::= SEQUENCE {
fanNumber Integer32,
fanName DisplayString,
fanDescription DisplayString,
fanSpeed Integer32
}
fanEntry OBJECT-TYPE
SYNTAX FanEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A fan."
INDEX { fanNumber }
::= { fanTable 1 }
fanNumber OBJECT-TYPE
SYNTAX Integer32(1..99)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique identifer of the fan on this node.
Note: Numbers may correspond to different fans on different hardware."
::= { fanEntry 1 }
fanName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the fan."
::= { fanEntry 2 }
fanDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The description of the fan."
::= { fanEntry 3 }
fanSpeed OBJECT-TYPE
SYNTAX Integer32(0..100000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current speed of the fan in revolutions per minute."
::= { fanEntry 4 }
--TEMPERATURE SENSOR HARDWARE TABLE--
tempSensorTable OBJECT-TYPE
SYNTAX SEQUENCE OF TempSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of thermal sensors in the node including expansion chassis."
::= { node 54 }
TempSensorEntry ::= SEQUENCE {
tempSensorNumber Integer32,
tempSensorName DisplayString,
tempSensorDescription DisplayString,
tempSensorValue DisplayString
}
tempSensorEntry OBJECT-TYPE
SYNTAX TempSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A thermometer."
INDEX { tempSensorNumber }
::= { tempSensorTable 1 }
tempSensorNumber OBJECT-TYPE
SYNTAX Integer32(1..99)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique identifier of the sensor on this node."
::= { tempSensorEntry 1 }
tempSensorName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the temperature sensor."
::= { tempSensorEntry 2 }
tempSensorDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description of the temperature sensor."
::= { tempSensorEntry 3 }
tempSensorValue OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The cuurent reading of the temperature sensor in degrees celsius."
::= { tempSensorEntry 4 }
--POWER & ELECTRICAL SENSOR HARDWARE TABLE--
powerSensorTable OBJECT-TYPE
SYNTAX SEQUENCE OF PowerSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of all voltage and current sensors in the node
including expansion chassis."
::= { node 55 }
PowerSensorEntry ::= SEQUENCE {
powerSensorNumber Integer32,
powerSensorName DisplayString,
powerSensorDescription DisplayString,
powerSensorValue DisplayString
}
powerSensorEntry OBJECT-TYPE
SYNTAX PowerSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A power sensor."
INDEX { powerSensorNumber }
::= { powerSensorTable 1 }
powerSensorNumber OBJECT-TYPE
SYNTAX Integer32(1..99)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The unique identifier of the sensor on this node."
::= { powerSensorEntry 1 }
powerSensorName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The name of the sensor."
::= { powerSensorEntry 2 }
powerSensorDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The description of the sensor."
::= { powerSensorEntry 3 }
powerSensorValue OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current reading of the sensor in volts or amps."
::= { powerSensorEntry 4 }
--LOCAL--
--Other non-MIB definitions used for API identifiers
-- { local 1 } used in gssspi_set_cred_option() to pass binding info
credentialBindings OBJECT IDENTIFIER ::= { local 1 }
--Conformance Groups--
clusterGroups OBJECT IDENTIFIER ::= { conformance 1 }
nodeGroups OBJECT IDENTIFIER ::= { conformance 2 }
--CLUSTER GROUPS--
clusterStatusGroup OBJECT-GROUP
OBJECTS {
clusterName,
clusterHealth,
clusterGUID,
nodeCount,
configuredNodes,
onlineNodes,
offlineNodes }
STATUS current
DESCRIPTION
"A collection of objects that cover the status of a cluster."
::= { clusterGroups 1 }
clusterPerformanceGroups OBJECT IDENTIFIER ::= { clusterGroups 2 }
clusterIfsPerfGroup OBJECT-GROUP
OBJECTS {
clusterIfsInBytes,
clusterIfsInBitsPerSecond,
clusterIfsOutBytes,
clusterIfsOutBitsPerSecond }
STATUS current
DESCRIPTION
"A collection of objects that cover the cluster IFS performance."
::= { clusterPerformanceGroups 1 }
clusterNetworkPerfGroup OBJECT-GROUP
OBJECTS {
clusterNetworkInBytes,
clusterNetworkInBitsPerSecond,
clusterNetworkOutBytes,
clusterNetworkOutBitsPerSecond }
STATUS current
DESCRIPTION
"A collection of objects that cover the cluster network performance."
::= { clusterPerformanceGroups 2 }
clusterCPUPerfGroup OBJECT-GROUP
OBJECTS {
clusterCPUUser,
clusterCPUNice,
clusterCPUSystem,
clusterCPUInterrupt,
clusterCPUIdlePct }
STATUS current
DESCRIPTION
"A collection of objects that cover the CPU performance."
::= { clusterPerformanceGroups 3 }
ifsFilesystemGroup OBJECT-GROUP
OBJECTS {
ifsTotalBytes,
ifsUsedBytes,
ifsAvailableBytes,
ifsFreeBytes,
accessTimeEnabled,
accessTimeGracePeriod }
STATUS current
DESCRIPTION
"A collection of objects that cover the IFS filesystem."
::= { clusterGroups 3 }
licensesGroup OBJECT-GROUP
OBJECTS {
licenseModuleName,
licenseStatus,
licenseExpirationDate }
STATUS current
DESCRIPTION
"A collection of object that cover licenses."
::= { clusterGroups 5 }
quotasGroup OBJECT-GROUP
OBJECTS {
quotaType,
quotaID,
quotaIncludesSnapshotUsage,
quotaPath,
quotaHardThresholdDefined,
quotaHardThreshold,
quotaSoftThresholdDefined,
quotaSoftThreshold,
quotaAdvisoryThresholdDefined,
quotaAdvisoryThreshold,
quotaGracePeriod,
quotaUsage,
quotaUsageWithOverhead,
quotaInodeUsage,
quotaIncludesOverhead }
STATUS current
DESCRIPTION
"A collection of objects that cover quotas."
::= { clusterGroups 12 }
snapshotsGroup OBJECT IDENTIFIER ::= { clusterGroups 13 }
snapshotSettingsGroup OBJECT-GROUP
OBJECTS {
snapshotScheduledCreateEnabled,
snapshotScheduledDeleteEnabled,
snapshotReservedPct,
snapshotRootVisibilityNFS,
snapshotRootAccessNFS,
snapshotSubdirAccessNFS,
snapshotRootVisibilityCIFS,
snapshotRootAccessCIFS,
snapshotSubdirAccessCIFS,
snapshotRootVisibilityLocal,
snapshotRootAccessLocal,
snapshotSubdirAccessLocal }
STATUS current
DESCRIPTION
"A collection of objects that covers snapshot settings."
::= { snapshotsGroup 1 }
snapshotScheduleTableGroup OBJECT-GROUP
OBJECTS {
snapshotScheduleIndex,
snapshotScheduleName,
snapshotScheduleAlias,
snapshotScheduleNamingPattern,
snapshotScheduleSchedule,
snapshotScheduleExpiration,
snapshotSchedulePath }
STATUS current
DESCRIPTION
"A collection of objects that cover snapshot schedules."
::= { snapshotsGroup 2 }
snapshotTableGroup OBJECT-GROUP
OBJECTS {
snapshotName,
snapshotCreated,
snapshotExpires,
snapshotSize,
snapshotPath,
snapshotAliasFor,
snapshotLocked }
STATUS current
DESCRIPTION
"A collection of objects that covers the snapshots."
::= { snapshotsGroup 3 }
--NODE GROUPS--
nodeStatusGroup OBJECT-GROUP
OBJECTS {
nodeName,
nodeHealth,
nodeType,
readOnly }
STATUS current
DESCRIPTION
"A collection of objects that cover node status."
::= { nodeGroups 1 }
nodePerformanceGroup OBJECT IDENTIFIER ::= { nodeGroups 2 }
nodeIfsPerfGroup OBJECT-GROUP
OBJECTS {
nodeIfsInBytes,
nodeIfsInBitsPerSecond,
nodeIfsOutBytes,
nodeIfsOutBitsPerSecond }
STATUS current
DESCRIPTION
"A collection of objects that cover node IFS performance."
::= { nodePerformanceGroup 1 }
nodeNetworkPerfGroup OBJECT-GROUP
OBJECTS {
nodeNetworkInBytes,
nodeNetworkInBitsPerSecond,
nodeNetworkOutBytes,
nodeNetworkOutBitsPerSecond }
STATUS current
DESCRIPTION
"A collection of objects that cover node network performance."
::= { nodePerformanceGroup 2 }
nodeCPUPerfGroup OBJECT-GROUP
OBJECTS {
nodeCPUUser,
nodeCPUNice,
nodeCPUSystem,
nodeCPUInterrupt,
nodeCPUIdle,
-- nodeCPUPerfEntry
nodePerCPUUser,
nodePerCPUNice,
nodePerCPUSystem,
nodePerCPUInterrupt,
nodePerCPUIdle }
STATUS current
DESCRIPTION
"A collection of objects that cover node CPU performance."
::= { nodePerformanceGroup 3 }
nodeProtocolPerfTableGroup OBJECT-GROUP
OBJECTS {
protocolName,
protocolOpCount,
protocolOpsPerSecond,
inMinBytes,
inMaxBytes,
inAvgBytes,
inStdDevBytes,
inBitsPerSecond,
outMinBytes,
outMaxBytes,
outAvgBytes,
outStdDevBytes,
outBitsPerSecond,
latencyMin,
latencyMax,
latencyAverage,
latencyStdDev }
STATUS current
DESCRIPTION
"A collection of objects that cover protocol performance."
::= { nodePerformanceGroup 10 }
diskPerfTableGroup OBJECT-GROUP
OBJECTS {
diskPerfBay,
diskPerfDeviceName,
diskPerfOpsPerSecond,
diskPerfInBitsPerSecond,
diskPerfOutBitsPerSecond }
STATUS current
DESCRIPTION
"A collection of objects that cover disk performance."
::= { nodePerformanceGroup 52 }
chassisTableGroup OBJECT-GROUP
OBJECTS {
chassisNumber,
chassisConfigNumber,
chassisSerialNumber,
chassisModel,
chassisUnitIDLEDOn }
STATUS current
DESCRIPTION
"A collection of objects that cover chassis information."
::= { nodeGroups 51 }
diskTableGroup OBJECT-GROUP
OBJECTS {
diskBay,
diskLogicalNumber,
diskChassisNumber,
diskDeviceName,
diskStatus,
diskModel,
diskSerialNumber,
diskFirmwareVersion,
diskSizeBytes }
STATUS current
DESCRIPTION
"A collection of objects that cover disk information."
::= { nodeGroups 52 }
fanTableGroup OBJECT-GROUP
OBJECTS {
fanNumber,
fanName,
fanDescription,
fanSpeed }
STATUS current
DESCRIPTION
"A collection of objects that cover fan information."
::= { nodeGroups 53 }
tempSensorTableGroup OBJECT-GROUP
OBJECTS {
tempSensorNumber,
tempSensorName,
tempSensorDescription,
tempSensorValue }
STATUS current
DESCRIPTION
"A collection of objects that cover temperature sensor information."
::= { nodeGroups 54 }
powerSensorTableGroup OBJECT-GROUP
OBJECTS {
powerSensorNumber,
powerSensorName,
powerSensorDescription,
powerSensorValue }
STATUS current
DESCRIPTION
"A collection of objects that cover power sensor information."
::= { nodeGroups 55 }
isilonCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for Isilon OneFS."
MODULE -- This module
MANDATORY-GROUPS {
clusterStatusGroup,
clusterIfsPerfGroup,
clusterNetworkPerfGroup,
clusterCPUPerfGroup,
ifsFilesystemGroup,
licensesGroup,
quotasGroup,
snapshotSettingsGroup,
snapshotScheduleTableGroup,
snapshotTableGroup,
nodeStatusGroup,
nodeIfsPerfGroup,
nodeNetworkPerfGroup,
nodeCPUPerfGroup,
nodeProtocolPerfTableGroup,
diskPerfTableGroup,
chassisTableGroup,
diskTableGroup,
fanTableGroup,
tempSensorTableGroup,
powerSensorTableGroup }
::= { conformance 10 }
END
-- vim: set filetype=mib tabstop=4 expandtab nospell :miv --
|