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
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
|
--
-- Copyright(C) 2003-2016 Server Technology, Inc.
--
Sentry3-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, NOTIFICATION-TYPE,
OBJECT-TYPE, enterprises FROM SNMPv2-SMI
DisplayString FROM SNMPv2-TC;
sentry3 MODULE-IDENTITY
LAST-UPDATED "201601251630Z" -- 25 January 2016
ORGANIZATION "Server Technology, Inc."
CONTACT-INFO
"Server Technology, Inc.
1040 Sandhill Road
Reno, NV 89521
Tel: (775) 284-2000
Fax: (775) 284-2065
Email: mibmaster@servertech.com"
DESCRIPTION
"This is the MIB module for the third generation of the
Sentry product family. This includes the Sentry Remote
Power Manager (RPM), Sentry Power Distribution Unit (PDU),
Sentry Environmental Monitor (EM), Sentry Smart and
Switched Cabinet Distribution Unit (CDU), and Sentry
Switched -48 VDC."
REVISION "201601251630Z" -- 25 January 2016
DESCRIPTION
"Adjusted the upper limit of infeedLoadValue to 60000.
Adjusted the upper limit of infeedLoadHighThresh to 600.
Adjusted the upper limit of infeedCapacity to 600."
REVISION "201406251200Z" -- 25 June 2014
DESCRIPTION
"Adjusted the upper limit of tempHumidSensorTempRecDelta
to 54."
REVISION "201401161800Z" -- 16 January 2014
DESCRIPTION
"Added an eventInformationGroup with two new objects:
eventStatusText and eventStatusCondition. Added these
objects to all traps and updated the trap annotations
to use the eventStatusText string value instead of the
integer value of the status object in the trap."
REVISION "201311250900Z" -- 25 November 2013
DESCRIPTION
"Added a new object: tempHumidSensorHumidRecDelta."
REVISION "201309161000Z" -- 16 September 2013
DESCRIPTION
"Adjusted the upper limit of infeedLoadValue to 30000.
Adjusted the upper limit of infeedLoadHighThresh to 300.
Adjusted the upper limit of infeedCapacity to 300.
Adjusted the upper limit of branchLoadValue to 4000."
REVISION "201302140930Z" -- 14 February 2013
DESCRIPTION
"Added a branch table with new objects for branch status
and current measurements. Added 'branchOnSense' and
'branchLoadSense' bits to infeedCapabilities. Added
'reading', 'offFuse', and 'onFuse' bits to infeedStatus.
Added branchStatusEvent and branchLoadEvent notifications.
Added 'outOfBalance' to the list of error conditions
enumerated by the towerStatus object."
REVISION "201211071400Z" -- 7 November 2012
DESCRIPTION
"Adjusted the upper limit of systemVersion to 80. Adjusted
the upper limit of infeedOutletCount and outletIndex to 64."
REVISION "201204181400Z" -- 18 April 2012
DESCRIPTION
"Adjusted the upper limit of outletIndex to 32."
REVISION "201201041100Z" -- 4 January 2012
DESCRIPTION
"Added 'nvmFail' to the list of error conditions enumerated
by the towerStatus object."
REVISION "201107111640Z" -- 11 July 2011
DESCRIPTION
"Added 'outletControlInhibit' to the list of key-activated
features enumerated by the systemFeatures object. Changed
the upper limit of tempHumidSensorTempRecDelta to 18 to
accommodate the maximum Fahrenheit value."
REVISION "201106151300Z" -- 15 June 2011
DESCRIPTION
"Added a new object: tempHumidSensorTempRecDelta."
REVISION "201105051100Z" -- 5 May 2011
DESCRIPTION
"Added several new objects: systemOutletSeqInterval,
systemOutletRebootDelay, systemConfigModifiedCount,
outletWakeupState, and outletPostOnDelay. Removed the
'snmpPOPS' feature-key activation requirement from
descriptions of POPS objects."
REVISION "201007071215Z" -- 7 July 2010
DESCRIPTION
"Added support for Per-Inlet Power Sensing (PIPS) hardware.
Added several new objects: towerVACapacity,
towerVACapacityUsed, towerActivePower, towerApparentPower,
towerPowerFactor, towerEnergy, towerLineFrequency,
infeedReactance, infeedPhaseCurrent, infeedPhaseVoltage,
infeedCapacityUsed, infeedLineID, infeedLineToLineID,
infeedPhaseID, infeedVACapacity, and infeedVACapacityUsed.
Changed the UNITS of infeedEnergy. Adjusted the limits of
INTEGER data types for various objects. Updated the
descriptions of various infeedTable objects to distinguish
between line and phase measurements with three-phase PIPS
hardware."
REVISION "200903101600Z" -- 10 March 2009
DESCRIPTION
"Added support for Per-Outlet Power Sensing (POPS) hardware.
Added several new objects: systemFeatures, systemFeatureKey,
infeedApparentPower, infeedPowerFactor, infeedCrestFactor,
infeedEnergy, outletCapacity, outletVoltage, outletPower,
outletApparentPower, outletPowerFactor, outletCrestFactor,
and outletEnergy. Added 'voltageSense' and 'powerSense'
bit definitions to the input feed and outlet capabilities
objects. Increased the size of systemVersion to 50."
REVISION "200805071520Z" -- 7 May 2008
DESCRIPTION
"Added systemAreaUnit and systemPowerFactor objects. Renamed
the systemWattsPerUnitArea object to systemWattsPerAreaUnit.
Changed systemArea from read-only to read-write."
REVISION "200707091445Z" -- 9 July 2007
DESCRIPTION
"Added support for products with fan rotation sensing and
internal temperature sensing. Added 'fanSense' and
'tempSense' bit definitions to the tower capabilities
object. Added 'fanFail' and 'overTemp' states to the
towerStatus object. Modified the description of the
towerStatusEvent trap to reflect these additions."
REVISION "200701091410Z" -- 9 January 2007
DESCRIPTION
"Added several new objects: systemArea, systemTotalPower,
systemWattsPerUnitArea, towerProductSN, towerModelNumber,
towerCapabilities, infeedCapacity, infeedVoltage, and
infeedPower. Added six states to the outletControlState
object."
REVISION "200607201200Z" -- 20 July 2006
DESCRIPTION
"Changed the upper limit of systemTowerCount from 2 to 4."
REVISION "200606120930Z" -- 12 June 2006
DESCRIPTION
"Added a tempHumidSensorTempScale object to select either
Celsius or Fahrenheit as the scale for temperature values.
To accommodate the maximum Fahrenheit value, the upper limit
of tempHumidSensorTempValue was changed to 2540, and the
upper limit of tempHumidSensorTempHighThresh was changed to
254. Removed 'Celsius' from the UNITS clause and description
of temperature objects. Added the tempHumidSensorTempScale
object to the tempHumidSensorTempEvent trap. Changed the
upper limit of towerIndex from 2 to 4, to accommodate new
products with additional link capabilities."
REVISION "200507271105Z" -- 27 July 2005
DESCRIPTION
"Changed the upper limit of tempHumidSensorTempLowThresh to
123. Changed the upper limit of tempHumidSensorTempValue
to 1235."
REVISION "200502181145Z" -- 18 February 2005
DESCRIPTION
"Added CDU products to the MIB description. Corrected syntax
of outletID to specify SIZE(2..4)."
REVISION "200501071220Z" -- 7 January 2005
DESCRIPTION
"Added a 'fusedBranch' bit definition to the outlet
capabilities object. Added 'offFuse' and 'onFuse' states
to the outlet status object. Modified the descriptions of
objects and traps to reflect support for these additions."
REVISION "200412091320Z" -- 9 December 2004
DESCRIPTION
"Corrected spelling errors. Removed product acronyms from the
trap annotations."
REVISION "200411111200Z" -- 11 November 2004
DESCRIPTION
"Changed the upper limit of tempHumidSensorTempHighThresh to
123. Renamed systemSerialNumber to systemNICSerialNumber."
REVISION "200311201300Z" -- 20 November 2003
DESCRIPTION
"Changed the MIB description to reflect that there are
multiple products in the Sentry product family supported by
this MIB."
REVISION "200310231900Z" -- 23 October 2003
DESCRIPTION
"Added annotations to the trap definitions. Added a
'reading' state to the outletStatus object. Renamed
'notificationGroup' to 'sentry3Traps'. Corrected the
the description of the tempHumidSensorStatusEvent trap."
REVISION "200310021100Z" -- 2 October 2003
DESCRIPTION
"Added a 'failSafe' bit definition to the infeed capabilities
object, and corrected the definition of the 'defaultOff'
infeed capabilities bit."
REVISION "200308271600Z" -- 27 August 2003
DESCRIPTION
"Added new bit definitions to the infeed and outlet
capabilities objects."
REVISION "200303281700Z" -- 28 March 2003
DESCRIPTION
"Added environmental monitor objects and traps."
REVISION "200303271700Z" -- 27 March 2003
DESCRIPTION
"Initial release."
::= { serverTech 3 }
serverTech OBJECT IDENTIFIER ::= { enterprises 1718 }
--
-- System Group
--
systemGroup OBJECT IDENTIFIER ::= { sentry3 1 }
systemVersion OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..80))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The firmware version of the system."
::= { systemGroup 1 }
systemNICSerialNumber OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the network interface card in the
system."
::= { systemGroup 2 }
systemLocation OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The location of the system."
::= { systemGroup 3 }
systemTowerCount OBJECT-TYPE
SYNTAX INTEGER(0..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of towers in the system."
::= { systemGroup 4 }
systemEnvMonCount OBJECT-TYPE
SYNTAX INTEGER(0..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of environmental monitors in the system."
::= { systemGroup 5 }
systemTotalPower OBJECT-TYPE
SYNTAX INTEGER(-1..150000)
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total power consumption of all of the input feeds in the
system. A non-negative value indicates the total power
consumption in Watts. A negative value indicates that the
total power consumption was not available."
::= { systemGroup 6 }
systemArea OBJECT-TYPE
SYNTAX INTEGER(0..1000)
UNITS "tenth area units"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The area that the footprint of the system occupies. A
non-zero non-negative value indicates the area in tenths of
area units as selected by the systemAreaUnit object. A zero
or negative value indicates that the area was not available."
::= { systemGroup 7 }
systemWattsPerAreaUnit OBJECT-TYPE
SYNTAX INTEGER(-1..1500000)
UNITS "Watts per area unit"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The system Watts per area unit. A non-negative value
indicates the power consumption per area unit as selected by
the systemAreaUnit object. A negative value indicates that
the power consumption per area unit was not available."
::= { systemGroup 8 }
systemAreaUnit OBJECT-TYPE
SYNTAX INTEGER {
squareMeter(0),
squareFoot(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The unit of area for the systemArea and systemWattsPerAreaUnit
objects. If the agent does not support this object, then the
unit of area is a square foot."
::= { systemGroup 9 }
systemPowerFactor OBJECT-TYPE
SYNTAX INTEGER(50..100)
UNITS "hundredths"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The power factor used in power calculations performed by the
system."
::= { systemGroup 10 }
systemFeatures OBJECT-TYPE
SYNTAX BITS {
smartLoadShedding(0),
snmpPOPS(1),
outletControlInhibit(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The key-activated features enabled in the system."
::= { systemGroup 11 }
systemFeatureKey OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..19))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A valid feature key written to this object will enable a
feature in the system. A valid feature key is in the form
xxxx-xxxx-xxxx-xxxx. A read of this object returns an
empty string."
::= { systemGroup 12 }
systemOutletSeqInterval OBJECT-TYPE
SYNTAX INTEGER(0..15)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The power-on sequencing interval for all outlets."
::= { systemGroup 13 }
systemOutletRebootDelay OBJECT-TYPE
SYNTAX INTEGER(5..600)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The reboot delay for all outlets."
::= { systemGroup 14 }
systemConfigModifiedCount OBJECT-TYPE
SYNTAX INTEGER(0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of times the system configuration has
changed."
::= { systemGroup 15 }
--
-- System Tables
--
systemTables OBJECT IDENTIFIER ::= { sentry3 2 }
--
-- Tower Table
--
towerTable OBJECT-TYPE
SYNTAX SEQUENCE OF TowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of towers."
::= { systemTables 1 }
towerEntry OBJECT-TYPE
SYNTAX TowerEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Row definition for the tower table."
INDEX { towerIndex }
::= { towerTable 1 }
TowerEntry ::= SEQUENCE {
towerIndex INTEGER,
towerID DisplayString,
towerName DisplayString,
towerStatus INTEGER,
towerInfeedCount INTEGER,
towerProductSN DisplayString,
towerModelNumber DisplayString,
towerCapabilities BITS,
towerVACapacity INTEGER,
towerVACapacityUsed INTEGER,
towerActivePower INTEGER,
towerApparentPower INTEGER,
towerPowerFactor INTEGER,
towerEnergy INTEGER,
towerLineFrequency INTEGER
}
towerIndex OBJECT-TYPE
SYNTAX INTEGER(0..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for the tower table."
::= { towerEntry 1 }
towerID OBJECT-TYPE
SYNTAX DisplayString(SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the tower."
::= { towerEntry 2 }
towerName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the tower."
::= { towerEntry 3 }
towerStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
noComm(1),
fanFail(2),
overTemp(3),
nvmFail(4),
outOfBalance(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational status of the tower."
::= { towerEntry 4 }
towerInfeedCount OBJECT-TYPE
SYNTAX INTEGER(0..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of input feeds on the tower."
::= { towerEntry 5 }
towerProductSN OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..16))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The product serial number of the tower."
::= { towerEntry 6 }
towerModelNumber OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The model number of the tower."
::= { towerEntry 7 }
towerCapabilities OBJECT-TYPE
SYNTAX BITS {
failSafe(0),
fuseSense(1),
directCurrent(2),
threePhase(3),
fanSense(4),
tempSense(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The capabilities of the tower."
::= { towerEntry 8 }
towerVACapacity OBJECT-TYPE
SYNTAX INTEGER(-1..50000)
UNITS "Volt-Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total apparent power capacity of the tower circuit.
A non-negative value indicates the maximum total apparent
power in Volt-Amps. A negative value indicates that the
total apparent power capacity was not available."
::= { towerEntry 9 }
towerVACapacityUsed OBJECT-TYPE
SYNTAX INTEGER(-1..1500)
UNITS "tenth percentage"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The used percentage of the tower circuit total apparent power
capacity (towerApparentPower / towerVACapacity x 100). A
non-negative value indicates the percentage of capacity used
in tenths. A negative value indicates that the percentage of
capacity used was not available."
::= { towerEntry 10 }
towerActivePower OBJECT-TYPE
SYNTAX INTEGER(-1..50000)
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total active power consumption of the tower circuit.
A non-negative value indicates the total active power
consumption in Watts. A negative value indicates that the
total active power consumption was not available."
::= { towerEntry 11 }
towerApparentPower OBJECT-TYPE
SYNTAX INTEGER(-1..50000)
UNITS "Volt-Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total apparent power consumption of the tower circuit.
A non-negative value indicates the total apparent power
consumption in Volt-Amps. A negative value indicates that
the total apparent power consumption was not available."
::= { towerEntry 12 }
towerPowerFactor OBJECT-TYPE
SYNTAX INTEGER(-1..100)
UNITS "hundredths"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The overall power factor of the tower circuit. A non-
negative value indicates the overall power factor in
hundredths. A negative value indicates that the overall
power factor was not able to be measured."
::= { towerEntry 13 }
towerEnergy OBJECT-TYPE
SYNTAX INTEGER(-1..2147483647)
UNITS "Kilowatt-Hours"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total energy consumption of the tower circuit. A non-
negative value indicates the total energy consumption in
Kilowatt-Hours. A negative value indicates that the total
energy consumption was not available."
::= { towerEntry 14 }
towerLineFrequency OBJECT-TYPE
SYNTAX INTEGER(-1..60)
UNITS "Hertz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The frequency of the input feed line voltage. A non-
negative value indicates the frequency in Hertz. A negative
value indicates that the frequency was not available."
::= { towerEntry 15 }
--
-- Input Feed Table
--
infeedTable OBJECT-TYPE
SYNTAX SEQUENCE OF InfeedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of input feeds."
::= { systemTables 2 }
infeedEntry OBJECT-TYPE
SYNTAX InfeedEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Row definition for the input feed table."
INDEX { towerIndex, infeedIndex }
::= { infeedTable 1 }
InfeedEntry ::= SEQUENCE {
infeedIndex INTEGER,
infeedID DisplayString,
infeedName DisplayString,
infeedCapabilities BITS,
infeedStatus INTEGER,
infeedLoadStatus INTEGER,
infeedLoadValue INTEGER,
infeedLoadHighThresh INTEGER,
infeedOutletCount INTEGER,
infeedCapacity INTEGER,
infeedVoltage INTEGER,
infeedPower INTEGER,
infeedApparentPower INTEGER,
infeedPowerFactor INTEGER,
infeedCrestFactor INTEGER,
infeedEnergy INTEGER,
infeedReactance INTEGER,
infeedPhaseVoltage INTEGER,
infeedPhaseCurrent INTEGER,
infeedCapacityUsed INTEGER,
infeedLineID DisplayString,
infeedLineToLineID DisplayString,
infeedPhaseID DisplayString,
infeedVACapacity INTEGER,
infeedVACapacityUsed INTEGER
}
infeedIndex OBJECT-TYPE
SYNTAX INTEGER(0..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for the input feed table."
::= { infeedEntry 1 }
infeedID OBJECT-TYPE
SYNTAX DisplayString(SIZE(2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the input feed."
::= { infeedEntry 2 }
infeedName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the input feed."
::= { infeedEntry 3 }
infeedCapabilities OBJECT-TYPE
SYNTAX BITS {
onSense(0),
loadSense(1),
powerControl(2),
failSafe(3),
defaultOff(4),
voltageSense(5),
powerSense(6),
branchOnSense(7),
branchLoadSense(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The capabilities of the input feed."
::= { infeedEntry 4 }
infeedStatus OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1),
offWait(2),
onWait(3),
offError(4),
onError(5),
noComm(6),
reading(7),
offFuse(8),
onFuse(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the input feed line. If the infeedCapabilities
'onSense' bit is TRUE, then all of the states are supported
and indicate the sensed state of the input feed. If the
infeedCapabilities 'onSense' bit is FALSE, then only the
'on' and 'noComm' states are supported, and 'on' indicates
a derived state, not a sensed state."
::= { infeedEntry 5 }
infeedLoadStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
notOn(1),
reading(2),
loadLow(3),
loadHigh(4),
overLoad(5),
readError(6),
noComm(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the load measured on the input feed line. If
the infeedCapabilities 'loadSense' bit is TRUE, then all of
the states are supported. If the infeedCapabilities
'loadSense' bit is FALSE, then only the 'normal' and 'noComm'
states are supported."
::= { infeedEntry 6 }
infeedLoadValue OBJECT-TYPE
SYNTAX INTEGER(-1..60000)
UNITS "hundredth Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The load measured on the input feed line. A non-negative
value indicates the measured load in hundredths of Amps. A
negative value indicates that a load value was not able to
be measured."
::= { infeedEntry 7 }
infeedLoadHighThresh OBJECT-TYPE
SYNTAX INTEGER(0..600)
UNITS "Amps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The load high threshold value of the input feed line in Amps."
::= { infeedEntry 8 }
infeedOutletCount OBJECT-TYPE
SYNTAX INTEGER(0..64)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of controlled and/or monitored outlets on the
input feed."
::= { infeedEntry 9 }
infeedCapacity OBJECT-TYPE
SYNTAX INTEGER(-1..600)
UNITS "Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The load capacity of the input feed line. A non-negative
value indicates the maximum load in Amps. A negative
value indicates that the capacity was not available."
::= { infeedEntry 10 }
infeedVoltage OBJECT-TYPE
SYNTAX INTEGER(-1..4800)
UNITS "tenth Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The line-to-line voltage of the input feed. A non-negative
value indicates the voltage in tenths of Volts. A negative
value indicates that the voltage was not available."
::= { infeedEntry 11 }
infeedPower OBJECT-TYPE
SYNTAX INTEGER(-1..25000)
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The active power consumption of the input feed phase. A non-
negative value indicates the active power consumption in
Watts. A negative value indicates that the active power
consumption was not available."
::= { infeedEntry 12 }
infeedApparentPower OBJECT-TYPE
SYNTAX INTEGER(-1..25000)
UNITS "Volt-Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The apparent power consumption of the input feed phase. A
non-negative value indicates the apparent power consumption
in Volt-Amps. A negative value indicates that the apparent
power consumption was not available."
::= { infeedEntry 13 }
infeedPowerFactor OBJECT-TYPE
SYNTAX INTEGER(-1..100)
UNITS "hundredths"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power factor of the input feed phase. A non-negative
value indicates the power factor in hundredths. A negative
value indicates that the power factor was not able to be
measured."
::= { infeedEntry 14 }
infeedCrestFactor OBJECT-TYPE
SYNTAX INTEGER(-1..1000)
UNITS "tenths"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The crest factor for the load of the input feed phase. A
non-negative value indicates the crest factor in tenths. A
negative value indicates that the crest factor was not able
to be measured."
::= { infeedEntry 15 }
infeedEnergy OBJECT-TYPE
SYNTAX INTEGER(-1..2147483647)
UNITS "tenth Kilowatt-Hours"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The energy consumption of the input feed phase. A non-
negative value indicates the energy consumption in tenths of
Kilowatt-Hours. A negative value indicates that the energy
consumption was not available."
::= { infeedEntry 16 }
infeedReactance OBJECT-TYPE
SYNTAX INTEGER {
unknown(0),
capacitive(1),
inductive(2),
resistive(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The characterization of the phase relation between the
voltage and current of the input feed phase."
::= { infeedEntry 17 }
infeedPhaseVoltage OBJECT-TYPE
SYNTAX INTEGER(-1..2640)
UNITS "tenth Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The voltage measured for the input feed phase. A non-
negative value indicates the voltage in tenths of Volts. A
negative value indicates that the voltage was not available."
::= { infeedEntry 18 }
infeedPhaseCurrent OBJECT-TYPE
SYNTAX INTEGER(-1..25500)
UNITS "hundredth Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current measured for the input feed phase. A non-
negative value indicates the measured load in hundredths of
Amps. A negative value indicates that a load value was not
able to be measured."
::= { infeedEntry 19 }
infeedCapacityUsed OBJECT-TYPE
SYNTAX INTEGER(-1..1500)
UNITS "tenth percentage"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The used percentage of the input feed line load capacity
(infeedLoadValue / infeedCapacity x 100). A non-negative
value indicates the percentage of capacity used in tenths.
A negative value indicates that the percentage of capacity
used was not available."
::= { infeedEntry 20 }
infeedLineID OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the input feed line."
::= { infeedEntry 21 }
infeedLineToLineID OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..7))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The line-to-line ID of the input feed."
::= { infeedEntry 22 }
infeedPhaseID OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..6))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the input feed phase."
::= { infeedEntry 23 }
infeedVACapacity OBJECT-TYPE
SYNTAX INTEGER(-1..25000)
UNITS "Volt-Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The apparent power capacity of the input feed circuit. A
non-negative value indicates the maximum apparent power in
Volt-Amps. A negative value indicates that the apparent
power capacity was not available."
::= { infeedEntry 24 }
infeedVACapacityUsed OBJECT-TYPE
SYNTAX INTEGER(-1..1500)
UNITS "tenth percentage"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The used percentage of the input feed circuit apparent power
capacity (infeedApparentPower / infeedVACapacity x 100). A
non-negative value indicates the percentage of capacity used
in tenths. A negative value indicates that the percentage of
capacity used was not available."
::= { infeedEntry 25 }
--
-- Outlet Table
--
outletTable OBJECT-TYPE
SYNTAX SEQUENCE OF OutletEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of outlets."
::= { systemTables 3 }
outletEntry OBJECT-TYPE
SYNTAX OutletEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Row definition for the outlet table."
INDEX { towerIndex, infeedIndex, outletIndex }
::= { outletTable 1 }
OutletEntry ::= SEQUENCE {
outletIndex INTEGER,
outletID DisplayString,
outletName DisplayString,
outletCapabilities BITS,
outletStatus INTEGER,
outletLoadStatus INTEGER,
outletLoadValue INTEGER,
outletLoadLowThresh INTEGER,
outletLoadHighThresh INTEGER,
outletControlState INTEGER,
outletControlAction INTEGER,
outletCapacity INTEGER,
outletVoltage INTEGER,
outletPower INTEGER,
outletApparentPower INTEGER,
outletPowerFactor INTEGER,
outletCrestFactor INTEGER,
outletEnergy INTEGER,
outletWakeupState INTEGER,
outletPostOnDelay INTEGER
}
outletIndex OBJECT-TYPE
SYNTAX INTEGER(0..64)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for the outlet table."
::= { outletEntry 1 }
outletID OBJECT-TYPE
SYNTAX DisplayString(SIZE(2..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the outlet."
::= { outletEntry 2 }
outletName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the outlet."
::= { outletEntry 3 }
outletCapabilities OBJECT-TYPE
SYNTAX BITS {
onSense(0),
loadSense(1),
powerControl(2),
shutdown(3),
defaultOn(4),
ownInfeed(5),
fusedBranch(6),
voltageSense(7),
powerSense(8)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The capabilities of the outlet."
::= { outletEntry 4 }
outletStatus OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1),
offWait(2),
onWait(3),
offError(4),
onError(5),
noComm(6),
reading(7),
offFuse(8),
onFuse(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the outlet. If the outletCapabilities
'onSense' bit is TRUE, then the state indicates the sensed
state of the outlet, not a derived state, and 'offError'
and 'onError' are supported to indicate a mismatch between
the control and sensed state. If the outletCapabilities
'fusedBranch' bit is TRUE, then the outlet is on a fused
branch circuit that can detect the fuse state, and 'offFuse'
and 'onFuse' are supported to indicate a fuse error."
::= { outletEntry 5 }
outletLoadStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
notOn(1),
reading(2),
loadLow(3),
loadHigh(4),
overLoad(5),
readError(6),
noComm(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the load measured on the outlet. If the
outletCapabilities 'loadSense' bit is TRUE, then all of the
states are supported. If the outletCapabilities 'loadSense'
bit is FALSE, then only the 'normal' and 'noComm' states are
supported."
::= { outletEntry 6 }
outletLoadValue OBJECT-TYPE
SYNTAX INTEGER(-1..25500)
UNITS "hundredth Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The load measured on the outlet. A non-negative value
indicates the measured load in hundredths of Amps. A
negative value indicates that a load value was not able to
be measured."
::= { outletEntry 7 }
outletLoadLowThresh OBJECT-TYPE
SYNTAX INTEGER(0..255)
UNITS "Amps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The load low threshold value of the outlet in Amps."
::= { outletEntry 8 }
outletLoadHighThresh OBJECT-TYPE
SYNTAX INTEGER(0..255)
UNITS "Amps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The load high threshold value of the outlet in Amps."
::= { outletEntry 9 }
outletControlState OBJECT-TYPE
SYNTAX INTEGER {
idleOff(0),
idleOn(1),
wakeOff(2),
wakeOn(3),
off(4),
on(5),
lockedOff(6),
lockedOn(7),
reboot(8),
shutdown(9),
pendOn(10),
pendOff(11),
minimumOff(12),
minimumOn(13),
eventOff(14),
eventOn(15),
eventReboot(16),
eventShutdown(17)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The control state of the outlet. The supported states are
dependent upon the outletCapabilities 'powerControl' and
'shutdown' bits, as well as the supported features of the
firmware version."
::= { outletEntry 10 }
outletControlAction OBJECT-TYPE
SYNTAX INTEGER {
none(0),
on(1),
off(2),
reboot(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An action to change the control state of the outlet. If
the outletCapabilities 'powerControl' bit is TRUE, then the
'on', 'off', and 'reboot' actions can be used to change the
control state of the outlet. If the outletCapabilities
'powerControl' bit is FALSE, then the actions have no
effect."
::= { outletEntry 11 }
outletCapacity OBJECT-TYPE
SYNTAX INTEGER(-1..255)
UNITS "Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The load capacity of the outlet. A non-negative value
indicates the maximum load in Amps. A negative value
indicates that the capacity was not available."
::= { outletEntry 12 }
outletVoltage OBJECT-TYPE
SYNTAX INTEGER(-1..2640)
UNITS "tenth Volts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The voltage of the outlet. A non-negative value indicates
the voltage in tenths of Volts. A negative value indicates
that the voltage was not available."
::= { outletEntry 13 }
outletPower OBJECT-TYPE
SYNTAX INTEGER(-1..10000)
UNITS "Watts"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The active power consumption of the device plugged into the
outlet. A non-negative value indicates the active power
consumption in Watts. A negative value indicates that the
active power consumption was not available."
::= { outletEntry 14 }
outletApparentPower OBJECT-TYPE
SYNTAX INTEGER(-1..10000)
UNITS "Volt-Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The apparent power consumption of the device plugged into
the outlet. A non-negative value indicates the apparent
power consumption in Volt-Amps. A negative value indicates
that the apparent power consumption was not available."
::= { outletEntry 15 }
outletPowerFactor OBJECT-TYPE
SYNTAX INTEGER(-1..100)
UNITS "hundredths"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The power factor of the device plugged into the outlet. A
non-negative value indicates the power factor in hundredths.
A negative value indicates that the power factor was not able
to be measured."
::= { outletEntry 16 }
outletCrestFactor OBJECT-TYPE
SYNTAX INTEGER(-1..1000)
UNITS "tenths"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The crest factor for the load of the device plugged into the
outlet. A non-negative value indicates the crest factor in
tenths. A negative value indicates that the crest factor
was not able to be measured."
::= { outletEntry 17 }
outletEnergy OBJECT-TYPE
SYNTAX INTEGER(-1..2147483647)
UNITS "Watt-Hours"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The energy consumption of the device plugged into the outlet.
A non-negative value indicates the energy consumption in
Watt-Hours. A negative value indicates that the energy
consumption was not available."
::= { outletEntry 18 }
outletWakeupState OBJECT-TYPE
SYNTAX INTEGER {
last(1),
off(2),
on(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The wakeup state of the outlet."
::= { outletEntry 19 }
outletPostOnDelay OBJECT-TYPE
SYNTAX INTEGER(0..900)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The post-on delay of the outlet."
::= { outletEntry 20 }
--
-- Environmental Monitor Table
--
envMonTable OBJECT-TYPE
SYNTAX SEQUENCE OF EnvMonEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of environmental monitors."
::= { systemTables 4 }
envMonEntry OBJECT-TYPE
SYNTAX EnvMonEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Row definition for the environmental monitor table."
INDEX { envMonIndex }
::= { envMonTable 1 }
EnvMonEntry ::= SEQUENCE {
envMonIndex INTEGER,
envMonID DisplayString,
envMonName DisplayString,
envMonStatus INTEGER,
envMonWaterSensorName DisplayString,
envMonWaterSensorStatus INTEGER,
envMonADCName DisplayString,
envMonADCStatus INTEGER,
envMonADCCount INTEGER,
envMonADCLowThresh INTEGER,
envMonADCHighThresh INTEGER,
envMonTempHumidSensorCount INTEGER,
envMonContactClosureCount INTEGER
}
envMonIndex OBJECT-TYPE
SYNTAX INTEGER(0..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for the environmental monitor table."
::= { envMonEntry 1 }
envMonID OBJECT-TYPE
SYNTAX DisplayString(SIZE(1))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the environmental monitor."
::= { envMonEntry 2 }
envMonName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the environmental monitor."
::= { envMonEntry 3 }
envMonStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
noComm(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational status of the environmental monitor."
::= { envMonEntry 4 }
envMonWaterSensorName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the water sensor."
::= { envMonEntry 5 }
envMonWaterSensorStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
alarm(1),
noComm(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the water sensor."
::= { envMonEntry 6 }
envMonADCName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the analog-to-digital converter."
::= { envMonEntry 7 }
envMonADCStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
reading(1),
countLow(2),
countHigh(3),
readError(4),
noComm(5)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the analog-to-digital converter."
::= { envMonEntry 8 }
envMonADCCount OBJECT-TYPE
SYNTAX INTEGER(-1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 8-bit count value from the analog-to-digital converter.
A non-negative value indicates the digital value retrieved
from the ADC. A negative value indicates that a digital
value was not able to be retrieved."
::= { envMonEntry 9 }
envMonADCLowThresh OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The 8-bit count low threshold value of the analog-to-digital
converter."
::= { envMonEntry 10 }
envMonADCHighThresh OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The 8-bit count high threshold value of the analog-to-digital
converter."
::= { envMonEntry 11 }
envMonTempHumidSensorCount OBJECT-TYPE
SYNTAX INTEGER(0..2)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of temperature/humidity sensors on the
environmental monitor."
::= { envMonEntry 12 }
envMonContactClosureCount OBJECT-TYPE
SYNTAX INTEGER(0..4)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of contact closures on the environmental
monitor."
::= { envMonEntry 13 }
--
-- Temperature/Humidity Sensor Table
--
tempHumidSensorTable OBJECT-TYPE
SYNTAX SEQUENCE OF TempHumidSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of temperature/humidity sensors."
::= { systemTables 5 }
tempHumidSensorEntry OBJECT-TYPE
SYNTAX TempHumidSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Row definition for the temperature/humidity sensor table."
INDEX { envMonIndex, tempHumidSensorIndex }
::= { tempHumidSensorTable 1 }
TempHumidSensorEntry ::= SEQUENCE {
tempHumidSensorIndex INTEGER,
tempHumidSensorID DisplayString,
tempHumidSensorName DisplayString,
tempHumidSensorStatus INTEGER,
tempHumidSensorTempStatus INTEGER,
tempHumidSensorTempValue INTEGER,
tempHumidSensorTempLowThresh INTEGER,
tempHumidSensorTempHighThresh INTEGER,
tempHumidSensorHumidStatus INTEGER,
tempHumidSensorHumidValue INTEGER,
tempHumidSensorHumidLowThresh INTEGER,
tempHumidSensorHumidHighThresh INTEGER,
tempHumidSensorTempScale INTEGER,
tempHumidSensorTempRecDelta INTEGER,
tempHumidSensorHumidRecDelta INTEGER
}
tempHumidSensorIndex OBJECT-TYPE
SYNTAX INTEGER(0..2)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for the temperature/humidity sensor table."
::= { tempHumidSensorEntry 1 }
tempHumidSensorID OBJECT-TYPE
SYNTAX DisplayString(SIZE(2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the temperature/humidity sensor."
::= { tempHumidSensorEntry 2 }
tempHumidSensorName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the temperature/humidity sensor."
::= { tempHumidSensorEntry 3 }
tempHumidSensorStatus OBJECT-TYPE
SYNTAX INTEGER {
found(0),
notFound(1),
lost(2),
noComm(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational status of the temperature/humidity sensor."
::= { tempHumidSensorEntry 4 }
tempHumidSensorTempStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
notFound(1),
reading(2),
tempLow(3),
tempHigh(4),
readError(5),
lost(6),
noComm(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the temperature sensor."
::= { tempHumidSensorEntry 5 }
tempHumidSensorTempValue OBJECT-TYPE
SYNTAX INTEGER(-1..2540)
UNITS "tenth degrees"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature measured by the sensor. A non-negative value
indicates the measured temperature in tenths of degrees, using
the scale selected by tempHumidSensorTempScale. If the agent
does not support the tempHumidSensorTempScale object, then the
temperature scale used is Celsius. A negative value indicates
that a temperature value was not able to be measured."
::= { tempHumidSensorEntry 6 }
tempHumidSensorTempLowThresh OBJECT-TYPE
SYNTAX INTEGER(0..254)
UNITS "degrees"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The temperature low threshold value of the sensor in degrees,
using the scale selected by tempHumidSensorTempScale. If the
agent does not support the tempHumidSensorTempScale object,
then the temperature scale used is Celsius."
::= { tempHumidSensorEntry 7 }
tempHumidSensorTempHighThresh OBJECT-TYPE
SYNTAX INTEGER(0..254)
UNITS "degrees"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The temperature high threshold value of the sensor in degrees,
using the scale selected by tempHumidSensorTempScale. If the
agent does not support the tempHumidSensorTempScale object,
then the temperature scale used is Celsius."
::= { tempHumidSensorEntry 8 }
tempHumidSensorHumidStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
notFound(1),
reading(2),
humidLow(3),
humidHigh(4),
readError(5),
lost(6),
noComm(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the humidity sensor."
::= { tempHumidSensorEntry 9 }
tempHumidSensorHumidValue OBJECT-TYPE
SYNTAX INTEGER(-1..100)
UNITS "percentage relative humidity"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The humidity measured by the sensor. A non-negative value
indicates the measured humidity in percentage relative
humidity. A negative value indicates that a humidity value
was not able to be measured."
::= { tempHumidSensorEntry 10 }
tempHumidSensorHumidLowThresh OBJECT-TYPE
SYNTAX INTEGER(0..100)
UNITS "percentage relative humidity"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The humidity low threshold value of the sensor in percentage
relative humidity."
::= { tempHumidSensorEntry 11 }
tempHumidSensorHumidHighThresh OBJECT-TYPE
SYNTAX INTEGER(0..100)
UNITS "percentage relative humidity"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The humidity low threshold value of the sensor in percentage
relative humidity."
::= { tempHumidSensorEntry 12 }
tempHumidSensorTempScale OBJECT-TYPE
SYNTAX INTEGER {
celsius(0),
fahrenheit(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The scale used for temperature values. This is a global
setting for all temperature values in the system. If the
agent does not support this object, then the temperature
scale used is Celsius."
::= { tempHumidSensorEntry 13 }
tempHumidSensorTempRecDelta OBJECT-TYPE
SYNTAX INTEGER(0..54)
UNITS "degrees"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The temperature recovery delta (hysteresis) value of the
sensor in degrees, using the scale selected by
tempHumidSensorTempScale."
::= { tempHumidSensorEntry 14 }
tempHumidSensorHumidRecDelta OBJECT-TYPE
SYNTAX INTEGER(0..20)
UNITS "percentage relative humidity"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The humidity recovery delta (hysteresis) value of the
sensor in percentage relative humidity."
::= { tempHumidSensorEntry 15 }
--
-- Contact Closure Table
--
contactClosureTable OBJECT-TYPE
SYNTAX SEQUENCE OF ContactClosureEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of contact closures."
::= { systemTables 6 }
contactClosureEntry OBJECT-TYPE
SYNTAX ContactClosureEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Row definition for the contact closure table."
INDEX { envMonIndex, contactClosureIndex }
::= { contactClosureTable 1 }
ContactClosureEntry ::= SEQUENCE {
contactClosureIndex INTEGER,
contactClosureID DisplayString,
contactClosureName DisplayString,
contactClosureStatus INTEGER
}
contactClosureIndex OBJECT-TYPE
SYNTAX INTEGER(0..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for the contact closure table."
::= { contactClosureEntry 1 }
contactClosureID OBJECT-TYPE
SYNTAX DisplayString(SIZE(2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the contact closure."
::= { contactClosureEntry 2 }
contactClosureName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the contact closure."
::= { contactClosureEntry 3 }
contactClosureStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
alarm(1),
noComm(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the contact closure."
::= { contactClosureEntry 4 }
--
-- Branch Table
--
branchTable OBJECT-TYPE
SYNTAX SEQUENCE OF BranchEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of branches."
::= { systemTables 7 }
branchEntry OBJECT-TYPE
SYNTAX BranchEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Row definition for the branch table."
INDEX { towerIndex, infeedIndex, branchIndex }
::= { branchTable 1 }
BranchEntry ::= SEQUENCE {
branchIndex INTEGER,
branchID DisplayString,
branchName DisplayString,
branchCapabilities BITS,
branchStatus INTEGER,
branchLoadStatus INTEGER,
branchLoadValue INTEGER,
branchLoadHighThresh INTEGER,
branchCapacity INTEGER
}
branchIndex OBJECT-TYPE
SYNTAX INTEGER(0..4)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index for the branch table."
::= { branchEntry 1 }
branchID OBJECT-TYPE
SYNTAX DisplayString(SIZE(3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ID of the branch."
::= { branchEntry 2 }
branchName OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..24))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The name of the branch."
::= { branchEntry 3 }
branchCapabilities OBJECT-TYPE
SYNTAX BITS {
onSense(0),
loadSense(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The capabilities of the branch."
::= { branchEntry 4 }
branchStatus OBJECT-TYPE
SYNTAX INTEGER {
off(0),
on(1),
offWait(2),
onWait(3),
offError(4),
onError(5),
noComm(6),
reading(7),
offFuse(8),
onFuse(9)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the branch."
::= { branchEntry 5 }
branchLoadStatus OBJECT-TYPE
SYNTAX INTEGER {
normal(0),
notOn(1),
reading(2),
loadLow(3),
loadHigh(4),
overLoad(5),
readError(6),
noComm(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status of the load measured on the branch."
::= { branchEntry 6 }
branchLoadValue OBJECT-TYPE
SYNTAX INTEGER(-1..4000)
UNITS "hundredth Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The load measured on the branch. A non-negative
value indicates the measured load in hundredths of Amps. A
negative value indicates that a load value was not able to
be measured."
::= { branchEntry 7 }
branchLoadHighThresh OBJECT-TYPE
SYNTAX INTEGER(0..40)
UNITS "Amps"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The load high threshold value of the branch in Amps."
::= { branchEntry 8 }
branchCapacity OBJECT-TYPE
SYNTAX INTEGER(-1..40)
UNITS "Amps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The load capacity of the branch. A non-negative value
indicates the maximum load in Amps. A negative value
indicates that the capacity was not available."
::= { branchEntry 9 }
--
-- Event Information Group
--
eventInformationGroup OBJECT IDENTIFIER ::= { sentry3 99 }
eventStatusText OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..20))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The text representation of the enumerated integer value of
the status object included in a trap. The value of this
object is set only when sent with a trap. A get of this
object will return a NULL string."
::= { eventInformationGroup 1 }
eventStatusCondition OBJECT-TYPE
SYNTAX INTEGER {
nonError(0),
error(1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The condition of the enumerated integer value of the status
object included in a trap. The value of this object is set
only when sent with a trap. A get of this object will
return zero."
::= { eventInformationGroup 2 }
--
-- Notifications
--
sentry3Traps OBJECT IDENTIFIER ::= { sentry3 100 }
events OBJECT IDENTIFIER ::= { sentry3Traps 0 }
-- the 0 is for V1 compatibility
-- Tower Traps
towerStatusEvent NOTIFICATION-TYPE
OBJECTS {
systemLocation,
towerID,
towerName,
towerStatus,
eventStatusText,
eventStatusCondition
}
STATUS current
DESCRIPTION
"Tower status event. If enabled, this trap is sent when the
towerStatus indicates an error state ('noComm', 'fanFail',
'overTemp', 'nvmFail', or 'outOfBalance'). This trap is
repeated periodically while the towerStatus remains in an
error state. If the towerStatus returns to a non-error
state ('normal'), this trap is sent once more with the
non-error towerStatus, and then stops being repeated.
While the towerStatus indicates a 'noComm' error state, all
status and load traps are suppressed for input feeds and
outlets on the tower."
--#TYPE "Sentry: Tower Status Event."
--#SUMMARY "Status of Tower '%s' (%s) is '%s'."
--#ARGUMENTS { 2, 1, 4 }
--#SEVERITY CRITICAL
--#GENERIC 6
--#CATEGORY "Error Events"
--#SOURCE_ID "A"
--#TIMEINDEX 255
--#HELP ""
--#HELPTAG 0
--#STATE UNKNOWN
::= { events 1 }
-- Input Feed Traps
infeedStatusEvent NOTIFICATION-TYPE
OBJECTS {
systemLocation,
infeedID,
infeedName,
infeedStatus,
eventStatusText,
eventStatusCondition
}
STATUS current
DESCRIPTION
"Input feed status event. If enabled, this trap is sent when
the infeedStatus indicates an error state ('offError',
'onError', 'noComm', 'offFuse', or 'onFuse'). This trap is
repeated periodically while the infeedStatus remains in an
error state. If the infeedStatus returns to a non-error
state ('off' or 'on'), this trap is sent once more with the
non-error infeedStatus, and then stops being repeated.
While the infeedStatus indicates an error state, load
traps are suppressed for the input feed, and, if the
infeedCapabilities 'failSafe' bit is FALSE, all status and
load traps are suppressed for outlets on the input feed."
--#TYPE "Sentry: Input Feed Status Event."
--#SUMMARY "Status of Input Feed '%s' (%s) is '%s'."
--#ARGUMENTS { 2, 1, 4 }
--#SEVERITY CRITICAL
--#GENERIC 6
--#CATEGORY "Error Events"
--#SOURCE_ID "A"
--#TIMEINDEX 255
--#HELP ""
--#HELPTAG 0
--#STATE UNKNOWN
::= { events 2 }
infeedLoadEvent NOTIFICATION-TYPE
OBJECTS {
systemLocation,
infeedID,
infeedName,
infeedLoadStatus,
infeedLoadValue,
infeedLoadHighThresh,
eventStatusText,
eventStatusCondition
}
STATUS current
DESCRIPTION
"Input feed load event. If enabled, this trap is sent when
the infeedLoadStatus indicates an error state ('loadLow',
'loadHigh', 'overLoad', 'readError', or 'noComm'). This
trap is repeated periodically while the infeedLoadStatus
remains in an error state. If the infeedLoadStatus returns
to a non-error state ('normal' or 'notOn'), this trap is
sent once more with the non-error infeedLoadStatus, and then
stops being repeated."
--#TYPE "Sentry: Input Feed Load Event."
--#SUMMARY "Load Status of Input Feed '%s' (%s) is '%s'."
--#ARGUMENTS { 2, 1, 6 }
--#SEVERITY CRITICAL
--#GENERIC 6
--#CATEGORY "Error Events"
--#SOURCE_ID "A"
--#TIMEINDEX 255
--#HELP ""
--#HELPTAG 0
--#STATE UNKNOWN
::= { events 3 }
-- Outlet Traps
outletStatusEvent NOTIFICATION-TYPE
OBJECTS {
systemLocation,
outletID,
outletName,
outletStatus,
eventStatusText,
eventStatusCondition
}
STATUS current
DESCRIPTION
"Outlet status event. If enabled, this trap is sent when the
outletStatus indicates an error state ('offError', 'onError',
'noComm', 'offFuse', or 'onFuse'). This trap is repeated
periodically while the outletStatus remains in an error state.
If the outletStatus returns to a non-error state ('off' or
'on'), this trap is sent once more with the non-error
outletStatus, and then stops being repeated.
While the outletStatus indicates an error state, load traps
are suppressed for the outlet."
--#TYPE "Sentry: Outlet Status Event."
--#SUMMARY "Status of Outlet '%s' (%s) is '%s'."
--#ARGUMENTS { 2, 1, 4 }
--#SEVERITY CRITICAL
--#GENERIC 6
--#CATEGORY "Error Events"
--#SOURCE_ID "A"
--#TIMEINDEX 255
--#HELP ""
--#HELPTAG 0
--#STATE UNKNOWN
::= { events 4 }
outletLoadEvent NOTIFICATION-TYPE
OBJECTS {
systemLocation,
outletID,
outletName,
outletLoadStatus,
outletLoadValue,
outletLoadLowThresh,
outletLoadHighThresh,
eventStatusText,
eventStatusCondition
}
STATUS current
DESCRIPTION
"Outlet load event. If enabled, this trap is sent when the
outletLoadStatus indicates an error state ('loadLow',
'loadHigh', 'overLoad', 'readError', or 'noComm'). This
trap is repeated periodically while the outletLoadStatus
remains in an error state. If the outletLoadStatus returns
to a non-error state ('normal' or 'notOn'), this trap is
sent once more with the non-error outletLoadStatus, and then
stops being repeated."
--#TYPE "Sentry: Outlet Load Event."
--#SUMMARY "Load Status of Outlet '%s' (%s) is '%s'."
--#ARGUMENTS { 2, 1, 7 }
--#SEVERITY CRITICAL
--#GENERIC 6
--#CATEGORY "Error Events"
--#SOURCE_ID "A"
--#TIMEINDEX 255
--#HELP ""
--#HELPTAG 0
--#STATE UNKNOWN
::= { events 5 }
outletChangeEvent NOTIFICATION-TYPE
OBJECTS {
systemLocation,
outletID,
outletName,
outletStatus,
outletControlState,
eventStatusText,
eventStatusCondition
}
STATUS current
DESCRIPTION
"Outlet on/off change event. If enabled, this trap is sent
when the outletStatus changes from any 'on' state ('on',
'onWait', 'onError', or 'onFuse') to any 'off' state ('off',
'offWait', 'offError', or 'offFuse'), and vice-versa."
--#TYPE "Sentry: Outlet Change Event."
--#SUMMARY "Outlet '%s' (%s) has changed to '%s'."
--#ARGUMENTS { 2, 1, 5 }
--#SEVERITY INFORMATIONAL
--#GENERIC 6
--#CATEGORY "Status Events"
--#SOURCE_ID "A"
--#TIMEINDEX 255
--#HELP ""
--#HELPTAG 0
--#STATE UNKNOWN
::= { events 6 }
-- Environmental Monitor Traps
envMonStatusEvent NOTIFICATION-TYPE
OBJECTS {
systemLocation,
envMonID,
envMonName,
envMonStatus,
eventStatusText,
eventStatusCondition
}
STATUS current
DESCRIPTION
"Environmental monitor status event. If enabled, this trap
is sent when the envMonStatus indicates an error state
('noComm'). This trap is repeated periodically while the
envMonStatus remains in an error state. If the envMonStatus
returns to a non-error state ('normal'), this trap is sent
once more with the non-error envMonStatus, and then stops
being repeated.
While the envMonStatus indicates an error state, all status
traps are suppressed for the water sensor, ADC, temperature/
humidity sensors, and contact closures on the environmental
monitor."
--#TYPE "Sentry: Environmental Monitor Status Event."
--#SUMMARY "Status of Environmental Monitor '%s' (%s) is '%s'."
--#ARGUMENTS { 2, 1, 4 }
--#SEVERITY CRITICAL
--#GENERIC 6
--#CATEGORY "Error Events"
--#SOURCE_ID "A"
--#TIMEINDEX 255
--#HELP ""
--#HELPTAG 0
--#STATE UNKNOWN
::= { events 7 }
envMonWaterSensorEvent NOTIFICATION-TYPE
OBJECTS {
systemLocation,
envMonID,
envMonWaterSensorName,
envMonWaterSensorStatus,
eventStatusText,
eventStatusCondition
}
STATUS current
DESCRIPTION
"Environmental monitor water sensor event. If enabled, this
trap is sent when the envMonWaterSensorStatus indicates an
error state ('alarm'). This trap is repeated periodically
while the envMonWaterSensorStatus remains in an error state.
If the envMonWaterSensorStatus returns to a non-error state
('normal'), this trap is sent once more with the non-error
envMonWaterSensorStatus, and then stops being repeated."
--#TYPE "Sentry: Water Sensor Event."
--#SUMMARY "Status of Water Sensor '%s' (%s) is '%s'."
--#ARGUMENTS { 2, 1, 4 }
--#SEVERITY CRITICAL
--#GENERIC 6
--#CATEGORY "Error Events"
--#SOURCE_ID "A"
--#TIMEINDEX 255
--#HELP ""
--#HELPTAG 0
--#STATE UNKNOWN
::= { events 8 }
envMonADCEvent NOTIFICATION-TYPE
OBJECTS {
systemLocation,
envMonID,
envMonADCName,
envMonADCStatus,
envMonADCCount,
envMonADCLowThresh,
envMonADCHighThresh,
eventStatusText,
eventStatusCondition
}
STATUS current
DESCRIPTION
"Environmental monitor analog-to-digital converter event.
If enabled, this trap is sent when the envMonADCStatus
indicates an error state ('countLow' or 'countHigh'). This
trap is repeated periodically while the envMonADCStatus
remains in an error state. If the envMonADCStatus returns
to a non-error state ('normal'), this trap is sent once more
with the non-error envMonADCStatus, and then stops being
repeated."
--#TYPE "Sentry: ADC Event."
--#SUMMARY "Status of ADC '%s' (%s) is '%s'."
--#ARGUMENTS { 2, 1, 7 }
--#SEVERITY CRITICAL
--#GENERIC 6
--#CATEGORY "Error Events"
--#SOURCE_ID "A"
--#TIMEINDEX 255
--#HELP ""
--#HELPTAG 0
--#STATE UNKNOWN
::= { events 9 }
tempHumidSensorStatusEvent NOTIFICATION-TYPE
OBJECTS {
systemLocation,
tempHumidSensorID,
tempHumidSensorName,
tempHumidSensorStatus,
eventStatusText,
eventStatusCondition
}
STATUS current
DESCRIPTION
"Temperature/humidity sensor status event. If enabled, this
trap is sent when the tempHumidSensorStatus indicates an
error state ('lost'). This trap is repeated periodically
while the tempHumidSensorStatus remains in an error state.
If the tempHumidSensorStatus returns to a non-error state
('found'), this trap is sent once more with the non-error
tempHumidSensorStatus, and then stops being repeated.
While the tempHumidSensorStatus indicates an error state, all
temperature and humidity status traps are suppressed for the
temperature/humidity sensor."
--#TYPE "Sentry: T/H Sensor Status Event."
--#SUMMARY "Status of T/H Sensor '%s' (%s) is '%s'."
--#ARGUMENTS { 2, 1, 4 }
--#SEVERITY CRITICAL
--#GENERIC 6
--#CATEGORY "Error Events"
--#SOURCE_ID "A"
--#TIMEINDEX 255
--#HELP ""
--#HELPTAG 0
--#STATE UNKNOWN
::= { events 10 }
tempHumidSensorTempEvent NOTIFICATION-TYPE
OBJECTS {
systemLocation,
tempHumidSensorID,
tempHumidSensorName,
tempHumidSensorTempStatus,
tempHumidSensorTempValue,
tempHumidSensorTempLowThresh,
tempHumidSensorTempHighThresh,
tempHumidSensorTempScale,
eventStatusText,
eventStatusCondition
}
STATUS current
DESCRIPTION
"Temperature/humidity sensor temperature event. If enabled,
this trap is sent when the tempHumidSensorTempStatus
indicates an error state ('tempLow' or 'tempHigh').
This trap is repeated periodically while the
tempHumidSensorTempStatus remains in an error state. If
the tempHumidSensorTempStatus returns to a non-error state
('normal'), this trap is sent once more with the non-error
tempHumidSensorTempStatus, and then stops being repeated."
--#TYPE "Sentry: T/H Sensor Temperature Event."
--#SUMMARY "Temperature Status of T/H Sensor '%s' (%s) is '%s'."
--#ARGUMENTS { 2, 1, 8 }
--#SEVERITY CRITICAL
--#GENERIC 6
--#CATEGORY "Error Events"
--#SOURCE_ID "A"
--#TIMEINDEX 255
--#HELP ""
--#HELPTAG 0
--#STATE UNKNOWN
::= { events 11 }
tempHumidSensorHumidEvent NOTIFICATION-TYPE
OBJECTS {
systemLocation,
tempHumidSensorID,
tempHumidSensorName,
tempHumidSensorHumidStatus,
tempHumidSensorHumidValue,
tempHumidSensorHumidLowThresh,
tempHumidSensorHumidHighThresh,
eventStatusText,
eventStatusCondition
}
STATUS current
DESCRIPTION
"Temperature/humidity sensor humidity event. If enabled,
this trap is sent when the tempHumidSensorHumidStatus
indicates an error state ('humidLow' or 'humidHigh').
This trap is repeated periodically while the
tempHumidSensorHumidStatus remains in an error state. If
the tempHumidSensorHumidStatus returns to a non-error state
('normal'), this trap is sent once more with the non-error
tempHumidSensorHumidStatus, and then stops being repeated."
--#TYPE "Sentry: T/H Sensor Humidity Event."
--#SUMMARY "Humidity Status of T/H Sensor '%s' (%s) is '%s'."
--#ARGUMENTS { 2, 1, 7 }
--#SEVERITY CRITICAL
--#GENERIC 6
--#CATEGORY "Error Events"
--#SOURCE_ID "A"
--#TIMEINDEX 255
--#HELP ""
--#HELPTAG 0
--#STATE UNKNOWN
::= { events 12 }
contactClosureEvent NOTIFICATION-TYPE
OBJECTS {
systemLocation,
contactClosureID,
contactClosureName,
contactClosureStatus,
eventStatusText,
eventStatusCondition
}
STATUS current
DESCRIPTION
"Contact closure event. If enabled, this trap is sent when
the contactClosureStatus indicates an error state ('alarm').
This trap is repeated periodically while the
contactClosureStatus remains in an error state. If the
contactClosureStatus returns to a non-error state ('normal'),
this trap is sent once more with the non-error
contactClosureStatus, and then stops being repeated."
--#TYPE "Sentry: Contact Closure Event."
--#SUMMARY "Status of Contact Closure '%s' (%s) is '%s'."
--#ARGUMENTS { 2, 1, 4 }
--#SEVERITY CRITICAL
--#GENERIC 6
--#CATEGORY "Error Events"
--#SOURCE_ID "A"
--#TIMEINDEX 255
--#HELP ""
--#HELPTAG 0
--#STATE UNKNOWN
::= { events 13 }
-- Branch Traps
branchStatusEvent NOTIFICATION-TYPE
OBJECTS {
systemLocation,
branchID,
branchName,
branchStatus,
eventStatusText,
eventStatusCondition
}
STATUS current
DESCRIPTION
"Branch status event. If enabled, this trap is sent when
the branchStatus indicates an error state ('offError',
'onError', 'noComm', 'offFuse', or 'onFuse'). This trap
is repeated periodically while the branchStatus remains in
an error state. If the branchStatus returns to a non-error
state ('off' or 'on'), this trap is sent once more with the
non-error branchStatus, and then stops being repeated.
While the branchStatus indicates an error state, load traps
are suppressed for the branch."
--#TYPE "Sentry: Branch Status Event."
--#SUMMARY "Status of Branch '%s' (%s) is '%s'."
--#ARGUMENTS { 2, 1, 4 }
--#SEVERITY CRITICAL
--#GENERIC 6
--#CATEGORY "Error Events"
--#SOURCE_ID "A"
--#TIMEINDEX 255
--#HELP ""
--#HELPTAG 0
--#STATE UNKNOWN
::= { events 14 }
branchLoadEvent NOTIFICATION-TYPE
OBJECTS {
systemLocation,
branchID,
branchName,
branchLoadStatus,
branchLoadValue,
branchLoadHighThresh,
eventStatusText,
eventStatusCondition
}
STATUS current
DESCRIPTION
"Branch load event. If enabled, this trap is sent when
the branchLoadStatus indicates an error state ('loadLow',
'loadHigh', 'overLoad', 'readError', or 'noComm'). This
trap is repeated periodically while the branchLoadStatus
remains in an error state. If the branchLoadStatus returns
to a non-error state ('normal' or 'notOn'), this trap is
sent once more with the non-error branchLoadStatus, and then
stops being repeated."
--#TYPE "Sentry: Branch Load Event."
--#SUMMARY "Load Status of Branch '%s' (%s) is '%s'."
--#ARGUMENTS { 2, 1, 6 }
--#SEVERITY CRITICAL
--#GENERIC 6
--#CATEGORY "Error Events"
--#SOURCE_ID "A"
--#TIMEINDEX 255
--#HELP ""
--#HELPTAG 0
--#STATE UNKNOWN
::= { events 15 }
END
|