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
|
NETTRACK-E3METER-CTR-SNMP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
Integer32,
TimeTicks,
Unsigned32
FROM SNMPv2-SMI
enterprises
FROM SNMPv2-SMI
TEXTUAL-CONVENTION
FROM SNMPv2-TC
NOTIFICATION-TYPE
FROM SNMPv2-SMI
;
nettrack OBJECT IDENTIFIER
::= { enterprises 21695 }
public OBJECT IDENTIFIER
::= { nettrack 1 }
e3Mib MODULE-IDENTITY
LAST-UPDATED "201903200000Z"
ORGANIZATION "net-track GmbH"
CONTACT-INFO "net-track GmbH
Duensstrasse 1
3186 Duedingen
Switzerland
Tel: +41 26 4240924
http://www.net-track.ch
info@net-track.ch"
DESCRIPTION
"Management Information for the E3METER suite."
REVISION
"201903200000Z"
DESCRIPTION
"Add tables containing information about IPS and PRO meters:
* e3MeterConfigTable, e3MeterDataTable, e3MeterSensorTable"
REVISION
"201810230000Z"
DESCRIPTION
"Add residual current monitoring data:
* e3IpsRcm and e3IpsRcmTable"
REVISION
"201707100000Z"
DESCRIPTION
"Add traps for events:
* Add objects: e3CtrEventTime, e3CtrEventSeverityLevel,
e3CtrEventSource and e3CtrEventDescription
* Add notification: e3ConcentratorEventLog"
REVISION
"201506170000Z"
DESCRIPTION
"Numerous changes for providing the data collected with
period oriented polling:
* Changes to e3Concentrator:
- renamed e3ConcentratorVersion to
e3ConcentratorFWVersion and changed it to string.
- added: e3ConcentratorSystemTime
- deprecated: e3ConcentratorUptime
* Removed entire e3IpsLocal.
* Changes to e3IpsNetwork:
- deprecated: e3IpsUnknownNodes, e3IpsActiveNodes,
e3IpsDeadNodes
- added: e3IpsPolledPeriodStart,
e3IpsPolledPeriodDuration, e3IpsPolledNodesSuccess
* Changes to e3IpsTable:
- removed: e3IpsLastDataTime
- added: e3IpsBuild
* Changes to e3IpsMeterTable:
- removed: e3IpsEnergyQ, e3IpsEnergyS
- deprecated: e3IpsEnergyP, e3IpsPowerP,
e3IpsPowerQ, e3IpsPowerS, e3IpsUrms, e3IpsIrms,
e3IpsFrequency
- added: e3IpsPolledPeriodStart,
e3IpsPolledPeriodDuration,
e3IpsPolledNodesSuccess, e3IpsPeriodType,
e3IpsPeriodStart, e3IpsPeriodDuration,
e3IpsDataStatus, e3IpsPMin/Max/Avg,
e3IpsQMin/Max/Avg, e3IpsSAvg,
e3IpsUrmsMin/Max/Avg, e3IpsIrmsMin/Max/Avg,
e3IpsFreqMin/Max
* Changes to e3IpsSensorTable:
- deprecated: e3IpsSensorTemperatureCelsius,
e3IpsSensorHumidity
- added: e3IpsSensorPeriodType,
e3IpsSensorPeriodStart, e3IpsSensorPeriodDuration,
e3IpsSensorDataType, e3IpsSensorTempCMin/Max,
e3IpsSensorRHMin/Max"
REVISION
"201303270000Z"
DESCRIPTION
"Added e3ConcentratorUptime and e3IpsLastDataTime."
REVISION
"201301040000Z"
DESCRIPTION
"Added e3IpsChannelConfig."
REVISION
"201204120000Z"
DESCRIPTION
"Added import of TEXTUAL-CONVENTION."
REVISION
"201104060000Z"
DESCRIPTION
"Corrected some syntax errors."
REVISION
"201003110000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { public 10 }
-- ===========================================================================
-- Textual conventions
--
Watts ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Watts"
SYNTAX INTEGER
VoltAmpereReactives ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Volt-ampere reactives"
SYNTAX Integer32
VoltAmperes ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Volt-amperes"
SYNTAX Integer32
WattHours ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Watt hours"
SYNTAX Integer32
VoltAmpereReactiveHours ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Volt-ampere reactive hours"
SYNTAX Integer32
VoltAmpereHours ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Volt-ampere hours"
SYNTAX Integer32
MilliAmperes ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Milli-amperes"
SYNTAX Integer32
MilliVolts ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Milli-volts"
SYNTAX Integer32
DeciDegreesCelsius ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Deci-degrees celsius"
SYNTAX Integer32
MilliHertz ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Milli-hertz"
SYNTAX Integer32
Percent ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Percent"
SYNTAX INTEGER
-- ===========================================================================
-- Agent information
--
e3Concentrator OBJECT IDENTIFIER
::= { e3Mib 1 }
e3ConcentratorFWVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"CTR firmware version."
::= { e3Concentrator 1 }
e3ConcentratorUptime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The system uptime in hundredths of a second."
::= { e3Concentrator 2 }
e3ConcentratorSystemTime OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current system time represented in seconds since 1970-01-01
00:00:00 UTC."
::= { e3Concentrator 3 }
-- ===========================================================================
-- IPS network information
--
e3IpsNetwork OBJECT IDENTIFIER
::= { e3Mib 2 }
e3IpsTotalNodes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of configured nodes in total."
::= { e3IpsNetwork 1 }
e3IpsUnknownNodes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Number of unknown nodes.
This object is deprecated, it will return 0."
::= { e3IpsNetwork 2 }
e3IpsActiveNodes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Number of active nodes.
This object is deprecated, use e3IpsPolledNodesSuccess instead."
::= { e3IpsNetwork 3 }
e3IpsDeadNodes OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Number of dead (unreachable) nodes.
This object is deprecated, it will return 0."
::= { e3IpsNetwork 4 }
e3IpsPolledPeriodStart OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Start of the most recent polling period in seconds since
1970-01-01 00:00:00 UTC."
::= { e3IpsNetwork 5 }
e3IpsPolledPeriodDuration OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of the data period in seconds."
::= { e3IpsNetwork 6 }
e3IpsPolledNodesSuccess OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of nodes for which data was available for the most
reccently polled period."
::= { e3IpsNetwork 7 }
-- ===========================================================================
-- IPS information
--
e3IpsTable OBJECT-TYPE
SYNTAX SEQUENCE OF E3IpsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The e3IpsTable holds information about all IPS nodes in the
network."
::= { e3Mib 3 }
e3IpsEntry OBJECT-TYPE
SYNTAX E3IpsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Holds information about one particular IPS."
INDEX { e3IpsSerial }
::= { e3IpsTable 1 }
E3IpsEntry ::= SEQUENCE {
e3IpsSerial Integer32,
e3IpsCtrSerial Integer32,
e3IpsModel Integer32,
e3IpsHWVersion INTEGER,
e3IpsFWVersion Integer32,
e3IpsPLCVersion Integer32,
e3IpsPLCBand INTEGER,
e3IpsLabel OCTET STRING,
e3IpsState INTEGER,
e3IpsMeters INTEGER,
e3IpsSensors INTEGER,
e3IpsChannelConfig INTEGER,
e3IpsBuild OCTET STRING,
e3IpsRcm INTEGER
}
e3IpsSerial OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number is the primary identification for
for every IPS."
::= { e3IpsEntry 1 }
e3IpsCtrSerial OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The serial number of the concentrator this IPS is
connected to."
::= { e3IpsEntry 2 }
e3IpsModel OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Model number."
::= { e3IpsEntry 3 }
e3IpsHWVersion OBJECT-TYPE
SYNTAX INTEGER {
rev-a (0),
rev-b (1),
rev-c (2),
rev-d (3),
rev-e (4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware revision."
::= { e3IpsEntry 4 }
e3IpsFWVersion OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Integer representation of the firmware revision
(major.minor) represented as a 16 bit integer."
::= { e3IpsEntry 5 }
e3IpsPLCVersion OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PLC firmware revision (major.minor.build) represented
as a 24 bit integer."
::= { e3IpsEntry 6 }
e3IpsPLCBand OBJECT-TYPE
SYNTAX INTEGER {
fcc (0),
arib (1),
cenelec-a (2),
cenelec-b (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Holds the PLC band used by the corresponding node."
::= { e3IpsEntry 7 }
e3IpsLabel OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..15))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IPS label shown on display."
::= { e3IpsEntry 8 }
e3IpsState OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
active (1),
dead (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of this node."
::= { e3IpsEntry 9 }
e3IpsMeters OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of power meters in this IPS."
::= { e3IpsEntry 10 }
e3IpsSensors OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of sensors connected to this IPS."
::= { e3IpsEntry 11 }
e3IpsChannelConfig OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
1L (1),
3L1N (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Channel configuration."
::= { e3IpsEntry 12 }
e3IpsBuild OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..15))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IPS firmware build number."
::= { e3IpsEntry 14 }
e3IpsRcm OBJECT-TYPE
SYNTAX INTEGER {
none (0),
total-rcm (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of installed residual current monitoring: none (0)
or total (1), where the total residual current of all phases
is monitored."
::= { e3IpsEntry 15 }
-- ===========================================================================
-- IPS meters
--
e3IpsMeterTable OBJECT-TYPE
SYNTAX SEQUENCE OF E3IpsMeterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The e3IpsMeterTable holds information related to the
powermeters of all IPS nodes."
::= { e3Mib 4 }
e3IpsMeterEntry OBJECT-TYPE
SYNTAX E3IpsMeterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Holds the information related to one specific powermeter."
INDEX { e3IpsSerial, e3IpsMeter }
::= { e3IpsMeterTable 1 }
E3IpsMeterEntry ::= SEQUENCE {
e3IpsMeter Integer32,
e3IpsEnergyP WattHours,
e3IpsPowerP Watts,
e3IpsPowerQ VoltAmpereReactives,
e3IpsPowerS VoltAmperes,
e3IpsUrms MilliVolts,
e3IpsIrms MilliAmperes,
e3IpsFrequency MilliHertz,
e3IpsPeriodType INTEGER,
e3IpsPeriodStart Unsigned32,
e3IpsPeriodDuration Unsigned32,
e3IpsDataStatus INTEGER,
e3IpsPMin Watts,
e3IpsPMax Watts,
e3IpsPAvg Watts,
e3IpsQMin VoltAmpereReactives,
e3IpsQMax VoltAmpereReactives,
e3IpsQAvg VoltAmpereReactives,
e3IpsSAvg VoltAmperes,
e3IpsUrmsMin MilliVolts,
e3IpsUrmsMax MilliVolts,
e3IpsUrmsAvg MilliVolts,
e3IpsIrmsMin MilliAmperes,
e3IpsIrmsMax MilliAmperes,
e3IpsIrmsAvg MilliAmperes,
e3IpsFreqMin MilliHertz,
e3IpsFreqMax MilliHertz,
e3IpsPFAvg INTEGER,
e3IpsActiveEnergy WattHours,
e3IpsReactiveEnergyL VoltAmpereReactiveHours,
e3IpsReactiveEnergyC VoltAmpereReactiveHours
}
e3IpsMeter OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of this power meter in the current node."
::= { e3IpsMeterEntry 2 }
e3IpsEnergyP OBJECT-TYPE
SYNTAX WattHours
UNITS "Wh"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Active energy in watt hours.
This object is deprecated, use the e3IpsActiveEnergy object instead."
::= { e3IpsMeterEntry 3 }
e3IpsPowerP OBJECT-TYPE
SYNTAX Watts
UNITS "W"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Active power at a given instant.
This object is deprecated, use the e3IpsPAvg object instead."
::= { e3IpsMeterEntry 6 }
e3IpsPowerQ OBJECT-TYPE
SYNTAX VoltAmpereReactives
UNITS "var"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Reactive power at a given instant.
This object is deprecated, use the e3IpsQAvg object instead."
::= { e3IpsMeterEntry 7 }
e3IpsPowerS OBJECT-TYPE
SYNTAX VoltAmperes
UNITS "VA"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Apparent power at a given instant.
This object is deprecated, use the e3IpsQAvg object instead."
::= { e3IpsMeterEntry 8 }
e3IpsUrms OBJECT-TYPE
SYNTAX MilliVolts
UNITS "mV"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"RMS voltage at a given instant.
This object is deprecated, use the e3IpsUrmsAvg object instead."
::= { e3IpsMeterEntry 9 }
e3IpsIrms OBJECT-TYPE
SYNTAX MilliAmperes
UNITS "mA"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"RMS current at a given instant.
This object is deprecated, use the e3IpsIrmsAvg object instead."
::= { e3IpsMeterEntry 10 }
e3IpsFrequency OBJECT-TYPE
SYNTAX MilliHertz
UNITS "mHz"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Frequency measured a given instant.
This object is deprecated, use e3IpsFreqMin/Max instead."
::= { e3IpsMeterEntry 11 }
e3IpsPeriodType OBJECT-TYPE
SYNTAX INTEGER {
aggregated (0),
sample (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether the data is truly aggregated over
the indicated period or if it represents just a sample
during the indicated period (for old firmware
versions)."
::= { e3IpsMeterEntry 12 }
e3IpsPeriodStart OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Start of the data period which is represented by the
values in the MIB. This is given in seconds since
1970-01-01 00:00:00 UTC. If this is 0, no data has
been received from this node yet."
::= { e3IpsMeterEntry 13 }
e3IpsPeriodDuration OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of the data period in seconds."
::= { e3IpsMeterEntry 14 }
e3IpsDataStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
current-data (1),
old-data (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Informs about the nature of the data in this table
entry: 0 (unknown) means no data has yet been received
from this node, 1 (current-data) means that the data
is from the most recently polled period, 2 (old-data)
means the data is from a previous period."
::= { e3IpsMeterEntry 15 }
e3IpsPMin OBJECT-TYPE
SYNTAX Watts
UNITS "W"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min active power measured during the indicated
period."
::= { e3IpsMeterEntry 16 }
e3IpsPMax OBJECT-TYPE
SYNTAX Watts
UNITS "W"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max active power measured during the indicated
period."
::= { e3IpsMeterEntry 17 }
e3IpsPAvg OBJECT-TYPE
SYNTAX Watts
UNITS "W"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Avg active power measured during the indicated
period."
::= { e3IpsMeterEntry 18 }
e3IpsQMin OBJECT-TYPE
SYNTAX VoltAmpereReactives
UNITS "var"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min reactive power measured during the indicated
period."
::= { e3IpsMeterEntry 19 }
e3IpsQMax OBJECT-TYPE
SYNTAX VoltAmpereReactives
UNITS "var"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max reactive power measured during the indicated
period."
::= { e3IpsMeterEntry 20 }
e3IpsQAvg OBJECT-TYPE
SYNTAX VoltAmpereReactives
UNITS "var"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Avg reactive power measured during the indicated
period."
::= { e3IpsMeterEntry 21 }
e3IpsSAvg OBJECT-TYPE
SYNTAX VoltAmperes
UNITS "VA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Avg apparent power measured during the indicated
period."
::= { e3IpsMeterEntry 22 }
e3IpsUrmsMin OBJECT-TYPE
SYNTAX MilliVolts
UNITS "mV"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min RMS voltage measured during the indicated
period."
::= { e3IpsMeterEntry 23 }
e3IpsUrmsMax OBJECT-TYPE
SYNTAX MilliVolts
UNITS "mV"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max RMS voltage measured during the indicated
period."
::= { e3IpsMeterEntry 24 }
e3IpsUrmsAvg OBJECT-TYPE
SYNTAX MilliVolts
UNITS "mV"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Avg RMS voltage measured during the indicated
period."
::= { e3IpsMeterEntry 25 }
e3IpsIrmsMin OBJECT-TYPE
SYNTAX MilliAmperes
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min RMS current measured during the indicated
period."
::= { e3IpsMeterEntry 26 }
e3IpsIrmsMax OBJECT-TYPE
SYNTAX MilliAmperes
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max RMS current measured during the indicated
period."
::= { e3IpsMeterEntry 27 }
e3IpsIrmsAvg OBJECT-TYPE
SYNTAX MilliAmperes
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Avg RMS current measured during the indicated
period."
::= { e3IpsMeterEntry 28 }
e3IpsFreqMin OBJECT-TYPE
SYNTAX MilliHertz
UNITS "mHz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min frequency measured during the indicated period."
::= { e3IpsMeterEntry 29 }
e3IpsFreqMax OBJECT-TYPE
SYNTAX MilliHertz
UNITS "mHz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max frequency measured during the indicated period."
::= { e3IpsMeterEntry 30 }
e3IpsPFAvg OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Avg power factor * 100 measured during the indicated
period."
::= { e3IpsMeterEntry 31 }
e3IpsActiveEnergy OBJECT-TYPE
SYNTAX WattHours
UNITS "Wh"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active energy at the end of the indicated period."
::= { e3IpsMeterEntry 32 }
e3IpsReactiveEnergyL OBJECT-TYPE
SYNTAX VoltAmpereReactiveHours
UNITS "varh"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reactive inductive energy at the end of the indicated
period."
::= { e3IpsMeterEntry 33 }
e3IpsReactiveEnergyC OBJECT-TYPE
SYNTAX VoltAmpereReactiveHours
UNITS "varh"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reactive capacitive energy at the end of the
indicated period."
::= { e3IpsMeterEntry 34 }
-- ===========================================================================
-- IPS sensors
--
e3IpsSensorTable OBJECT-TYPE
SYNTAX SEQUENCE OF E3IpsSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The sensor table holds all the sensors of this E3METER
concentrator."
::= { e3Mib 5 }
e3IpsSensorEntry OBJECT-TYPE
SYNTAX E3IpsSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing all data related to a sensor."
INDEX { e3IpsSerial, e3IpsSensorPort }
::= { e3IpsSensorTable 1 }
E3IpsSensorEntry ::= SEQUENCE {
e3IpsSensorPort Integer32,
e3IpsSensorType INTEGER,
e3IpsSensorTemperatureCelsius DeciDegreesCelsius,
e3IpsSensorHumidity Percent,
e3IpsSensorPeriodType INTEGER,
e3IpsSensorPeriodStart Unsigned32,
e3IpsSensorPeriodDuration Unsigned32,
e3IpsSensorDataStatus INTEGER,
e3IpsSensorTempCMin DeciDegreesCelsius,
e3IpsSensorTempCMax DeciDegreesCelsius,
e3IpsSensorRHMin Percent,
e3IpsSensorRHMax Percent
}
e3IpsSensorPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sensor port number. Zero denotes the built-in sensor."
::= { e3IpsSensorEntry 2 }
e3IpsSensorType OBJECT-TYPE
SYNTAX INTEGER {
none (0),
internal-temp (1),
temp (2),
temp-rh (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sensor type."
::= { e3IpsSensorEntry 3 }
e3IpsSensorTemperatureCelsius OBJECT-TYPE
SYNTAX DeciDegreesCelsius
UNITS "deg-C/10"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Temperature in tenth degrees measured at a given instant."
::= { e3IpsSensorEntry 4 }
e3IpsSensorHumidity OBJECT-TYPE
SYNTAX Percent
UNITS "%"
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Humidity measured at a given instant."
::= { e3IpsSensorEntry 5 }
e3IpsSensorPeriodType OBJECT-TYPE
SYNTAX INTEGER {
aggregated (0),
sample (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether the data is truly aggregated over
the indicated period or if it represents just a sample
during the indicated period (for old firmware
versions)."
::= { e3IpsSensorEntry 6 }
e3IpsSensorPeriodStart OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Start of the data period which is represented by the
values in the MIB. This is given in seconds since the
1970-01-01 00:00:00 UTC. If this is 0, no data was
received from this node yet."
::= { e3IpsSensorEntry 7 }
e3IpsSensorPeriodDuration OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of the data period in seconds."
::= { e3IpsSensorEntry 8 }
e3IpsSensorDataStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
current-data (1),
old-data (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Informs about the nature of the data in this table
entry: 0 (unknown) means no data has yet been received
from this node, 1 (current-data) means that the data
is from the most recently polled period, 2 (old-data)
means the data is from a previous period."
::= { e3IpsSensorEntry 9 }
e3IpsSensorTempCMin OBJECT-TYPE
SYNTAX DeciDegreesCelsius
UNITS "deg-C/10"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min temperature in celsius measured during the
indicated period."
::= { e3IpsSensorEntry 10 }
e3IpsSensorTempCMax OBJECT-TYPE
SYNTAX DeciDegreesCelsius
UNITS "deg-C/10"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max temperature in celsius measured during the
indicated period."
::= { e3IpsSensorEntry 11 }
e3IpsSensorRHMin OBJECT-TYPE
SYNTAX Percent
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min relative humidity measured during the indicated
period."
::= { e3IpsSensorEntry 12 }
e3IpsSensorRHMax OBJECT-TYPE
SYNTAX Percent
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max relative humidity measured during the indicated
period."
::= { e3IpsSensorEntry 13 }
-- ===========================================================================
-- RCM objects
--
e3IpsRcmTable OBJECT-TYPE
SYNTAX SEQUENCE OF E3IpsRcmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The sensor table holds the residual current monitoring data
of this E3METER concentrator."
::= { e3Mib 11 }
e3IpsRcmEntry OBJECT-TYPE
SYNTAX E3IpsRcmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing all data related to an rcm measuring point."
INDEX { e3IpsSerial }
::= { e3IpsRcmTable 1 }
E3IpsRcmEntry ::= SEQUENCE {
e3IpsRcmPeriodStart Unsigned32,
e3IpsRcmPeriodDuration Unsigned32,
e3IpsRcmDataStatus INTEGER,
e3IpsRcmAcMin MilliAmperes,
e3IpsRcmAcMax MilliAmperes,
e3IpsRcmAcAvg MilliAmperes,
e3IpsRcmDcMin MilliAmperes,
e3IpsRcmDcMax MilliAmperes,
e3IpsRcmDcAvg MilliAmperes
}
e3IpsRcmPeriodStart OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Start of the data period which is represented by the
values in the MIB. This is given in seconds since
1970-01-01 00:00:00 UTC. If this is 0, no data has
been received from this node yet."
::= { e3IpsRcmEntry 2 }
e3IpsRcmPeriodDuration OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of the data period in seconds."
::= { e3IpsRcmEntry 3 }
e3IpsRcmDataStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
current-data (1),
old-data (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Informs about the nature of the data in this table
entry: 0 (unknown) means no data has yet been received
from this node, 1 (current-data) means that the data
is from the most recently polled period, 2 (old-data)
means the data is from a previous period."
::= { e3IpsRcmEntry 4 }
e3IpsRcmAcMin OBJECT-TYPE
SYNTAX MilliAmperes
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min AC residual current measured during the indicated
period"
::= { e3IpsRcmEntry 5 }
e3IpsRcmAcMax OBJECT-TYPE
SYNTAX MilliAmperes
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max AC residual current measured during the indicated
period"
::= { e3IpsRcmEntry 6 }
e3IpsRcmAcAvg OBJECT-TYPE
SYNTAX MilliAmperes
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Avg AC residual current measured during the indicated
period"
::= { e3IpsRcmEntry 7 }
e3IpsRcmDcMin OBJECT-TYPE
SYNTAX MilliAmperes
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min DC residual current measured during the indicated
period"
::= { e3IpsRcmEntry 8 }
e3IpsRcmDcMax OBJECT-TYPE
SYNTAX MilliAmperes
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max DC residual current measured during the indicated
period"
::= { e3IpsRcmEntry 9 }
e3IpsRcmDcAvg OBJECT-TYPE
SYNTAX MilliAmperes
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Avg DC residual current measured during the indicated
period"
::= { e3IpsRcmEntry 10 }
-- ===========================================================================
-- Static information about the available meters
--
e3MeterConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF E3MeterConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The e3MeterConfigTable holds information about all meters."
::= { e3Mib 12 }
e3MeterConfigEntry OBJECT-TYPE
SYNTAX E3MeterConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Holds the information related to one specific meter."
INDEX { e3MeterIndex }
::= { e3MeterConfigTable 1 }
E3MeterConfigEntry ::= SEQUENCE {
e3MeterIndex Integer32,
e3MeterUID OCTET STRING,
e3MeterType Integer32,
e3MeterVersion OCTET STRING,
e3MeterLabel OCTET STRING,
e3MeterSerial OCTET STRING,
e3MeterModel OCTET STRING,
e3MeterChannelConfig Integer32,
e3MeterNumSensors Integer32
}
e3MeterIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the meter on this CTR. The index is maintained
across CTR reboots and changes only if a meter is deleted
and added again."
::= { e3MeterConfigEntry 1 }
e3MeterUID OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..8))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unique ID of the meter on this CTR."
::= { e3MeterConfigEntry 2 }
e3MeterType OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
ips (1),
pro (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Meter type."
::= { e3MeterConfigEntry 3 }
e3MeterVersion OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hardware & software versions."
::= { e3MeterConfigEntry 4 }
e3MeterLabel OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device label."
::= { e3MeterConfigEntry 5 }
e3MeterSerial OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Serial number of a meter."
::= { e3MeterConfigEntry 6 }
e3MeterModel OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Meter model."
::= { e3MeterConfigEntry 7 }
e3MeterChannelConfig OBJECT-TYPE
SYNTAX INTEGER {
ch-unknown (0),
ch-1L (1),
ch-3L1N (2),
ch-3L (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Channel configuration of this meter. This defines the
number of channels of a meter and the nature of the
individual meters in e3MeterTable:
- 1L: 1 live wire channel
- 3L1N: 3 live wires, 1 neutral wire (4 channels total)
- 3L: 3 live wires"
::= { e3MeterConfigEntry 8 }
e3MeterNumSensors OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of sensors of this meter in e3MeterSensorTable"
::= { e3MeterConfigEntry 9 }
-- ===========================================================================
-- Metering data of each channel of every meter
--
e3MeterDataTable OBJECT-TYPE
SYNTAX SEQUENCE OF E3MeterDataEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table holds the metering data of all meters."
::= { e3Mib 13 }
e3MeterDataEntry OBJECT-TYPE
SYNTAX E3MeterDataEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing all measurement data related a meter."
INDEX { e3MeterDataMeterIndex, e3MeterDataChannel }
::= { e3MeterDataTable 1 }
E3MeterDataEntry ::= SEQUENCE {
e3MeterDataMeterIndex Integer32,
e3MeterDataChannel Integer32,
e3MeterDataPeriodType INTEGER,
e3MeterDataPeriodStart Unsigned32,
e3MeterDataPeriodDuration Unsigned32,
e3MeterDataStatus INTEGER,
e3MeterDataPMin Watts,
e3MeterDataPMax Watts,
e3MeterDataPAvg Watts,
e3MeterDataQMin VoltAmpereReactives,
e3MeterDataQMax VoltAmpereReactives,
e3MeterDataQAvg VoltAmpereReactives,
e3MeterDataSAvg VoltAmperes,
e3MeterDataUrmsMin MilliVolts,
e3MeterDataUrmsMax MilliVolts,
e3MeterDataUrmsAvg MilliVolts,
e3MeterDataIrmsMin MilliAmperes,
e3MeterDataIrmsMax MilliAmperes,
e3MeterDataIrmsAvg MilliAmperes,
e3MeterDataFreqMin MilliHertz,
e3MeterDataFreqMax MilliHertz,
e3MeterDataPFAvg INTEGER,
e3MeterDataActiveEnergy WattHours,
e3MeterDataReactiveEnergyL VoltAmpereReactiveHours,
e3MeterDataReactiveEnergyC VoltAmpereReactiveHours
}
e3MeterDataMeterIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Corresponds to the e3MeterIndex entry in e3MeterConfig table."
::= { e3MeterDataEntry 1 }
e3MeterDataChannel OBJECT-TYPE
SYNTAX Integer32 (0..3)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Channel number."
::= { e3MeterDataEntry 2 }
e3MeterDataPeriodType OBJECT-TYPE
SYNTAX INTEGER {
aggregated (0),
sample (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether the data is truly aggregated over
the indicated period or if it represents just a sample
during the indicated period (for old firmware
versions)."
::= { e3MeterDataEntry 3 }
e3MeterDataPeriodStart OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Start of the data period which is represented by the
values in the MIB. This is given in seconds since
1970-01-01 00:00:00 UTC. If this is 0, no data has
been received from this meter yet."
::= { e3MeterDataEntry 4 }
e3MeterDataPeriodDuration OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of the data period in seconds."
::= { e3MeterDataEntry 5 }
e3MeterDataStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
current-data (1),
old-data (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Informs about the nature of the data in this table
entry: 0 (unknown) means no data has yet been received
from this meter, 1 (current-data) means that the data
is from the most recently polled period, 2 (old-data)
means the data is from a previous period."
::= { e3MeterDataEntry 6 }
e3MeterDataPMin OBJECT-TYPE
SYNTAX Watts
UNITS "W"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min active power measured during the indicated
period."
::= { e3MeterDataEntry 7 }
e3MeterDataPMax OBJECT-TYPE
SYNTAX Watts
UNITS "W"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max active power measured during the indicated
period."
::= { e3MeterDataEntry 8 }
e3MeterDataPAvg OBJECT-TYPE
SYNTAX Watts
UNITS "W"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Avg active power measured during the indicated
period."
::= { e3MeterDataEntry 9 }
e3MeterDataQMin OBJECT-TYPE
SYNTAX VoltAmpereReactives
UNITS "var"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min reactive power measured during the indicated
period."
::= { e3MeterDataEntry 10 }
e3MeterDataQMax OBJECT-TYPE
SYNTAX VoltAmpereReactives
UNITS "var"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max reactive power measured during the indicated
period."
::= { e3MeterDataEntry 11 }
e3MeterDataQAvg OBJECT-TYPE
SYNTAX VoltAmpereReactives
UNITS "var"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Avg reactive power measured during the indicated
period."
::= { e3MeterDataEntry 12 }
e3MeterDataSAvg OBJECT-TYPE
SYNTAX VoltAmperes
UNITS "VA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Avg apparent power measured during the indicated
period."
::= { e3MeterDataEntry 13 }
e3MeterDataUrmsMin OBJECT-TYPE
SYNTAX MilliVolts
UNITS "mV"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min RMS voltage measured during the indicated
period."
::= { e3MeterDataEntry 14 }
e3MeterDataUrmsMax OBJECT-TYPE
SYNTAX MilliVolts
UNITS "mV"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max RMS voltage measured during the indicated
period."
::= { e3MeterDataEntry 15 }
e3MeterDataUrmsAvg OBJECT-TYPE
SYNTAX MilliVolts
UNITS "mV"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Avg RMS voltage measured during the indicated
period."
::= { e3MeterDataEntry 16 }
e3MeterDataIrmsMin OBJECT-TYPE
SYNTAX MilliAmperes
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min RMS current measured during the indicated
period."
::= { e3MeterDataEntry 17 }
e3MeterDataIrmsMax OBJECT-TYPE
SYNTAX MilliAmperes
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max RMS current measured during the indicated
period."
::= { e3MeterDataEntry 18 }
e3MeterDataIrmsAvg OBJECT-TYPE
SYNTAX MilliAmperes
UNITS "mA"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Avg RMS current measured during the indicated
period."
::= { e3MeterDataEntry 19 }
e3MeterDataFreqMin OBJECT-TYPE
SYNTAX MilliHertz
UNITS "mHz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min frequency measured during the indicated period."
::= { e3MeterDataEntry 20 }
e3MeterDataFreqMax OBJECT-TYPE
SYNTAX MilliHertz
UNITS "mHz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max frequency measured during the indicated period."
::= { e3MeterDataEntry 21 }
e3MeterDataPFAvg OBJECT-TYPE
SYNTAX INTEGER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Avg power factor * 100 measured during the indicated
period."
::= { e3MeterDataEntry 22 }
e3MeterDataActiveEnergy OBJECT-TYPE
SYNTAX WattHours
UNITS "Wh"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active energy at the end of the indicated period."
::= { e3MeterDataEntry 23 }
e3MeterDataReactiveEnergyL OBJECT-TYPE
SYNTAX VoltAmpereReactiveHours
UNITS "varh"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reactive inductive energy at the end of the indicated
period."
::= { e3MeterDataEntry 24 }
e3MeterDataReactiveEnergyC OBJECT-TYPE
SYNTAX VoltAmpereReactiveHours
UNITS "varh"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Reactive capacitive energy at the end of the
indicated period."
::= { e3MeterDataEntry 25 }
-- ===========================================================================
-- Sensor data of each channel of every meter
--
e3MeterSensorTable OBJECT-TYPE
SYNTAX SEQUENCE OF E3MeterSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table holds the sensor data of all meters."
::= { e3Mib 14 }
e3MeterSensorEntry OBJECT-TYPE
SYNTAX E3MeterSensorEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry containing each meter's sensor data."
INDEX { e3MeterSensorMeterIndex, e3MeterSensorIndex }
::= { e3MeterSensorTable 1 }
E3MeterSensorEntry ::= SEQUENCE {
e3MeterSensorMeterIndex Integer32,
e3MeterSensorIndex Integer32,
e3MeterSensorPeriodType INTEGER,
e3MeterSensorPeriodStart Unsigned32,
e3MeterSensorPeriodDuration Unsigned32,
e3MeterSensorStatus INTEGER,
e3MeterSensorDescription OCTET STRING,
e3MeterSensorType INTEGER,
e3MeterSensorTempCMin DeciDegreesCelsius,
e3MeterSensorTempCMax DeciDegreesCelsius,
e3MeterSensorRHMin Percent,
e3MeterSensorRHMax Percent
}
e3MeterSensorMeterIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Corresponds to the e3MeterIndex entry in e3MeterConfig table."
::= { e3MeterSensorEntry 1 }
e3MeterSensorIndex OBJECT-TYPE
SYNTAX Integer32 (0..3)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sensor index."
::= { e3MeterSensorEntry 2 }
e3MeterSensorPeriodType OBJECT-TYPE
SYNTAX INTEGER {
aggregated (0),
sample (1)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether the data is truly aggregated over
the indicated period or if it represents just a sample
during the indicated period (for old firmware
versions)."
::= { e3MeterSensorEntry 3 }
e3MeterSensorPeriodStart OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Start of the data period which is represented by the
values in the MIB. This is given in seconds since
1970-01-01 00:00:00 UTC. If this is 0, no data has
been received from this meter yet."
::= { e3MeterSensorEntry 4 }
e3MeterSensorPeriodDuration OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Duration of the data period in seconds."
::= { e3MeterSensorEntry 5 }
e3MeterSensorStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown (0),
current-data (1),
old-data (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Informs about the nature of the data in this table
entry: 0 (unknown) means no data has yet been received
from this meter, 1 (current-data) means that the data
is from the most recently polled period, 2 (old-data)
means the data is from a previous period."
::= { e3MeterSensorEntry 6 }
e3MeterSensorDescription OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Textual description of the sensor."
::= { e3MeterSensorEntry 7 }
e3MeterSensorType OBJECT-TYPE
SYNTAX INTEGER {
none (0),
temp (1),
temprh (2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Sensor type."
::= { e3MeterSensorEntry 8 }
e3MeterSensorTempCMin OBJECT-TYPE
SYNTAX DeciDegreesCelsius
UNITS "deg-C/10"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min temperature in celsius measured during the
indicated period."
::= { e3MeterSensorEntry 9 }
e3MeterSensorTempCMax OBJECT-TYPE
SYNTAX DeciDegreesCelsius
UNITS "deg-C/10"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max temperature in celsius measured during the
indicated period."
::= { e3MeterSensorEntry 10 }
e3MeterSensorRHMin OBJECT-TYPE
SYNTAX Percent
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Min relative humidity measured during the indicated
period."
::= { e3MeterSensorEntry 11 }
e3MeterSensorRHMax OBJECT-TYPE
SYNTAX Percent
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Max relative humidity measured during the indicated
period."
::= { e3MeterSensorEntry 12 }
-- ===========================================================================
-- CTR Trap objects
--
e3ConcentratorTrapObjects OBJECT IDENTIFIER
::= { e3Mib 9 }
e3CtrEventTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The time at which the event occurred represented in seconds since
1970-01-01 00:00:00 UTC."
::= { e3ConcentratorTrapObjects 1 }
e3CtrEventSeverityLevel OBJECT-TYPE
SYNTAX INTEGER {
informational(10),
warning(20),
critical(30),
emergency(40)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The severity level of the event."
::= { e3ConcentratorTrapObjects 2 }
e3CtrEventSource OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Type and serial number of the device which caused the event."
::= { e3ConcentratorTrapObjects 3 }
e3CtrEventDescription OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Description of the event."
::= { e3ConcentratorTrapObjects 4 }
-- ===========================================================================
-- CTR Traps
--
e3ConcentratorTraps OBJECT IDENTIFIER
::= { e3Mib 10 }
e3ConcentratorEventLog NOTIFICATION-TYPE
OBJECTS { e3CtrEventTime,
e3CtrEventSeverityLevel,
e3CtrEventSource,
e3CtrEventDescription }
STATUS current
DESCRIPTION
"Event detected by the Data Concentrator in a 'log' format.
Fields are delimited by the ';' character."
::= { e3ConcentratorTraps 1 }
END
|