-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathLIEBERT_GP_POWER.MIB
3300 lines (2991 loc) · 109 KB
/
LIEBERT_GP_POWER.MIB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
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
LIEBERT-GP-POWER-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-IDENTITY,
OBJECT-TYPE,
Integer32,
Unsigned32
FROM SNMPv2-SMI
lgpPower,
liebertPowerModuleReg
FROM LIEBERT-GP-REGISTRATION-MIB
;
-- =============================================================================
-- Module Identification and Registration
-- =============================================================================
liebertGlobalProductsPowerModule MODULE-IDENTITY
LAST-UPDATED "201307100000Z"
ORGANIZATION "Liebert Corporation"
CONTACT-INFO
"Contact: Technical Support
Postal:
Liebert Corporation
1050 Dearborn Drive
P.O. Box 29186
Columbus OH, 43229
US
Tel: +1 (800) 222-5877
E-mail: liebert.monitoring@vertivco.com
Web: www.vertivco.com
Author: Gregory M. Hoge"
DESCRIPTION
"The MIB module used to register Liebert POWER related SNMP OIDs.
Copyright 2000-2008 Liebert Corporation. All rights reserved.
Reproduction of this document is authorized on the condition
that the forgoing copyright notice is included.
This Specification is supplied 'AS IS' and Liebert Corporation
makes no warranty, either express or implied, as to the use,
operation, condition, or performance of the Specification."
REVISION "201307100000Z"
DESCRIPTION
"Added support for GXT4 economic operation mode and outlet control."
REVISION "200811170000Z"
DESCRIPTION
"Added support for NXL unit."
REVISION "200807020000Z"
DESCRIPTION
"Replaced INTEGER with Integer32 (SMIv2).
Minor spelling fixes and formatting."
REVISION "200801100000Z"
DESCRIPTION
"Modified contact email address and removed redundant
lgpPwrMeasurementPointNumLines."
REVISION "200602220000Z"
DESCRIPTION
"Added support for Liebert DS Unit."
::= { liebertPowerModuleReg 1 }
-- =============================================================================
-- lgpPower - Liebert Power Registrations
-- =============================================================================
lgpPwrBattery OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register Liebert Power Battery object
identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below in the sub-section titled Liebert Power Battery Group."
::= { lgpPower 1 }
lgpPwrMeasurements OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree registers Liebert Power Measurement object
identifiers. The sub-tree contains tables and well known power
measurement points."
REFERENCE
"The registrations for the objects in this sub-tree are defined
below in the sub-section titled Liebert Power Measurement Group."
::= { lgpPower 2 }
lgpPwrStatus OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree registers Liebert Power Status object
identifiers. This is the location of power related status information
that does not fit into a more specific category such as the
lgpPwrConversion sub-tree."
REFERENCE
"The registrations for the objects in this sub-tree are defined
below in the sub-section titled Liebert Power Status Group"
::= { lgpPower 3 }
lgpPwrSettings OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree registers Liebert Power Static Switch object
identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are defined
below in the sub-section titled Liebert Power Settings Group."
::= { lgpPower 4 }
lgpPwrConversion OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register Liebert Power Conversion object
identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below in the sub-section titled Liebert Power Conversion Group."
::= { lgpPower 5 }
lgpPwrControl OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register Liebert Power Control object
identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below in the sub-section titled Liebert Power Control Group."
::= { lgpPower 6 }
lgpPwrTopology OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register Liebert Power Topology object
identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below in the sub-section titled Liebert Power Topology Group."
::= { lgpPower 7 }
lgpPwrStatistic OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register Liebert Power Statistic object
identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below in the sub-section titled Liebert Power Statistic Group."
::= { lgpPower 8 }
lgpPwrConfig OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register Liebert Power Configuration
Object identifiers."
REFERENCE
"The registrations for the objects in this sub-tree are
defined below in the sub-section titled Liebert Power Configuration
Group."
::= { lgpPower 9 }
-- =============================================================================
-- lgpPwrBattery - Liebert Power Battery Group
-- =============================================================================
lgpPwrNumberInstalledBatteryModules OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of battery modules installed in the device."
::= { lgpPwrBattery 1 }
lgpPwrNumberFailedBatteryModules OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of battery modules in the device that have failed."
::= { lgpPwrBattery 2 }
lgpPwrNumberRedundantBatteryModules OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of redundant battery modules in the device."
::= { lgpPwrBattery 3 }
lgpPwrNumberActiveBatteryModules OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of active battery modules in the device."
::= { lgpPwrBattery 4 }
lgpPwrConfigLowBatteryWarningTime OBJECT-TYPE
SYNTAX Integer32
UNITS "minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The value of the device's estimated minutes of remaining battery
at which a lgpEventLowBatteryWarning notification will be sent."
::= { lgpPwrBattery 5 }
lgpPwrNumberBatteryModuleWarnings OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of battery modules in the device that have a warning."
::= { lgpPwrBattery 6 }
lgpPwrBatteryCount OBJECT-TYPE
SYNTAX Integer32
UNITS "Count"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of batteries installed."
::= { lgpPwrBattery 7 }
lgpPwrBatteryTestResult OBJECT-TYPE
SYNTAX INTEGER
{
unknown(1),
passed(2),
failed(3),
inProgress(4),
systemFailure(5),
inhibited(6)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The outcome of the previous battery test."
::= { lgpPwrBattery 8 }
lgpPwrNominalBatteryCapacity OBJECT-TYPE
SYNTAX Integer32
UNITS "minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The nominal battery capacity of the system (in minutes) at full load."
::= { lgpPwrBattery 9 }
lgpPwrBatteryFloatVoltage OBJECT-TYPE
SYNTAX Integer32
UNITS "Volt"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The battery float voltage of the system."
::= { lgpPwrBattery 10 }
lgpPwrBatteryEndOfDischargeVoltage OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The battery voltage threshold at which the batteries are considered
completely discharged."
::= { lgpPwrBattery 11 }
lgpPwrAutomaticBatteryTestInterval OBJECT-TYPE
SYNTAX Integer32
UNITS "hours"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The automatic battery test interval."
::= { lgpPwrBattery 12 }
lgpPwrAutomaticBatteryTestCountdown OBJECT-TYPE
SYNTAX Integer32
UNITS "minutes"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The time remaining before the next battery test."
::= { lgpPwrBattery 13 }
lgpPwrBatteryChargeStatus OBJECT-TYPE
SYNTAX INTEGER
{
fullycharged(1),
notfullycharged(2),
charging(3),
discharging(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present state of the system's battery charge.
A value of 'charging' indicates the batteries are currently charging.
A value of 'discharging' indicates the batteries are currently
discharging. A value of 'fullycharged' indicates the batteries are
charged to their full capacity. A value of 'notfullycharged' indicates
the battery charge is neither fully charged, charging or discharging."
::= { lgpPwrBattery 14 }
lgpPwrBatteryLifeEnhancer OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the battery life enhancer. When 'on', it will
preserve battery life."
::= { lgpPwrBattery 15 }
lgpPwrBatteryCharger OBJECT-TYPE
SYNTAX INTEGER
{
on(1),
off(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the battery charger."
::= { lgpPwrBattery 16 }
lgpPwrBatteryChargeMode OBJECT-TYPE
SYNTAX INTEGER
{
float(1),
equalize(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The mode of the battery charger: 'float' charging or 'equalize'
charging."
::= { lgpPwrBattery 17 }
lgpPwrBatteryTimeRemaining OBJECT-TYPE
SYNTAX Integer32
UNITS "minutes"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An estimate of the time to battery charge depletion under the present
load conditions if the utility power is off and remains off, or if it
were to be lost and remain off.
NOTE: A UPS is expected to provide a battery time remaining value
when not operating on battery. However, if the system is not capable of
providing this information, then this point will return 65535 to
indicate that the value is unavailable."
::= { lgpPwrBattery 18 }
lgpPwrBatteryCapacity OBJECT-TYPE
SYNTAX Integer32
UNITS "percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present percentage of battery capacity."
::= { lgpPwrBattery 19 }
lgpPwrBatteryCabinet OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree contains items related to battery cabinets."
::= { lgpPwrBattery 20 }
lgpPwrBatteryCabinetCount OBJECT-TYPE
SYNTAX Integer32
UNITS "Count"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of battery cabinets installed with this device.
Note some devices may not permit writing a value to this object."
::= { lgpPwrBatteryCabinet 1 }
lgpPwrBatteryCabinetType OBJECT-TYPE
SYNTAX INTEGER
{
notSpecified(1),
internal(2),
external(3),
lrt(4)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The type of battery cabinet(s) installed on this device.
Enumeration definitions:
notSpecified - The type has not been specified in the
device's configuration.
internal - Battery cabinets are internal to the device.
external - Device has external battery cabinets installed.
lrt - Long Run Time cabinets.
Note some devices may not permit writing a value to this object."
::= { lgpPwrBatteryCabinet 2 }
lgpPwrBatteryCabinetRatedCapacity OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 Amp-hour"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Battery cabinet rated capacity (tenths of Amp-hours).
This assumes that each cabinet is of the same type and capacity.
This is not a sum of the rating for all attached cabinets.
Note some devices may not permit writing a value to this object."
::= { lgpPwrBatteryCabinet 3 }
lgpPwrBatteryLeadAcidCellCount OBJECT-TYPE
SYNTAX Integer32
UNITS "Count"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Battery cell count - lead-acid. The number of cells that comprise
the lead acid battery string."
::= { lgpPwrBatteryCabinet 4 }
lgpPwrBatteryNiCadCellCount OBJECT-TYPE
SYNTAX Integer32
UNITS "Count"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Battery cell count - nickel-cadmium. The number of cells that
comprise the nickel-cadmium battery string."
::= { lgpPwrBatteryCabinet 5 }
lgpPwrBatteryAmpHoursConsumed OBJECT-TYPE
SYNTAX Integer32
UNITS "Amp-hour"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The cumulative battery Amp-hours withdrawn over the life of the
battery. This value persists across reboots. Typically, this value is
reset back to zero when the batteries are replaced."
::= { lgpPwrBattery 21 }
lgpPwrBatteryAmpHoursDischargeConsumed OBJECT-TYPE
SYNTAX Integer32
UNITS "Amp-hour"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The battery Amp-hours withdrawn during the current/latest
discharge. This value does not persist across reboots."
::= { lgpPwrBattery 22 }
lgpPwrBatteryLastDischargeTime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The date and time of the last battery discharge. Typically this is the
time when the discharge starts. This value persists across reboots.
The date and time are determined in seconds since the epoch on
January 1, 1970."
::= { lgpPwrBattery 23 }
lgpPwrBatteryLastCommissionTime OBJECT-TYPE
SYNTAX Unsigned32
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The date and time when the battery system was put into service.
This information persists across system reboot events. It is the
responsibility of Service to reset this date/time when the batteries
are replaced. The date and time are determined in seconds since the
epoch on January 1, 1970."
::= { lgpPwrBattery 24 }
lgpPwrBatteryPresentDischargeTime OBJECT-TYPE
SYNTAX Integer32
UNITS "seconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total time spent on battery during the current or last discharge.
NOTE: While not discharging, some systems may display zero instead of
the last discharge."
::= { lgpPwrBattery 25 }
lgpPwrBatteryCapacityStatus OBJECT-TYPE
SYNTAX INTEGER
{
unknown(1),
batteryNormal(2),
batteryLow(3),
batteryDepleted(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The indication of the capacity remaining in the UPS
system's batteries.
NOTE: In a single-module system, this point is intended to have the same
behavior as the RFC1628 point upsBatteryStatus."
::= { lgpPwrBattery 26 }
lgpPwrBatteryCircuitBreakerState OBJECT-TYPE
SYNTAX INTEGER
{
unknown(0),
open(1),
closed(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of the Battery Circuit Breaker."
::= { lgpPwrBattery 27 }
-- =============================================================================
-- lgpPwrMeasurements - Liebert Power Measurement Group
-- =============================================================================
-- -----------------------------------------------------------------------------
-- Well Known Power Measurement Points
-- -----------------------------------------------------------------------------
lgpPwrWellKnownMeasurementPoints OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree registers well known Liebert Power Measurement
Points. The object identifier names usually imply locations
where the measurement is taken -- such as 'input', 'output'
and 'bypass'."
REFERENCE
"These well known measurement identifiers are referenced in the
'lgpPwrMeasurementPointId' column in the
'lgpPwrMeasurementPointTable'."
::= { lgpPwrMeasurements 1 }
lgpPwrSource1Input OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register a source 1 input as a
well known measurement point. It is intended that no sub-trees
be created below this node.
Power input to the managed device from power source 1.
Many power systems contain more than one input source and
many of them have more than one measurement point per input
source. This identifier represents one input source for the
system but does not necessarily represent the 'first' one.
The input sources' numbering with respect to
'lgpPwrSource1Input' etc. may depend on the physical wiring
of the system when it was installed."
::= { lgpPwrWellKnownMeasurementPoints 1 }
lgpPwrSource2Input OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register a source 2 input as a
well known measurement point. It is intended that no sub-trees
be created below this node.
Power input to the managed device from power source 2.
Many power systems contain more than one input source and
many of them have more than one measurement point per input
source. This identifier represents one input source for the
system but does not necessarily represent the 'first' one.
The input sources' numbering with respect to
'lgpPwrSource2Input' etc. may depend on the physical wiring
of the system when it was installed."
::= { lgpPwrWellKnownMeasurementPoints 2 }
lgpPwrSourcePdu1Input OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register a source PDU 1 input as a
well known measurement point. It is intended that no sub-trees
be created below this node.
Power input to the managed device from power distribution
unit 1. Many power systems contain more than one input source
and many of them have more than one measurement point per input
source. This identifier represents one input source for the
system but does not necessarily represent the 'first' one.
The input sources' numbering with respect to
'lgpPwrSourcePdu1Input' etc. may depend on the physical wiring
of the system when it was installed."
::= { lgpPwrWellKnownMeasurementPoints 3 }
lgpPwrSourcePdu2Input OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register a source PDU 2 input as a
well known measurement point. It is intended that no sub-trees
be created below this node.
Power input to the managed device from power distribution
unit 1. Many power systems contain more than one input source
and many of them have more than one measurement point per input
source. This identifier represents one input source for the
system but does not necessarily represent the 'first' one.
The input sources' numbering with respect to
'lgpPwrSourcePdu2Input' etc. may depend on the physical wiring
of the system when it was installed."
::= { lgpPwrWellKnownMeasurementPoints 4 }
lgpPwrOutputToLoad OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register the output to the critical
load as a well known measurement point. It is intended that
no sub-trees be created below this node."
::= { lgpPwrWellKnownMeasurementPoints 5 }
lgpPwrMeasBattery OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register a battery as a well known
measurement point. It is intended that no sub-trees be created
below this node."
::= { lgpPwrWellKnownMeasurementPoints 6 }
lgpPwrMeasBypass OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register a bypass as a well known
measurement point. It is intended that no sub-trees be created
below this node."
::= { lgpPwrWellKnownMeasurementPoints 7 }
lgpPwrMeasDcBus OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register a DC bus as a well known
measurement point. It is intended that no sub-trees be created
below this node."
::= { lgpPwrWellKnownMeasurementPoints 8 }
lgpPwrMeasSystemOutput OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register the output of a
multi-module system as a well known measurement point.
It is intended that no sub-trees be created below this node.
This identifier represents the power related data of the
system."
::= { lgpPwrWellKnownMeasurementPoints 9 }
lgpPwrMeasBatteryCabinet OBJECT-IDENTITY
STATUS current
DESCRIPTION
"This sub-tree is used to register the voltage between the
most negative and the most postive terminals of a battery
cabinet. To determine the cabinet being described in a
multi-cabinet system, this point implements an additional
two indexes. The first index describes the module the cabinet
is located in. The second index describes the cabinet
number. In an SMS(Single-Module System) the first index is
always 1.
Example: lgpPwrMeasBatteryCabinet.2.4
'lgpPwrMeasBatteryCabinet' = Point is a battery cabinet.
'.2' = Cabinet is in the second module.
'.4' = Cabinet number 4"
::= { lgpPwrWellKnownMeasurementPoints 10 }
-- -----------------------------------------------------------------------------
-- AC Power Measurement Point Table
-- -----------------------------------------------------------------------------
lgpPwrMeasurementPointTable OBJECT-TYPE
SYNTAX SEQUENCE OF LgpPwrMeasurementPointEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains a list of AC power measurement point entries.
The table contains zero, one, or many rows, depending upon the number
of power related measurement points available. The NMS cannot
create or delete rows from the table. The rows are created by the
agent based upon the capabilities of the managed device. Each row
in the table represents a series of measurements on a given point
or location within the system. Measurement points/locations are
identified by the object identifier 'lgpPwrMeasurementPointId' in the
'LgpPwrMeasurementPointEntry' object. The actual measurement being
taken at that identified point is identified by the other
corresponding columns in the LgpPwrMeasurementPointEntry for the
particular row of the table."
REFERENCE
"The measurement points represented by 'lgpPwrMeasurementPointId'
can be found in the sub-tree lgpPwrWellKnownMeasurementPoints.
Additional measurement detail on a 'per line' basis is available in
the lgpPwrLineMeasurementTable"
::= { lgpPwrMeasurements 2 }
lgpPwrMeasurementPointEntry OBJECT-TYPE
SYNTAX LgpPwrMeasurementPointEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry defines the measurements to be populated in the
various columns of the 'lgpPwrMeasurementPointTable'."
INDEX { lgpPwrMeasurementPointIndex }
::= { lgpPwrMeasurementPointTable 1 }
LgpPwrMeasurementPointEntry ::= SEQUENCE
{
lgpPwrMeasurementPointIndex Unsigned32,
lgpPwrMeasurementPointId OBJECT IDENTIFIER,
lgpPwrMeasurementPointNumLines Integer32,
lgpPwrMeasurementPointNomVolts Integer32,
lgpPwrMeasurementPointNomFrequency Integer32,
lgpPwrMeasurementPointFrequency Integer32,
lgpPwrMeasurementPointApparentPower Integer32,
lgpPwrMeasurementPointTruePower Integer32,
lgpPwrMeasurementPointPowerFactor Integer32,
lgpPwrMeasurementPointWattHours Integer32,
lgpPwrMeasurementPointVAPercent Integer32,
lgpPwrMeasurementPointNeutralCurrent Integer32,
lgpPwrMeasurementPointGroundCurrent Integer32,
lgpPwrMeasurementPointNomCurrent Integer32,
lgpPwrMeasurementPointNomPowerFactor Integer32,
lgpPwrMeasurementPointNomVA Integer32,
lgpPwrMeasurementPointNomW Integer32,
lgpPwrMeasurementPointPowerFactorTag INTEGER
}
lgpPwrMeasurementPointIndex OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is the index that indicates the row of the
'lgpPwrMeasurementPointTable' for a power measurement point."
::= { lgpPwrMeasurementPointEntry 1 }
lgpPwrMeasurementPointId OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"An OID representing a well known measurement point.
These object identifiers indicate a point or location of power
measurement in a power system. The OID's name usually
implies a location of the measurement point such as
'input', 'output', 'bypass' etc."
REFERENCE
"The object identifiers in this column can be found in the sub-tree
'lgpPwrWellKnownMeasurementPoints'."
::= { lgpPwrMeasurementPointEntry 2 }
lgpPwrMeasurementPointNumLines OBJECT-TYPE
SYNTAX Integer32
UNITS "Count"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of lines on the indicated power measurement point.
(i.e. the number of phases on the power source being measured.)"
::= { lgpPwrMeasurementPointEntry 3 }
lgpPwrMeasurementPointNomVolts OBJECT-TYPE
SYNTAX Integer32
UNITS "Volt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The magnitude of the nominal voltage on the power source being
measured."
::= { lgpPwrMeasurementPointEntry 4 }
lgpPwrMeasurementPointNomFrequency OBJECT-TYPE
SYNTAX Integer32
UNITS "Hertz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The nominal or configured/expected frequency for the power
source indicated by 'lgpPwrMeasurementPointId' in the
corresponding row in the lgpPwrMeasurementPointTable."
::= { lgpPwrMeasurementPointEntry 5 }
lgpPwrMeasurementPointFrequency OBJECT-TYPE
SYNTAX Integer32
UNITS "Hertz"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present (actual) frequency for the power source indicated
by 'lgpPwrMeasurementPointId' in the corresponding row in the
lgpPwrMeasurementPointTable."
::= { lgpPwrMeasurementPointEntry 6 }
lgpPwrMeasurementPointApparentPower OBJECT-TYPE
SYNTAX Integer32
UNITS "Volt-Amp"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present apparent AC power for the power source
indicated by 'lgpPwrMeasurementPointId' in the corresponding row
in the lgpPwrMeasurementPointTable."
::= { lgpPwrMeasurementPointEntry 7 }
lgpPwrMeasurementPointTruePower OBJECT-TYPE
SYNTAX Integer32
UNITS "Watt"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present AC power for the power source indicated by
'lgpPwrMeasurementPointId' in the corresponding row in the
lgpPwrMeasurementPointTable."
::= { lgpPwrMeasurementPointEntry 8 }
lgpPwrMeasurementPointPowerFactor OBJECT-TYPE
SYNTAX Integer32
UNITS ".01 Power Factor"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present Power Factor for the power source indicated by
'lgpPwrMeasurementPointId' in the corresponding row in the
lgpPwrMeasurementPointTable."
::= { lgpPwrMeasurementPointEntry 9 }
lgpPwrMeasurementPointWattHours OBJECT-TYPE
SYNTAX Integer32
UNITS "Watt-Hour"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present number of Watt Hours for the power source indicated by
'lgpPwrMeasurementPointId' in the corresponding row in the
lgpPwrMeasurementPointTable."
::= { lgpPwrMeasurementPointEntry 10 }
lgpPwrMeasurementPointVAPercent OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 Percent"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The percentage of the rated apparent AC power of the power
source indicated by 'lgpPwrMeasurementPointId' in the corresponding
row in the lgpPwrMeasurementPointTable."
::= { lgpPwrMeasurementPointEntry 11 }
lgpPwrMeasurementPointNeutralCurrent OBJECT-TYPE
SYNTAX Integer32
UNITS "Amp"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present neutral current of the power point indicated by
'lgpPwrMeasurementPointId' in the corresponding row in the
lgpPwrMeasurementPointTable."
::= { lgpPwrMeasurementPointEntry 12 }
lgpPwrMeasurementPointGroundCurrent OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 Amp"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present ground current of the power point indicated by
'lgpPwrMeasurementPointId' in the corresponding row in the
lgpPwrMeasurementPointTable."
::= { lgpPwrMeasurementPointEntry 13 }
lgpPwrMeasurementPointNomCurrent OBJECT-TYPE
SYNTAX Integer32
UNITS "0.1 Amp"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The nominal or configured/expected current of the power point
indicated by 'lgpPwrMeasurementPointId' in the corresponding row
in the lgpPwrMeasurementPointTable."
::= { lgpPwrMeasurementPointEntry 14 }
lgpPwrMeasurementPointNomPowerFactor OBJECT-TYPE
SYNTAX Integer32
UNITS ".01 Power Factor"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The nominal or configured/expected power factor of the power point
indicated by 'lgpPwrMeasurementPointId' in the corresponding row
in the lgpPwrMeasurementPointTable."
::= { lgpPwrMeasurementPointEntry 15 }
lgpPwrMeasurementPointNomVA OBJECT-TYPE
SYNTAX Integer32
UNITS "Volt-Amp"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The nominal or configured/expected apparent AC power for the power
source indicated by 'lgpPwrMeasurementPointId' in the corresponding
row in the lgpPwrMeasurementPointTable."
::= { lgpPwrMeasurementPointEntry 16 }
lgpPwrMeasurementPointNomW OBJECT-TYPE
SYNTAX Integer32
UNITS "Watt"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The nominal or configured/expected true AC power for the power
source indicated by 'lgpPwrMeasurementPointId' in the corresponding
row in the lgpPwrMeasurementPointTable."
::= { lgpPwrMeasurementPointEntry 17 }
lgpPwrMeasurementPointPowerFactorTag OBJECT-TYPE
SYNTAX INTEGER
{
leading(1),
lagging(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The present description of the Power Factor for the power source
indicated by 'lgpPwrMeasurementPointId' in the corresponding row
in the lgpPwrMeasurementPointTable. If Leading, the load is said
to be capacitive and the phase of the current leads the voltage.
If Lagging, the load is said to be inductive and the phase of the
current lags the voltage."
::= { lgpPwrMeasurementPointEntry 19 }
-- -----------------------------------------------------------------------------
-- Source Measurement Line/Phase Table
-- -----------------------------------------------------------------------------
lgpPwrLineMeasurementTable OBJECT-TYPE
SYNTAX SEQUENCE OF LgpPwrLineMeasurementEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A list of power measurements for each phase/line for a given
power measurement point/location in the 'lgpPwrMeasurementPointTable'.
The lgpPwrMeasurementPointIndex in this table corresponds to the
index in the lgpPwrMeasurementPointTable.
This table contains zero, one, or
many rows, depending upon the number of power line source objects
available. The NMS cannot create or delete rows from the table.
The rows are created by the agent based upon the capabilities of
the managed device."
::= { lgpPwrMeasurements 3 }
lgpPwrLineMeasurementEntry OBJECT-TYPE
SYNTAX LgpPwrLineMeasurementEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This entry defines the contents of the columns for the table
'lgpPwrLineMeasurementTable'."
REFERENCE
"The lgpPwrMeasurementPointIndex can be found in the
lgpPwrMeasurementPointTable. This index identifies the measurement
point for which the line detail measurement in the table applies."
INDEX { lgpPwrMeasurementPtIndex, lgpPwrLineMeasurementIndex }
::= { lgpPwrLineMeasurementTable 1 }
LgpPwrLineMeasurementEntry ::= SEQUENCE
{
lgpPwrMeasurementPtIndex Unsigned32,
lgpPwrLineMeasurementIndex Unsigned32,
lgpPwrMeasurementPoint OBJECT IDENTIFIER,
lgpPwrLineMeasurementVoltsLL Integer32,
lgpPwrLineMeasurementVoltsLN Integer32,
lgpPwrLineMeasurementCurrent Integer32,
lgpPwrLineMeasurementCapacity Integer32,
lgpPwrLineMeasurementVA Integer32,
lgpPwrLineMeasurementTruePower Integer32,
lgpPwrLineMeasurementVoltageTHD Integer32,
lgpPwrLineMeasurementCurrentTHD Integer32,
lgpPwrLineMeasurementKFactorCurrent Integer32,
lgpPwrLineMeasurementCrestFactorCurrent Integer32,