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
|
GPFS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, Unsigned32, enterprises
FROM SNMPv2-SMI;
ibmGPFS MODULE-IDENTITY
LAST-UPDATED "200707020000Z"
ORGANIZATION "International Business Machines Corp."
CONTACT-INFO "Jeff Riegel
IBM Almaden Research Center
San Jose, CA, USA
E-mail: riegel@us.ibm.com"
DESCRIPTION "Configuration and status monitoring for
IBM GPFS cluster file system."
::= { ibmProd 212 }
ibm OBJECT IDENTIFIER ::= { enterprises 2 }
ibmProd OBJECT IDENTIFIER ::= { ibm 6 }
gpfsMIBObjects OBJECT IDENTIFIER ::= { ibmGPFS 1 }
-- Global scalars
gpfsGlobalMIBObjects OBJECT IDENTIFIER ::= { gpfsMIBObjects 1 }
gpfsSubagentVersion OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The version of the subagent currently running."
::= { gpfsGlobalMIBObjects 1 }
-- Tables
-- Cluster tables
gpfsClusterStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF GpfsClusterStatusEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This table contains cluster status information."
::= { gpfsMIBObjects 2 }
gpfsClusterConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF GpfsClusterConfigEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This table contains cluster configuration information."
::= { gpfsMIBObjects 3 }
-- Node tables
gpfsNodeStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF GpfsNodeEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This table contains the list of nodes belonging to this cluster."
::= { gpfsMIBObjects 4 }
gpfsNodeConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF GpfsNodeEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This table contains the list of nodes belonging to this cluster."
::= { gpfsMIBObjects 5 }
-- File system tables
gpfsFileSystemStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF GpfsFileSystemStatusEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This table contains the list of the file systems belonging to this cluster."
::= { gpfsMIBObjects 6 }
gpfsFileSystemPerfTable OBJECT-TYPE
SYNTAX SEQUENCE OF GpfsFileSystemPerfEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This table contains performance data for each file system in the cluster."
::= { gpfsMIBObjects 7 }
-- Storage pool table
gpfsStgPoolTable OBJECT-TYPE
SYNTAX SEQUENCE OF GpfsStgPoolEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The list of storage pools belonging to the file systems in this cluster."
::= { gpfsMIBObjects 8 }
-- Disk tables
gpfsDiskStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF GpfsDiskStatusEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This table contains the list of disks associated with the storage pools in this cluster."
::= { gpfsMIBObjects 9 }
gpfsDiskConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF GpfsDiskConfigEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This table contains the list of disks associated with the storage pools in this cluster."
::= { gpfsMIBObjects 10 }
gpfsDiskPerfTable OBJECT-TYPE
SYNTAX SEQUENCE OF GpfsDiskPerfEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This table contains the list of disks associated with the storage pools in this cluster."
::= { gpfsMIBObjects 11 }
-- Cluster Data
-- ------------
gpfsClusterStatusEntry OBJECT-TYPE
SYNTAX GpfsClusterStatusEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A conceptual row of the gpfsClusterTable containing information about a particular cluster."
INDEX {
gpfsClusterName,
}
::= { gpfsClusterStatusTable 1 }
GpfsClusterStatusEntry ::= SEQUENCE {
-- From SDR:
gpfsClusterName OCTET STRING,
gpfsClusterId OCTET STRING,
-- gpfsClusterType OCTET STRING,
-- From EE get clusterinfo:
gpfsClusterMinReleaseLevel OCTET STRING,
-- Subordinate counts:
gpfsClusterNumNodes Unsigned32,
gpfsClusterNumFileSystems Unsigned32
}
gpfsClusterConfigEntry OBJECT-TYPE
SYNTAX GpfsClusterConfigEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A conceptual row of the gpfsClusterTable containing information about a particular cluster."
INDEX {
gpfsClusterConfigName,
}
::= { gpfsClusterConfigTable 1 }
GpfsClusterConfigEntry ::= SEQUENCE {
-- From SDR:
gpfsClusterConfigName OCTET STRING,
gpfsClusterUidDomain OCTET STRING,
gpfsClusterPrimaryServer OCTET STRING,
gpfsClusterSecondaryServer OCTET STRING,
gpfsClusterRemoteShellCommand OCTET STRING,
gpfsClusterRemoteFileCopyCommand OCTET STRING,
-- From EE get clusterinfo:
gpfsClusterMaxBlockSize Unsigned32,
gpfsClusterDistributedTokenServer Unsigned32,
gpfsClusterFailureDetectionTime Unsigned32,
-- From SDR:
gpfsClusterTCPPort Unsigned32,
-- From EE get clusterinfo:
gpfsClusterMinMissedPingTimeout Unsigned32,
gpfsClusterMaxMissedPingTimeout Unsigned32
}
-- gpfsClusterStatusEntry fields
--------------------------------
gpfsClusterName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cluster name."
::= { gpfsClusterStatusEntry 1 }
gpfsClusterId OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cluster ID."
::= { gpfsClusterStatusEntry 2 }
gpfsClusterMinReleaseLevel OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The currently enabled cluster functionality level."
::= { gpfsClusterStatusEntry 3 }
gpfsClusterNumNodes OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of nodes that belong to the cluster."
::= { gpfsClusterStatusEntry 4 }
gpfsClusterNumFileSystems OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of file systems that belong to the cluster."
::= { gpfsClusterStatusEntry 5 }
-- gpfsClusterConfigEntry fields
--------------------------------
gpfsClusterConfigName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The cluster name."
::= { gpfsClusterConfigEntry 1 }
gpfsClusterUidDomain OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The UID domain name for the cluster."
::= { gpfsClusterConfigEntry 2 }
gpfsClusterRemoteShellCommand OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The remote shell command being used."
::= { gpfsClusterConfigEntry 3 }
gpfsClusterRemoteFileCopyCommand OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The remote file copy command being used."
::= { gpfsClusterConfigEntry 4 }
gpfsClusterPrimaryServer OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The primary GPFS cluster configuration server."
::= { gpfsClusterConfigEntry 5 }
gpfsClusterSecondaryServer OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The secondary GPFS cluster configuration server."
::= { gpfsClusterConfigEntry 6 }
gpfsClusterMaxBlockSize OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The maximum file system block size."
::= { gpfsClusterConfigEntry 7 }
gpfsClusterDistributedTokenServer OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates whether distributed token server is enabled."
::= { gpfsClusterConfigEntry 8 }
gpfsClusterFailureDetectionTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Used for tuning heartbeats and pings when disk fencing (persistent reserve) is used."
::= { gpfsClusterConfigEntry 9 }
gpfsClusterTCPPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The TCP port number."
::= { gpfsClusterConfigEntry 10 }
gpfsClusterMinMissedPingTimeout OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The lower bound on missed ping timeout (seconds)."
::= { gpfsClusterConfigEntry 11 }
gpfsClusterMaxMissedPingTimeout OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The upper bound on missed ping timeout (seconds)."
::= { gpfsClusterConfigEntry 12 }
-- Node Data
-- ----------
-- Node name, ID, and type are from SDR file
-- all other node data from EE "get nodes" command
gpfsNodeStatusEntry OBJECT-TYPE
SYNTAX GpfsNodeStatusEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A conceptual row of the gpfsNodeTable containing information about a particular node currently associated with the cluster."
INDEX {
gpfsNodeName,
}
::= { gpfsNodeStatusTable 1 }
gpfsNodeConfigEntry OBJECT-TYPE
SYNTAX GpfsNodeConfigEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A conceptual row of the gpfsNodeTable containing information about a particular node currently associated with the cluster."
INDEX {
gpfsNodeConfigName,
}
::= { gpfsNodeConfigTable 1 }
GpfsNodeStatusEntry ::= SEQUENCE {
-- From SDR:
gpfsNodeName OCTET STRING,
gpfsNodeIP OCTET STRING,
gpfsNodePlatform OCTET STRING,
-- gpfsNodeEndianess OCTET STRING,
-- From EE get nodes:
gpfsNodeStatus OCTET STRING,
gpfsNodeFailureCount Unsigned32,
gpfsNodeThreadWait Unsigned32,
gpfsNodeHealthy OCTET STRING,
gpfsNodeDiagnosis OCTET STRING,
-- From mmpmon nc:
gpfsNodeVersion OCTET STRING
}
GpfsNodeConfigEntry ::= SEQUENCE {
-- From SDR:
gpfsNodeConfigName OCTET STRING,
gpfsNodeType OCTET STRING,
-- From EE get nodes:
gpfsNodeAdmin OCTET STRING,
-- gpfsNodePort OCTET STRING,
-- From mmpmon nc:
gpfsNodePagePoolL Unsigned32,
gpfsNodePagePoolH Unsigned32,
gpfsNodePrefetchThreads Unsigned32,
gpfsNodeMaxMbps Unsigned32,
gpfsNodeMaxFilesToCache Unsigned32,
gpfsNodeMaxStatCache Unsigned32,
gpfsNodeWorker1Threads Unsigned32,
gpfsNodeDmapiEventTimeout Unsigned32,
gpfsNodeDmapiMountTimeout Unsigned32,
gpfsNodeDmapiSessFailureTimeout Unsigned32,
gpfsNodeNsdServerWaitTimeWindowOnMount Unsigned32,
gpfsNodeNsdServerWaitTimeForMount Unsigned32,
gpfsNodeUnmountOnDiskFail OCTET STRING
}
-- gpfsNodeStatusEntry fields
-- --------------------------
gpfsNodeName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The node name."
::= { gpfsNodeStatusEntry 1 }
gpfsNodeIP OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The node IP address."
::= { gpfsNodeStatusEntry 2 }
gpfsNodePlatform OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The operating system being used."
::= { gpfsNodeStatusEntry 3 }
gpfsNodeStatus OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The node status (for example, up or down)."
::= { gpfsNodeStatusEntry 4 }
gpfsNodeFailureCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of node failures."
::= { gpfsNodeStatusEntry 5 }
gpfsNodeThreadWait OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The longest hung thread's wait time (milliseconds)."
::= { gpfsNodeStatusEntry 6 }
gpfsNodeHealthy OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates whether the node is healthy in terms of hung threads. If there are hung threads, the value is 'no'."
::= { gpfsNodeStatusEntry 7 }
gpfsNodeDiagnosis OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Shows the number of hung threads and detail on the longest hung thread."
::= { gpfsNodeStatusEntry 8 }
gpfsNodeVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The GPFS product version."
::= { gpfsNodeStatusEntry 9 }
-- gpfsNodeConfigEntry fields
-- --------------------------
gpfsNodeConfigName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The node name."
::= { gpfsNodeConfigEntry 1 }
gpfsNodeType OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The node type (e.g., manager/client or quorum/nonquorum)."
::= { gpfsNodeConfigEntry 2 }
gpfsNodeAdmin OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates whether the node is one of the preferred admin nodes."
::= { gpfsNodeConfigEntry 3 }
gpfsNodePagePoolL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The size of the cache (low 32 bits)."
::= { gpfsNodeConfigEntry 4 }
gpfsNodePagePoolH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The size of the cache (high 32 bits)."
::= { gpfsNodeConfigEntry 5 }
gpfsNodePrefetchThreads OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of prefetch threads."
::= { gpfsNodeConfigEntry 6 }
gpfsNodeMaxMbps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "An estimate of how many megabytes of data can be transferred per second."
::= { gpfsNodeConfigEntry 7 }
gpfsNodeMaxFilesToCache OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of inodes to cache for recently-used files that have been closed."
::= { gpfsNodeConfigEntry 8 }
gpfsNodeMaxStatCache OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of inodes to keep in the stat cache."
::= { gpfsNodeConfigEntry 9 }
gpfsNodeWorker1Threads OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The maximum number of worker threads that may be started."
::= { gpfsNodeConfigEntry 10 }
gpfsNodeDmapiEventTimeout OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The maximum time the file operation threads will block while waiting for a DMAPI synchronous event (milliseconds)."
::= { gpfsNodeConfigEntry 11 }
gpfsNodeDmapiMountTimeout OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The maximum time that the mount operation will wait for a disposition for the mount event to be set (seconds)."
::= { gpfsNodeConfigEntry 12 }
gpfsNodeDmapiSessFailureTimeout OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The maximum time the file operation threads will wait for the recovery of the failed DMAPI session (seconds)."
::= { gpfsNodeConfigEntry 13 }
gpfsNodeNsdServerWaitTimeWindowOnMount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Specifies a window of time during which a mount can wait for NSD servers to come up (seconds)."
::= { gpfsNodeConfigEntry 14 }
gpfsNodeNsdServerWaitTimeForMount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The maximum time that the mount operation will wait for NSD servers to come up (seconds)."
::= { gpfsNodeConfigEntry 15 }
gpfsNodeUnmountOnDiskFail OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates how the GPFS daemon will respond when a disk failure is detected. If it is 'true', any disk failure will cause only the local node to forcibly unmount the file system that contains the failed disk."
::= { gpfsNodeConfigEntry 16 }
-- File System Data
-- ----------------
gpfsFileSystemStatusEntry OBJECT-TYPE
SYNTAX GpfsFileSystemStatusEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A conceptual row of the gpfsFileSystemStatusTable containing information about a particular file system currently associated with the cluster."
INDEX {
gpfsFileSystemName,
}
::= { gpfsFileSystemStatusTable 1 }
gpfsFileSystemPerfEntry OBJECT-TYPE
SYNTAX GpfsFileSystemPerfEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A conceptual row of the gpfsFileSystemPerfTable containing performance information about a particular file system currently associated with the cluster."
INDEX {
gpfsFileSystemPerfName,
}
::= { gpfsFileSystemPerfTable 1 }
GpfsFileSystemStatusEntry ::= SEQUENCE {
-- Name: from SDR file
gpfsFileSystemName OCTET STRING,
-- Status info from EE "get fs -b" command
gpfsFileSystemStatus OCTET STRING,
gpfsFileSystemXstatus OCTET STRING,
gpfsFileSystemTotalSpaceL Unsigned32,
gpfsFileSystemTotalSpaceH Unsigned32,
gpfsFileSystemNumTotalInodesL Unsigned32,
gpfsFileSystemNumTotalInodesH Unsigned32,
gpfsFileSystemFreeSpaceL Unsigned32,
gpfsFileSystemFreeSpaceH Unsigned32,
gpfsFileSystemNumFreeInodesL Unsigned32,
gpfsFileSystemNumFreeInodesH Unsigned32,
}
gpfsFileSystemName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The file system name."
::= { gpfsFileSystemStatusEntry 1 }
gpfsFileSystemStatus OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The status of the file system."
::= { gpfsFileSystemStatusEntry 2 }
gpfsFileSystemXstatus OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The executable status of the file system."
::= { gpfsFileSystemStatusEntry 3 }
gpfsFileSystemTotalSpaceL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total disk space of the filesystem in kilobytes
(low 32 bits)."
::= { gpfsFileSystemStatusEntry 4 }
gpfsFileSystemTotalSpaceH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total disk space of the filesystem in kilobytes (high 32 bits)."
::= { gpfsFileSystemStatusEntry 5 }
gpfsFileSystemNumTotalInodesL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total number of file system inodes (low 32 bits)."
::= { gpfsFileSystemStatusEntry 6 }
gpfsFileSystemNumTotalInodesH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total number of file system inodes (high 32 bits)."
::= { gpfsFileSystemStatusEntry 7 }
gpfsFileSystemFreeSpaceL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The free disk space of the filesystem in kilobytes
(low 32 bits)."
::= { gpfsFileSystemStatusEntry 8 }
gpfsFileSystemFreeSpaceH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The free disk space of the filesystem in kilobytes
(high 32 bits)."
::= { gpfsFileSystemStatusEntry 9 }
gpfsFileSystemNumFreeInodesL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of free file system inodes (low 32 bits)."
::= { gpfsFileSystemStatusEntry 10 }
gpfsFileSystemNumFreeInodesH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of free file system inodes (high 32 bits)."
::= { gpfsFileSystemStatusEntry 11 }
-- Filesystem performance data
GpfsFileSystemPerfEntry ::= SEQUENCE {
-- Performance data from mmpmon "gfis" command
gpfsFileSystemPerfName OCTET STRING,
gpfsFileSystemBytesReadL Unsigned32,
gpfsFileSystemBytesReadH Unsigned32,
gpfsFileSystemBytesCacheL Unsigned32,
gpfsFileSystemBytesCacheH Unsigned32,
gpfsFileSystemBytesWrittenL Unsigned32,
gpfsFileSystemBytesWrittenH Unsigned32,
gpfsFileSystemReads Unsigned32,
gpfsFileSystemCaches Unsigned32,
gpfsFileSystemWrites Unsigned32,
gpfsFileSystemOpenCalls Unsigned32,
gpfsFileSystemCloseCalls Unsigned32,
gpfsFileSystemReadCalls Unsigned32,
gpfsFileSystemWriteCalls Unsigned32,
gpfsFileSystemReaddirCalls Unsigned32,
gpfsFileSystemInodesWritten Unsigned32,
gpfsFileSystemInodesRead Unsigned32,
gpfsFileSystemInodesDeleted Unsigned32,
gpfsFileSystemInodesCreated Unsigned32,
gpfsFileSystemStatCacheHit Unsigned32,
gpfsFileSystemStatCacheMiss Unsigned32,
}
gpfsFileSystemPerfName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The file system name."
::= { gpfsFileSystemPerfEntry 1 }
gpfsFileSystemBytesReadL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes read from disk, not counting those read from cache (low 32 bits)."
::= { gpfsFileSystemPerfEntry 2 }
gpfsFileSystemBytesReadH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes read from disk, not counting those read from cache (high 32 bits)."
::= { gpfsFileSystemPerfEntry 3 }
gpfsFileSystemBytesCacheL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes read from the cache (low 32 bits)."
::= { gpfsFileSystemPerfEntry 4 }
gpfsFileSystemBytesCacheH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes read from the cache (high 32 bits)."
::= { gpfsFileSystemPerfEntry 5 }
gpfsFileSystemBytesWrittenL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes written, to both disk and cache
(low 32 bits)."
::= { gpfsFileSystemPerfEntry 6 }
gpfsFileSystemBytesWrittenH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes written, to both disk and cache
(high 32 bits)."
::= { gpfsFileSystemPerfEntry 7 }
gpfsFileSystemReads OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of read operations supplied from disk."
::= { gpfsFileSystemPerfEntry 8 }
gpfsFileSystemCaches OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of read operations supplied from cache."
::= { gpfsFileSystemPerfEntry 9 }
gpfsFileSystemWrites OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of write operations, to both disk and cache."
::= { gpfsFileSystemPerfEntry 10 }
gpfsFileSystemOpenCalls OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of file system open() calls."
::= { gpfsFileSystemPerfEntry 11 }
gpfsFileSystemCloseCalls OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of file system close() calls."
::= { gpfsFileSystemPerfEntry 12 }
gpfsFileSystemReadCalls OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of file system read calls."
::= { gpfsFileSystemPerfEntry 13 }
gpfsFileSystemWriteCalls OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of file system write calls."
::= { gpfsFileSystemPerfEntry 14 }
gpfsFileSystemReaddirCalls OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of file system readdir() calls."
::= { gpfsFileSystemPerfEntry 15 }
gpfsFileSystemInodesWritten OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of inode updates to disk."
::= { gpfsFileSystemPerfEntry 16 }
gpfsFileSystemInodesRead OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of inode reads."
::= { gpfsFileSystemPerfEntry 17 }
gpfsFileSystemInodesDeleted OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of inode deletions."
::= { gpfsFileSystemPerfEntry 18 }
gpfsFileSystemInodesCreated OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of inode creations."
::= { gpfsFileSystemPerfEntry 19 }
gpfsFileSystemStatCacheHit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of stat cache hits."
::= { gpfsFileSystemPerfEntry 20 }
gpfsFileSystemStatCacheMiss OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of stat cache misses."
::= { gpfsFileSystemPerfEntry 21 }
-- Storage pool table comes from EE "get pools" command
-- Storage Pool data
-- -----------------
-- Storage pool data comes from SDR and EE "get pools" command
GpfsStgPoolEntry ::= SEQUENCE {
-- From SDR:
gpfsStgPoolName OCTET STRING,
gpfsStgPoolFSName OCTET STRING,
-- From EE get pools:
gpfsStgPoolTotalSpaceL Unsigned32,
gpfsStgPoolTotalSpaceH Unsigned32,
gpfsStgPoolFreeSpaceL Unsigned32,
gpfsStgPoolFreeSpaceH Unsigned32,
-- Subordinate disk count:
gpfsStgPoolNumDisks Unsigned32,
}
gpfsStgPoolEntry OBJECT-TYPE
SYNTAX GpfsStgPoolEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A conceptual row of the gpfsStgPoolTable containing information about a particular storage pool."
INDEX {
gpfsStgPoolFSName,
gpfsStgPoolName,
}
::= { gpfsStgPoolTable 1 }
gpfsStgPoolName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of the storage pool."
::= { gpfsStgPoolEntry 1 }
gpfsStgPoolFSName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of the file system to which the storage pool belongs."
::= { gpfsStgPoolEntry 2 }
gpfsStgPoolTotalSpaceL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total disk space in the storage pool in kilobytes (low 32 bits)."
::= { gpfsStgPoolEntry 3 }
gpfsStgPoolTotalSpaceH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total disk space in the storage pool in kilobytes (high 32 bits)."
::= { gpfsStgPoolEntry 4 }
gpfsStgPoolFreeSpaceL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The free disk space in the storage pool in kilobytes (low 32 bits)."
::= { gpfsStgPoolEntry 5 }
gpfsStgPoolFreeSpaceH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The free disk space in the storage pool in kilobytes (high 32 bits)."
::= { gpfsStgPoolEntry 6 }
gpfsStgPoolNumDisks OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of disks in the storage pool."
::= { gpfsStgPoolEntry 7 }
-- Disk Data
-- ---------
gpfsDiskStatusEntry OBJECT-TYPE
SYNTAX GpfsDiskStatusEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A conceptual row of the gpfsStgPoolDiskTable containing information about a particular disk currently associated."
INDEX {
gpfsDiskFSName,
gpfsDiskStgPoolName,
gpfsDiskName,
}
::= { gpfsDiskStatusTable 1 }
gpfsDiskConfigEntry OBJECT-TYPE
SYNTAX GpfsDiskConfigEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A conceptual row of the gpfsDiskTable containing information about a particular disk currently associated."
INDEX {
gpfsDiskConfigFSName,
gpfsDiskConfigStgPoolName,
gpfsDiskConfigName,
}
::= { gpfsDiskConfigTable 1 }
gpfsDiskPerfEntry OBJECT-TYPE
SYNTAX GpfsDiskPerfEntry
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A conceptual row of the gpfsDiskPerfTable containing information about a particular disk currently associated."
INDEX {
gpfsDiskPerfFSName,
gpfsDiskPerfStgPoolName,
gpfsDiskPerfName,
}
::= { gpfsDiskPerfTable 1 }
-- Disk status data
GpfsDiskStatusEntry ::= SEQUENCE {
-- From SDR:
gpfsDiskName OCTET STRING,
gpfsDiskFSName OCTET STRING,
gpfsDiskStgPoolName OCTET STRING,
-- Disk data from EE "get fs" command
gpfsDiskStatus OCTET STRING,
gpfsDiskAvailability OCTET STRING,
-- gpfsDiskFailureGroupId Unsigned32,
gpfsDiskTotalSpaceL Unsigned32,
gpfsDiskTotalSpaceH Unsigned32,
gpfsDiskFullBlockFreeSpaceL Unsigned32,
gpfsDiskFullBlockFreeSpaceH Unsigned32,
gpfsDiskSubBlockFreeSpaceL Unsigned32,
gpfsDiskSubBlockFreeSpaceH Unsigned32
}
gpfsDiskName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The disk name."
::= { gpfsDiskStatusEntry 1 }
gpfsDiskFSName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of the file system to which the disk belongs."
::= { gpfsDiskStatusEntry 2 }
gpfsDiskStgPoolName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of the storage pool to which the disk belongs."
::= { gpfsDiskStatusEntry 3 }
gpfsDiskStatus OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The status of a disk (values: NotInUse, InUse, Suspended, BeingFormatted, BeingAdded, BeingEmptied, BeingDeleted, BeingDeleted-p, ReferencesBeingRemoved, BeingReplaced or Replacement)."
::= { gpfsDiskStatusEntry 4 }
gpfsDiskAvailability OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The availability of the disk (Unchanged, OK, Unavailable, Recovering)."
::= { gpfsDiskStatusEntry 5 }
--gpfsDiskFailureGroupId OBJECT-TYPE
-- SYNTAX Unsigned32
-- MAX-ACCESS read-only
-- STATUS current
-- DESCRIPTION "Failure group ID."
-- ::= { gpfsDiskStatusEntry 6 }
gpfsDiskTotalSpaceL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total disk space (kilobytes)."
::= { gpfsDiskStatusEntry 6 }
gpfsDiskTotalSpaceH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total disk space (kilobytes)."
::= { gpfsDiskStatusEntry 7 }
gpfsDiskFullBlockFreeSpaceL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The full block (unfragmented) free space in kilobytes (low 32 bits)."
::= { gpfsDiskStatusEntry 8 }
gpfsDiskFullBlockFreeSpaceH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The full block (unfragmented) free space in kilobytes (high 32 bits)."
::= { gpfsDiskStatusEntry 9 }
gpfsDiskSubBlockFreeSpaceL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The subblock (fragmented) free space in kilobytes (low 32 bits)."
::= { gpfsDiskStatusEntry 10 }
gpfsDiskSubBlockFreeSpaceH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The subblock (fragmented) free space in kilobytes (high 32 bits)."
::= { gpfsDiskStatusEntry 11 }
-- Disk configuration data
GpfsDiskConfigEntry ::= SEQUENCE {
-- From SDR:
gpfsDiskConfigName OCTET STRING,
gpfsDiskConfigFSName OCTET STRING,
gpfsDiskConfigStgPoolName OCTET STRING,
gpfsDiskMetadata OCTET STRING,
gpfsDiskData OCTET STRING,
}
gpfsDiskConfigName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The disk name."
::= { gpfsDiskConfigEntry 1 }
gpfsDiskConfigFSName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of the filesystem to which the disk belongs."
::= { gpfsDiskConfigEntry 2 }
gpfsDiskConfigStgPoolName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of the storage pool to which the disk belongs."
::= { gpfsDiskConfigEntry 3 }
gpfsDiskMetadata OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates whether the disk holds metadata."
::= { gpfsDiskConfigEntry 4 }
gpfsDiskData OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates whether the disk holds data."
::= { gpfsDiskConfigEntry 5 }
-- Disk performance data
GpfsDiskPerfEntry ::= SEQUENCE {
gpfsDiskPerfName OCTET STRING,
gpfsDiskPerfFSName OCTET STRING,
gpfsDiskPerfStgPoolName OCTET STRING,
-- Disk performance data from mmpmon "ds" command:
gpfsDiskReadTimeL Unsigned32,
gpfsDiskReadTimeH Unsigned32,
gpfsDiskWriteTimeL Unsigned32,
gpfsDiskWriteTimeH Unsigned32,
gpfsDiskLongestReadTimeL Unsigned32,
gpfsDiskLongestReadTimeH Unsigned32,
gpfsDiskLongestWriteTimeL Unsigned32,
gpfsDiskLongestWriteTimeH Unsigned32,
gpfsDiskShortestReadTimeL Unsigned32,
gpfsDiskShortestReadTimeH Unsigned32,
gpfsDiskShortestWriteTimeL Unsigned32,
gpfsDiskShortestWriteTimeH Unsigned32,
gpfsDiskReadBytesL Unsigned32,
gpfsDiskReadBytesH Unsigned32,
gpfsDiskWriteBytesL Unsigned32,
gpfsDiskWriteBytesH Unsigned32,
gpfsDiskReadOps Unsigned32,
gpfsDiskWriteOps Unsigned32
}
gpfsDiskPerfName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The disk name."
::= { gpfsDiskPerfEntry 1 }
gpfsDiskPerfFSName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of the filesystem to which the disk belongs."
::= { gpfsDiskPerfEntry 2 }
gpfsDiskPerfStgPoolName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of the storage pool to which the disk belongs."
::= { gpfsDiskPerfEntry 3 }
gpfsDiskReadTimeL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total time spent waiting for disk read operations (low 32 bits)."
::= { gpfsDiskPerfEntry 4 }
gpfsDiskReadTimeH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total time spent waiting for disk read operations (high 32 bits)."
::= { gpfsDiskPerfEntry 5 }
gpfsDiskWriteTimeL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total time spent waiting for disk write operations in microseconds (low 32 bits)."
::= { gpfsDiskPerfEntry 6 }
gpfsDiskWriteTimeH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total time spent waiting for disk write operations in microseconds (high 32 bits)."
::= { gpfsDiskPerfEntry 7 }
gpfsDiskLongestReadTimeL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The longest disk read time in microseconds (low 32 bits)."
::= { gpfsDiskPerfEntry 8 }
gpfsDiskLongestReadTimeH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The longest disk read time in microseconds (high 32 bits)."
::= { gpfsDiskPerfEntry 9 }
gpfsDiskLongestWriteTimeL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The longest disk write time in microseconds (low 32 bits)."
::= { gpfsDiskPerfEntry 10 }
gpfsDiskLongestWriteTimeH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The longest disk write time in microseconds (high 32 bits)."
::= { gpfsDiskPerfEntry 11 }
gpfsDiskShortestReadTimeL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The shortest disk read time in microseconds (low 32 bits)."
::= { gpfsDiskPerfEntry 12 }
gpfsDiskShortestReadTimeH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The shortest disk read time in microseconds (high 32 bits)."
::= { gpfsDiskPerfEntry 13 }
gpfsDiskShortestWriteTimeL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The shortest disk write time in microseconds (low 32 bits)."
::= { gpfsDiskPerfEntry 14 }
gpfsDiskShortestWriteTimeH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The shortest disk write time in microseconds (high 32 bits)."
::= { gpfsDiskPerfEntry 15 }
gpfsDiskReadBytesL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes read from the disk (low 32 bits)."
::= { gpfsDiskPerfEntry 16 }
gpfsDiskReadBytesH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes read from the disk (high 32 bits)."
::= { gpfsDiskPerfEntry 17 }
gpfsDiskWriteBytesL OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes written to the disk (low 32 bits)."
::= { gpfsDiskPerfEntry 18 }
gpfsDiskWriteBytesH OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of bytes written to the disk (high 32 bits)."
::= { gpfsDiskPerfEntry 19 }
gpfsDiskReadOps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of disk read operations."
::= { gpfsDiskPerfEntry 20 }
gpfsDiskWriteOps OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The number of disk write operations."
::= { gpfsDiskPerfEntry 21 }
-- Traps
gpfsTraps OBJECT IDENTIFIER ::= { ibmGPFS 0 }
gpfsTempObjs OBJECT IDENTIFIER ::= { ibmGPFS 2 }
gpfsNodeIpAddress OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A string that represents the IP address."
::= { gpfsTempObjs 1 }
gpfsDiskName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The disk name."
::= { gpfsTempObjs 2 }
gpfsDiskStatus OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of a disk (NotInUse, InUse, Suspended, BeingFormatted, BeingAdded, BeingEmptied, BeingDeleted, BeingDeleted-p, ReferencesBeingRemoved, BeingReplaced or Replacement)."
::= { gpfsTempObjs 3 }
gpfsDiskAvailability OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The availability of the disk (Unchanged, OK, Unavailable, Recovering)."
::= { gpfsTempObjs 4 }
gpfsDiskFailureGroupName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The disk's failure group name."
::= { gpfsTempObjs 5 }
gpfsDiskMetadata OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates whether the disk holds metadata."
::= { gpfsTempObjs 6 }
gpfsDiskData OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Indicates whether the disk holds data."
::= { gpfsTempObjs 7 }
gpfsFileSystemName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The file system name."
::= { gpfsTempObjs 8 }
gpfsSgmgrIpAddress OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the stripe group manager."
::= { gpfsTempObjs 9 }
gpfsPrevSgmgrIpAddress OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the previous stripe group manager."
::= { gpfsTempObjs 10 }
gpfsUserUnbalanced OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Can be all, some or none."
::= { gpfsTempObjs 11 }
gpfsMetaUnbalanced OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Can be all, some or none."
::= { gpfsTempObjs 12 }
gpfsUserIllReplicated OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Can be all, some or none."
::= { gpfsTempObjs 13 }
gpfsMetaIllReplicated OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Can be all, some or none."
::= { gpfsTempObjs 14 }
gpfsUserExposed OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Can be all, some or none."
::= { gpfsTempObjs 15 }
gpfsMetaExposed OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Can be all, some or none."
::= { gpfsTempObjs 16 }
gpfsTotalMemoryUsed OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of shared segment used by token manager for all stripe groups."
::= { gpfsTempObjs 17 }
gpfsTotalTmRequestsPerSecond OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The token manager requests per second for all stripe groups."
::= { gpfsTempObjs 18 }
gpfsWaitTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The time the hung thread has been waiting."
::= { gpfsTempObjs 19 }
gpfsDiagnosis OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Shows the number of hung threads and detail on the longest hung thread."
::= { gpfsTempObjs 20 }
gpfsStgPoolUtil OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The storage pool utilization by unit of percent."
::= { gpfsTempObjs 21 }
gpfsStgPoolName OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The storage pool name."
::= { gpfsTempObjs 22 }
gpfsMountTrap NOTIFICATION-TYPE
OBJECTS {
gpfsNodeIpAddress,
gpfsFileSystemName
}
STATUS current
DESCRIPTION
"This trap indicates that the specified file system has been mounted on the specified node. The event is sent by the mounting node."
::= { gpfsTraps 1 }
gpfsUnmountTrap NOTIFICATION-TYPE
OBJECTS {
gpfsNodeIpAddress,
gpfsFileSystemName
}
STATUS current
DESCRIPTION
"This trap indicates that the specified file system has been unmounted on the specified node. The event is sent by the unmounting node."
::= { gpfsTraps 2 }
gpfsAddDiskTrap NOTIFICATION-TYPE
OBJECTS {
gpfsNodeIpAddress,
gpfsFileSystemName,
gpfsDiskName
}
STATUS current
DESCRIPTION
"This trap indicates that the specified disk has been successfully added to the specified file system. The event is sent by the specified node which is the stripe group manager for the file system."
::= { gpfsTraps 3 }
gpfsDeleteDiskTrap NOTIFICATION-TYPE
OBJECTS {
gpfsNodeIpAddress,
gpfsFileSystemName,
gpfsDiskName
}
STATUS current
DESCRIPTION
"This trap indicates that the specified disk has been successfully deleted from the specified file system. The event is sent by the specified node which is the stripe group manager for the file system."
::= { gpfsTraps 4 }
gpfsChangeDiskTrap NOTIFICATION-TYPE
OBJECTS {
gpfsNodeIpAddress,
gpfsFileSystemName,
gpfsDiskName,
gpfsDiskStatus,
gpfsDiskAvailability,
gpfsDiskFailureGroupName,
gpfsDiskMetadata,
gpfsDiskData
}
STATUS current
DESCRIPTION
"This trap indicates that the specified disk has been successfully changed within the specified file system. The event is sent by the specified node which is the stripe group manager for the file system."
::= { gpfsTraps 5 }
gpfsSgmgrTakeoverTrap NOTIFICATION-TYPE
OBJECTS {
gpfsSgmgrIpAddress,
gpfsPrevSgmgrIpAddress,
gpfsFileSystemName
}
STATUS current
DESCRIPTION
"This trap indicates that a stripe group manager takeover has been successfully completed for the specified file system. The event is sent by the new stripe group manager."
::= { gpfsTraps 6 }
gpfsNodeFailureTrap NOTIFICATION-TYPE
OBJECTS {
gpfsNodeIpAddress
}
STATUS current
DESCRIPTION
"This trap indicates that the specified node has failed. The event is sent by the configuration manager."
::= { gpfsTraps 7 }
gpfsNodeRecoveryTrap NOTIFICATION-TYPE
OBJECTS {
gpfsNodeIpAddress
}
STATUS current
DESCRIPTION
"This trap indicates that the specified node has recovered normally. The event is sent by the configuration manager."
::= { gpfsTraps 8 }
gpfsFileSystemCreationTrap NOTIFICATION-TYPE
OBJECTS {
gpfsSgmgrIpAddress,
gpfsFileSystemName
}
STATUS current
DESCRIPTION
"This trap indicates that the specified file system has been successfully created. The event is sent by the file system's stripe group manager node."
::= { gpfsTraps 9 }
gpfsFileSystemDeletionTrap NOTIFICATION-TYPE
OBJECTS {
gpfsSgmgrIpAddress,
gpfsFileSystemName
}
STATUS current
DESCRIPTION
"This trap indicates that the specified file system has been successfully deleted. The event is sent by the file system's stripe group manager node."
::= { gpfsTraps 10 }
gpfsFileSystemStateChangeTrap NOTIFICATION-TYPE
OBJECTS {
gpfsFileSystemName,
gpfsUserUnbalanced,
gpfsMetaUnbalanced,
gpfsUserIllReplicated,
gpfsMetaIllReplicated,
gpfsUserExposed,
gpfsMetaExposed
}
STATUS current
DESCRIPTION
"This trap indicates that the specified file system has been successfully changed. The event is sent by the file system's stripe group manager node."
::= { gpfsTraps 11 }
gpfsNewConnectionTrap NOTIFICATION-TYPE
OBJECTS {
gpfsNodeIpAddress
}
STATUS current
DESCRIPTION
"This trap indicates that a new connection thread has been established between the events exporter and the management application. The event is sent by the collector node."
::= { gpfsTraps 12 }
gpfsEventCollectionBufferOverflowTrap NOTIFICATION-TYPE
OBJECTS {
gpfsNodeIpAddress
}
STATUS current
DESCRIPTION
"This trap indicates that the internal event collection buffer in the GPFS daemon has overflowed. The event is sent by the collector node."
::= { gpfsTraps 13 }
gpfsTokenManagerStatusTrap NOTIFICATION-TYPE
OBJECTS {
gpfsFileSystemName,
gpfsTotalMemoryUsed,
gpfsTotalTmRequestsPerSecond
}
STATUS current
DESCRIPTION
"This trap indicates the token manager status. It is sent every time the performance monitor thread wakes up (approximately 30 seconds)."
::= { gpfsTraps 14 }
gpfsHungThreadTrap NOTIFICATION-TYPE
OBJECTS {
gpfsNodeIpAddress,
gpfsWaitTime,
gpfsDiagnosis
}
STATUS current
DESCRIPTION
"This trap indicates the presence of a hung thread on the specified node."
::= { gpfsTraps 15 }
--gpfsFileSystemUtilizationTrap NOTIFICATION-TYPE
-- OBJECTS {
-- gpfsFileSystemName,
-- gpfsFileSystemUsage
-- }
-- STATUS current
-- DESCRIPTION
-- "This is the GPFS threshold trap for notifying the file system utilization."
-- ::= { gpfsTraps 16 }
gpfsStgPoolUtilizationTrap NOTIFICATION-TYPE
OBJECTS {
gpfsFileSystemName,
gpfsStgPoolName,
gpfsStgPoolUtil
}
STATUS current
DESCRIPTION
"This trap indicates that utilization of the specified storage pool (within the specified file system) has crossed the threshold. The StgPoolUtil indicates the current utilization of the storage pool as a percentage. The event is sent by the file system's stripe group manager."
::= { gpfsTraps 16 }
END
|