forked from prometheus/snmp_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
snmp.yml
27498 lines (27498 loc) · 906 KB
/
snmp.yml
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
# WARNING: This file was auto-generated using snmp_exporter generator, manual changes will be lost.
auths:
public_v1:
community: public
security_level: noAuthNoPriv
auth_protocol: MD5
priv_protocol: DES
version: 1
public_v2:
community: public
security_level: noAuthNoPriv
auth_protocol: MD5
priv_protocol: DES
version: 2
modules:
apcups:
walk:
- 1.3.6.1.4.1.318.1.1.1.12
- 1.3.6.1.4.1.318.1.1.1.2
- 1.3.6.1.4.1.318.1.1.1.3
- 1.3.6.1.4.1.318.1.1.1.4
- 1.3.6.1.4.1.318.1.1.1.7.2
- 1.3.6.1.4.1.318.1.1.10.2.3.2
- 1.3.6.1.4.1.318.1.1.26.10.2.2
- 1.3.6.1.4.1.318.1.1.26.4.3
- 1.3.6.1.4.1.318.1.1.26.6.3
- 1.3.6.1.4.1.318.1.1.26.8.3
get:
- 1.3.6.1.4.1.318.1.1.1.8.1.0
metrics:
- name: upsOutletGroupStatusTableSize
oid: 1.3.6.1.4.1.318.1.1.1.12.1.1
type: gauge
help: The number of outlet groups for the UPS. - 1.3.6.1.4.1.318.1.1.1.12.1.1
- name: upsOutletGroupStatusIndex
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.1
type: gauge
help: The index to the outlet group entry. - 1.3.6.1.4.1.318.1.1.1.12.1.2.1.1
indexes:
- labelname: upsOutletGroupStatusIndex
type: gauge
lookups:
- labels:
- upsOutletGroupStatusIndex
labelname: upsOutletGroupStatusName
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
type: DisplayString
- labels: []
labelname: upsOutletGroupStatusIndex
- name: upsOutletGroupStatusName
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
type: DisplayString
help: The name of the outlet group - 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
indexes:
- labelname: upsOutletGroupStatusIndex
type: gauge
lookups:
- labels:
- upsOutletGroupStatusIndex
labelname: upsOutletGroupStatusName
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
type: DisplayString
- labels: []
labelname: upsOutletGroupStatusIndex
- name: upsOutletGroupStatusGroupState
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.3
type: gauge
help: Getting this variable will return the outlet group state - 1.3.6.1.4.1.318.1.1.1.12.1.2.1.3
indexes:
- labelname: upsOutletGroupStatusIndex
type: gauge
lookups:
- labels:
- upsOutletGroupStatusIndex
labelname: upsOutletGroupStatusName
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
type: DisplayString
- labels: []
labelname: upsOutletGroupStatusIndex
enum_values:
1: upsOutletGroupStatusOn
2: upsOutletGroupStatusOff
3: upsOutletGroupStatusUnknown
- name: upsOutletGroupStatusCommandPending
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.4
type: gauge
help: Getting this variable will return the command pending state of the outlet
group - 1.3.6.1.4.1.318.1.1.1.12.1.2.1.4
indexes:
- labelname: upsOutletGroupStatusIndex
type: gauge
lookups:
- labels:
- upsOutletGroupStatusIndex
labelname: upsOutletGroupStatusName
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
type: DisplayString
- labels: []
labelname: upsOutletGroupStatusIndex
enum_values:
1: upsOutletGroupCommandPending
2: upsOutletGroupNoCommandPending
- name: upsOutletGroupStatusOutletType
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.5
type: gauge
help: Getting this variable will return the type of outlet group - 1.3.6.1.4.1.318.1.1.1.12.1.2.1.5
indexes:
- labelname: upsOutletGroupStatusIndex
type: gauge
lookups:
- labels:
- upsOutletGroupStatusIndex
labelname: upsOutletGroupStatusName
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
type: DisplayString
- labels: []
labelname: upsOutletGroupStatusIndex
enum_values:
1: upsSwitchedOutletGroup
2: upsMainOutletGroup
- name: upsOutletGroupStatusGroupFullState
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.6
type: DisplayString
help: An ASCII string containing the 32 flags representing the current state(s)
of the outlet group - 1.3.6.1.4.1.318.1.1.1.12.1.2.1.6
indexes:
- labelname: upsOutletGroupStatusIndex
type: gauge
lookups:
- labels:
- upsOutletGroupStatusIndex
labelname: upsOutletGroupStatusName
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
type: DisplayString
- labels: []
labelname: upsOutletGroupStatusIndex
- name: upsOutletGroupConfigTableSize
oid: 1.3.6.1.4.1.318.1.1.1.12.2.1
type: gauge
help: The number of outlet groups for the UPS. - 1.3.6.1.4.1.318.1.1.1.12.2.1
- name: upsOutletGroupConfigIndex
oid: 1.3.6.1.4.1.318.1.1.1.12.2.2.1.1
type: gauge
help: The index to the outlet group entry. - 1.3.6.1.4.1.318.1.1.1.12.2.2.1.1
indexes:
- labelname: upsOutletGroupConfigIndex
type: gauge
- name: upsOutletGroupConfigName
oid: 1.3.6.1.4.1.318.1.1.1.12.2.2.1.2
type: DisplayString
help: The name of the outlet group. - 1.3.6.1.4.1.318.1.1.1.12.2.2.1.2
indexes:
- labelname: upsOutletGroupConfigIndex
type: gauge
- name: upsOutletGroupConfigPowerOnDelay
oid: 1.3.6.1.4.1.318.1.1.1.12.2.2.1.3
type: gauge
help: The amount of time (seconds) the outlet group will delay powering on when
the delayed on, reboot, or shutdown command is applied - 1.3.6.1.4.1.318.1.1.1.12.2.2.1.3
indexes:
- labelname: upsOutletGroupConfigIndex
type: gauge
- name: upsOutletGroupConfigPowerOffDelay
oid: 1.3.6.1.4.1.318.1.1.1.12.2.2.1.4
type: gauge
help: The amount of time (seconds) the outlet group will delay powering off
when the delayed off, reboot, or shutdown command is applied - 1.3.6.1.4.1.318.1.1.1.12.2.2.1.4
indexes:
- labelname: upsOutletGroupConfigIndex
type: gauge
- name: upsOutletGroupConfigRebootDuration
oid: 1.3.6.1.4.1.318.1.1.1.12.2.2.1.5
type: gauge
help: During a reboot sequence, power is turned off and then back on - 1.3.6.1.4.1.318.1.1.1.12.2.2.1.5
indexes:
- labelname: upsOutletGroupConfigIndex
type: gauge
- name: upsOutletGroupConfigMinReturnRuntime
oid: 1.3.6.1.4.1.318.1.1.1.12.2.2.1.6
type: gauge
help: In an Outlet Group shutdown sequence, the Outlet Group cycles power off
then on - 1.3.6.1.4.1.318.1.1.1.12.2.2.1.6
indexes:
- labelname: upsOutletGroupConfigIndex
type: gauge
- name: upsOutletGroupConfigOutletType
oid: 1.3.6.1.4.1.318.1.1.1.12.2.2.1.7
type: gauge
help: Getting this variable will return the type of outlet group - 1.3.6.1.4.1.318.1.1.1.12.2.2.1.7
indexes:
- labelname: upsOutletGroupConfigIndex
type: gauge
enum_values:
1: upsSwitchedOutletGroup
2: upsMainOutletGroup
- name: upsOutletGroupConfigLoadShedControlSkipOffDelay
oid: 1.3.6.1.4.1.318.1.1.1.12.2.2.1.8
type: gauge
help: Configures whether the outlet group's off delay setting (upsOutletGroupConfigPowerOffDelay)
will be used in a load shedding situation, where applicable. - 1.3.6.1.4.1.318.1.1.1.12.2.2.1.8
indexes:
- labelname: upsOutletGroupConfigIndex
type: gauge
enum_values:
1: upsOutletGroupConfigSkipOffDelay
2: upsOutletGroupConfigUseOffDelay
- name: upsOutletGroupConfigLoadShedControlAutoRestart
oid: 1.3.6.1.4.1.318.1.1.1.12.2.2.1.9
type: gauge
help: Configures whether the outlet group will automatically restart after a
load shedding situation, where applicable. - 1.3.6.1.4.1.318.1.1.1.12.2.2.1.9
indexes:
- labelname: upsOutletGroupConfigIndex
type: gauge
enum_values:
1: upsOutletGroupConfigAutoRestart
2: upsOutletGroupConfigManualRestart
- name: upsOutletGroupConfigLoadShedControlTimeOnBattery
oid: 1.3.6.1.4.1.318.1.1.1.12.2.2.1.10
type: gauge
help: Configures whether the outlet group will load shed (turn off) after the
UPS device's time on battery has exceeded the upsOutletGroupConfigLoadShedTimeOnBattery
OID setting - 1.3.6.1.4.1.318.1.1.1.12.2.2.1.10
indexes:
- labelname: upsOutletGroupConfigIndex
type: gauge
enum_values:
1: upsOutletGroupConfigDisableTimeOnBatteryLoadShed
2: upsOutletGroupConfigEnableTimeOnBatteryLoadShed
- name: upsOutletGroupConfigLoadShedControlRuntimeRemaining
oid: 1.3.6.1.4.1.318.1.1.1.12.2.2.1.11
type: gauge
help: Configures whether the outlet group will load shed (turn off) when the
UPS is on battery and the remaining runtime is less than the upsOutletGroupConfigLoadShedRuntimeRemaining
OID setting - 1.3.6.1.4.1.318.1.1.1.12.2.2.1.11
indexes:
- labelname: upsOutletGroupConfigIndex
type: gauge
enum_values:
1: upsOutletGroupConfigDisableRuntimeRemainingLoadShed
2: upsOutletGroupConfigEnableRuntimeRemainingLoadShed
- name: upsOutletGroupConfigLoadShedControlInOverload
oid: 1.3.6.1.4.1.318.1.1.1.12.2.2.1.12
type: gauge
help: Configures whether the outlet group will load shed (turn off) when the
UPS is in an overload condition - 1.3.6.1.4.1.318.1.1.1.12.2.2.1.12
indexes:
- labelname: upsOutletGroupConfigIndex
type: gauge
enum_values:
1: upsOutletGroupConfigDisableInOverloadLoadShed
2: upsOutletGroupConfigEnableInOverloadLoadShed
- name: upsOutletGroupConfigLoadShedTimeOnBattery
oid: 1.3.6.1.4.1.318.1.1.1.12.2.2.1.13
type: gauge
help: When the UPS has been on battery for more time than this value, the outlet
group will turn off if this condition is enabled by the upsOutletGroupConfigLoadShedControlTimeOnBattery
OID - 1.3.6.1.4.1.318.1.1.1.12.2.2.1.13
indexes:
- labelname: upsOutletGroupConfigIndex
type: gauge
- name: upsOutletGroupConfigLoadShedRuntimeRemaining
oid: 1.3.6.1.4.1.318.1.1.1.12.2.2.1.14
type: gauge
help: When the runtime remaining is less than this value, the outlet group will
turn off if this condition is enabled by the upsOutletGroupConfigLoadShedControlRuntimeRemaining
OID - 1.3.6.1.4.1.318.1.1.1.12.2.2.1.14
indexes:
- labelname: upsOutletGroupConfigIndex
type: gauge
- name: upsOutletGroupControlTableSize
oid: 1.3.6.1.4.1.318.1.1.1.12.3.1
type: gauge
help: The number of outlet groups for the UPS. - 1.3.6.1.4.1.318.1.1.1.12.3.1
- name: upsOutletGroupControlIndex
oid: 1.3.6.1.4.1.318.1.1.1.12.3.2.1.1
type: gauge
help: The index to the outlet group entry. - 1.3.6.1.4.1.318.1.1.1.12.3.2.1.1
indexes:
- labelname: upsOutletGroupControlIndex
type: gauge
- name: upsOutletGroupControlName
oid: 1.3.6.1.4.1.318.1.1.1.12.3.2.1.2
type: DisplayString
help: The name of the outlet group - 1.3.6.1.4.1.318.1.1.1.12.3.2.1.2
indexes:
- labelname: upsOutletGroupControlIndex
type: gauge
- name: upsOutletGroupControlCommand
oid: 1.3.6.1.4.1.318.1.1.1.12.3.2.1.3
type: gauge
help: Getting this variable will return the outlet group state - 1.3.6.1.4.1.318.1.1.1.12.3.2.1.3
indexes:
- labelname: upsOutletGroupControlIndex
type: gauge
enum_values:
1: upsOutletGroupImmediateOn
2: upsOutletGroupImmediateOff
3: upsOutletGroupImmediateRebootWithOrWithoutAC
4: upsOutletGroupDelayedOn
5: upsOutletGroupDelayedOff
6: upsOutletGroupDelayedRebootWithOrWithoutAC
7: upsOutletGroupCancelPendingCommand
8: upsOutletGroupControlUnknown
9: upsOutletGroupImmediateRebootShutdown
10: upsOutletGroupDelayedRebootShutdown
- name: upsOutletGroupControlOutletType
oid: 1.3.6.1.4.1.318.1.1.1.12.3.2.1.4
type: gauge
help: Getting this variable will return the type of outlet group - 1.3.6.1.4.1.318.1.1.1.12.3.2.1.4
indexes:
- labelname: upsOutletGroupControlIndex
type: gauge
enum_values:
1: upsSwitchedOutletGroup
2: upsMainOutletGroup
- name: upsBasicBatteryStatus
oid: 1.3.6.1.4.1.318.1.1.1.2.1.1
type: gauge
help: The status of the UPS batteries - 1.3.6.1.4.1.318.1.1.1.2.1.1
enum_values:
1: unknown
2: batteryNormal
3: batteryLow
4: batteryInFaultCondition
5: noBatteryPresent
- name: upsBasicBatteryTimeOnBattery
oid: 1.3.6.1.4.1.318.1.1.1.2.1.2
type: gauge
help: The elapsed time since the UPS has switched to battery power. - 1.3.6.1.4.1.318.1.1.1.2.1.2
- name: upsBasicBatteryLastReplaceDate
oid: 1.3.6.1.4.1.318.1.1.1.2.1.3
type: DisplayString
help: The date when the UPS system's batteries were last replaced in mm/dd/yy
(or yyyy) format - 1.3.6.1.4.1.318.1.1.1.2.1.3
- name: upsAdvBatteryCapacity
oid: 1.3.6.1.4.1.318.1.1.1.2.2.1
type: gauge
help: The remaining battery capacity expressed in percent of full capacity -
1.3.6.1.4.1.318.1.1.1.2.2.1
- name: upsAdvBatteryTemperature
oid: 1.3.6.1.4.1.318.1.1.1.2.2.2
type: gauge
help: The current internal UPS temperature expressed in Celsius - 1.3.6.1.4.1.318.1.1.1.2.2.2
- name: upsAdvBatteryRunTimeRemaining
oid: 1.3.6.1.4.1.318.1.1.1.2.2.3
type: gauge
help: The UPS battery run time remaining before battery exhaustion. - 1.3.6.1.4.1.318.1.1.1.2.2.3
- name: upsAdvBatteryReplaceIndicator
oid: 1.3.6.1.4.1.318.1.1.1.2.2.4
type: gauge
help: Indicates whether the UPS batteries need replacing. - 1.3.6.1.4.1.318.1.1.1.2.2.4
enum_values:
1: noBatteryNeedsReplacing
2: batteryNeedsReplacing
- name: upsAdvBatteryNumOfBattPacks
oid: 1.3.6.1.4.1.318.1.1.1.2.2.5
type: gauge
help: The number of external battery packs connected to the UPS - 1.3.6.1.4.1.318.1.1.1.2.2.5
- name: upsAdvBatteryNumOfBadBattPacks
oid: 1.3.6.1.4.1.318.1.1.1.2.2.6
type: gauge
help: The number of external battery packs connected to the UPS that are defective
- 1.3.6.1.4.1.318.1.1.1.2.2.6
- name: upsAdvBatteryNominalVoltage
oid: 1.3.6.1.4.1.318.1.1.1.2.2.7
type: gauge
help: The nominal battery voltage in Volts. - 1.3.6.1.4.1.318.1.1.1.2.2.7
- name: upsAdvBatteryActualVoltage
oid: 1.3.6.1.4.1.318.1.1.1.2.2.8
type: gauge
help: The actual battery bus voltage in Volts - 1.3.6.1.4.1.318.1.1.1.2.2.8
- name: upsAdvBatteryCurrent
oid: 1.3.6.1.4.1.318.1.1.1.2.2.9
type: gauge
help: The battery current in Amps - 1.3.6.1.4.1.318.1.1.1.2.2.9
- name: upsAdvTotalDCCurrent
oid: 1.3.6.1.4.1.318.1.1.1.2.2.10
type: gauge
help: The total DC current in Amps. - 1.3.6.1.4.1.318.1.1.1.2.2.10
- name: upsAdvBatteryFullCapacity
oid: 1.3.6.1.4.1.318.1.1.1.2.2.11
type: gauge
help: The full chargeable capacity of the battery which is expressed in percentage.
- 1.3.6.1.4.1.318.1.1.1.2.2.11
- name: upsAdvBatteryActualVoltageTableIndex
oid: 1.3.6.1.4.1.318.1.1.1.2.2.12.1.1
type: gauge
help: The Battery Frame identifier - 1.3.6.1.4.1.318.1.1.1.2.2.12.1.1
indexes:
- labelname: upsAdvBatteryActualVoltageTableIndex
type: gauge
- name: upsAdvBatteryActualVoltagePolarity
oid: 1.3.6.1.4.1.318.1.1.1.2.2.12.1.2
type: gauge
help: The selected Battery Voltage Polarity - 1.3.6.1.4.1.318.1.1.1.2.2.12.1.2
indexes:
- labelname: upsAdvBatteryActualVoltageTableIndex
type: gauge
enum_values:
0: positive
1: negative
- name: upsAdvBatteryFrameActualVoltage
oid: 1.3.6.1.4.1.318.1.1.1.2.2.12.1.3
type: gauge
help: The actual battery bus voltage in Volts. - 1.3.6.1.4.1.318.1.1.1.2.2.12.1.3
indexes:
- labelname: upsAdvBatteryActualVoltageTableIndex
type: gauge
- name: upsAdvTotalDCCurrentTableIndex
oid: 1.3.6.1.4.1.318.1.1.1.2.2.13.1.1
type: gauge
help: The Battery Frame identifier - 1.3.6.1.4.1.318.1.1.1.2.2.13.1.1
indexes:
- labelname: upsAdvTotalDCCurrentTableIndex
type: gauge
- name: upsAdvTotalDCCurrentPolarity
oid: 1.3.6.1.4.1.318.1.1.1.2.2.13.1.2
type: gauge
help: The selected Battery Current Polarity - 1.3.6.1.4.1.318.1.1.1.2.2.13.1.2
indexes:
- labelname: upsAdvTotalDCCurrentTableIndex
type: gauge
enum_values:
0: positive
1: negative
- name: upsAdvTotalFrameDCCurrent
oid: 1.3.6.1.4.1.318.1.1.1.2.2.13.1.3
type: gauge
help: The Total DC Current of battery in Amperes. - 1.3.6.1.4.1.318.1.1.1.2.2.13.1.3
indexes:
- labelname: upsAdvTotalDCCurrentTableIndex
type: gauge
- name: upsAdvBatteryCurrentTableIndex
oid: 1.3.6.1.4.1.318.1.1.1.2.2.14.1.1
type: gauge
help: The Battery Frame identifier - 1.3.6.1.4.1.318.1.1.1.2.2.14.1.1
indexes:
- labelname: upsAdvBatteryCurrentTableIndex
type: gauge
- labelname: upsAdvBatteryCurrentIndex
type: gauge
- name: upsAdvBatteryCurrentIndex
oid: 1.3.6.1.4.1.318.1.1.1.2.2.14.1.2
type: gauge
help: The battery frame identifier. - 1.3.6.1.4.1.318.1.1.1.2.2.14.1.2
indexes:
- labelname: upsAdvBatteryCurrentTableIndex
type: gauge
- labelname: upsAdvBatteryCurrentIndex
type: gauge
- name: upsAdvBatteryCurrentPolarity
oid: 1.3.6.1.4.1.318.1.1.1.2.2.14.1.3
type: gauge
help: The selected Battery current polarity - 1.3.6.1.4.1.318.1.1.1.2.2.14.1.3
indexes:
- labelname: upsAdvBatteryCurrentTableIndex
type: gauge
- labelname: upsAdvBatteryCurrentIndex
type: gauge
enum_values:
0: positive
1: negative
- name: upsAdvBatteryFrameCurrent
oid: 1.3.6.1.4.1.318.1.1.1.2.2.14.1.4
type: gauge
help: The Battery current measured in Amperes - 1.3.6.1.4.1.318.1.1.1.2.2.14.1.4
indexes:
- labelname: upsAdvBatteryCurrentTableIndex
type: gauge
- labelname: upsAdvBatteryCurrentIndex
type: gauge
- name: upsAdvBatteryEstimatedChargeTime
oid: 1.3.6.1.4.1.318.1.1.1.2.2.15
type: gauge
help: The estimated remaining time required to charge the UPS to a full state
of charge. - 1.3.6.1.4.1.318.1.1.1.2.2.15
- name: upsAdvBatteryPower
oid: 1.3.6.1.4.1.318.1.1.1.2.2.16
type: gauge
help: The measured battery power in kW. - 1.3.6.1.4.1.318.1.1.1.2.2.16
- name: upsAdvBatteryChargerStatus
oid: 1.3.6.1.4.1.318.1.1.1.2.2.17
type: EnumAsStateSet
help: The status of the battery charger - 1.3.6.1.4.1.318.1.1.1.2.2.17
enum_values:
1: unknown
2: ok
3: inFaultCondition
4: floatCharging
5: boostCharging
6: resting
7: notCharging
8: equalizationCharging
9: testInProgress
10: cyclicFloatCharging
- name: upsAdvBatteryInternalSKU
oid: 1.3.6.1.4.1.318.1.1.1.2.2.19
type: DisplayString
help: The SKU of the internal battery. - 1.3.6.1.4.1.318.1.1.1.2.2.19
- name: upsAdvBatteryExternalSKU
oid: 1.3.6.1.4.1.318.1.1.1.2.2.20
type: DisplayString
help: The SKU of the external battery. - 1.3.6.1.4.1.318.1.1.1.2.2.20
- name: upsAdvBatteryRecommendedReplaceDate
oid: 1.3.6.1.4.1.318.1.1.1.2.2.21
type: DisplayString
help: The recommended replacement date for the battery based on the UPS internal
battery life algorithm. - 1.3.6.1.4.1.318.1.1.1.2.2.21
- name: upsAdvBatteryNominalBackupTime
oid: 1.3.6.1.4.1.318.1.1.1.2.2.22
type: gauge
help: Defines the runtime of the user supplied battery in minutes, when battery
is new. - 1.3.6.1.4.1.318.1.1.1.2.2.22
- name: upsAdvBatteryCondition
oid: 1.3.6.1.4.1.318.1.1.1.2.2.23
type: EnumAsStateSet
help: Health of the battries based on the battery test. - 1.3.6.1.4.1.318.1.1.1.2.2.23
enum_values:
1: unknown
2: ok
3: weak
4: poor
- name: upsAdvBatteryChargingCurrentRestricted
oid: 1.3.6.1.4.1.318.1.1.1.2.2.24
type: EnumAsStateSet
help: Indicates whether battery charging current is restricted or not - 1.3.6.1.4.1.318.1.1.1.2.2.24
enum_values:
1: "yes"
2: "no"
- name: upsAdvBatteryTotalCapacity
oid: 1.3.6.1.4.1.318.1.1.1.2.2.25
type: gauge
help: The actual available battery capacity of the system expressed in ampere
hours (Ah) - 1.3.6.1.4.1.318.1.1.1.2.2.25
- name: upsAdvBatteryFuseStatus
oid: 1.3.6.1.4.1.318.1.1.1.2.2.26
type: gauge
help: If battery system has one common fuse for the battery system, the status
is given by this value - 1.3.6.1.4.1.318.1.1.1.2.2.26
enum_values:
1: fuseOpen
2: fuseOk
3: notPresent
- name: upsAdvBatteryBreakerStatus
oid: 1.3.6.1.4.1.318.1.1.1.2.2.27
type: gauge
help: The value indicates the aggregated status of the battery breakers in the
system - 1.3.6.1.4.1.318.1.1.1.2.2.27
enum_values:
1: disconnected
2: closed
3: notPresent
- name: upsAdvBatteryWiringConfiguration
oid: 1.3.6.1.4.1.318.1.1.1.2.2.28
type: gauge
help: The value indicates the wiring configuration, whether the battery is 2-wire
or 3-wire - 1.3.6.1.4.1.318.1.1.1.2.2.28
enum_values:
1: twoWire
2: threeWire
- name: upsHighPrecBatteryCapacity
oid: 1.3.6.1.4.1.318.1.1.1.2.3.1
type: gauge
help: The remaining battery capacity expressed in tenths of percent of full
capacity. - 1.3.6.1.4.1.318.1.1.1.2.3.1
- name: upsHighPrecBatteryTemperature
oid: 1.3.6.1.4.1.318.1.1.1.2.3.2
type: gauge
help: The current internal UPS temperature expressed in tenths of degrees Celsius
- 1.3.6.1.4.1.318.1.1.1.2.3.2
- name: upsHighPrecBatteryNominalVoltage
oid: 1.3.6.1.4.1.318.1.1.1.2.3.3
type: gauge
help: The nominal battery voltage in tenths of Volts. - 1.3.6.1.4.1.318.1.1.1.2.3.3
- name: upsHighPrecBatteryActualVoltage
oid: 1.3.6.1.4.1.318.1.1.1.2.3.4
type: gauge
help: The actual battery bus voltage in tenths of Volts. - 1.3.6.1.4.1.318.1.1.1.2.3.4
- name: upsHighPrecBatteryCurrent
oid: 1.3.6.1.4.1.318.1.1.1.2.3.5
type: gauge
help: The battery current in tenths of Amps - 1.3.6.1.4.1.318.1.1.1.2.3.5
- name: upsHighPrecTotalDCCurrent
oid: 1.3.6.1.4.1.318.1.1.1.2.3.6
type: gauge
help: The total DC current in tenths of Amps. - 1.3.6.1.4.1.318.1.1.1.2.3.6
- name: upsHighPrecBatteryActualVoltageTableIndex
oid: 1.3.6.1.4.1.318.1.1.1.2.3.7.1.1
type: gauge
help: The Battery Frame identifier - 1.3.6.1.4.1.318.1.1.1.2.3.7.1.1
indexes:
- labelname: upsHighPrecBatteryActualVoltageTableIndex
type: gauge
- name: upsHighPrecBatteryActualVoltagePolarity
oid: 1.3.6.1.4.1.318.1.1.1.2.3.7.1.2
type: gauge
help: The selected Battery Voltage polarity - 1.3.6.1.4.1.318.1.1.1.2.3.7.1.2
indexes:
- labelname: upsHighPrecBatteryActualVoltageTableIndex
type: gauge
enum_values:
0: positive
1: negative
- name: upsHighPrecBatteryVoltage
oid: 1.3.6.1.4.1.318.1.1.1.2.3.7.1.3
type: gauge
help: The actual battery bus voltage expressed as tenths of Volts - 1.3.6.1.4.1.318.1.1.1.2.3.7.1.3
indexes:
- labelname: upsHighPrecBatteryActualVoltageTableIndex
type: gauge
- name: upsHighPrecTotalDCCurrentTableIndex
oid: 1.3.6.1.4.1.318.1.1.1.2.3.8.1.1
type: gauge
help: The Battery Frame identifier - 1.3.6.1.4.1.318.1.1.1.2.3.8.1.1
indexes:
- labelname: upsHighPrecTotalDCCurrentTableIndex
type: gauge
- name: upsHighPrecTotalDCCurrentPolarity
oid: 1.3.6.1.4.1.318.1.1.1.2.3.8.1.2
type: gauge
help: The selected Battery Current polarity - 1.3.6.1.4.1.318.1.1.1.2.3.8.1.2
indexes:
- labelname: upsHighPrecTotalDCCurrentTableIndex
type: gauge
enum_values:
0: positive
1: negative
- name: upsHighPrecTotalDCFrameCurrent
oid: 1.3.6.1.4.1.318.1.1.1.2.3.8.1.3
type: gauge
help: The total DC current in tenths of Amperes. - 1.3.6.1.4.1.318.1.1.1.2.3.8.1.3
indexes:
- labelname: upsHighPrecTotalDCCurrentTableIndex
type: gauge
- name: upsHighPrecBatteryCurrentTableIndex
oid: 1.3.6.1.4.1.318.1.1.1.2.3.9.1.1
type: gauge
help: The Battery frame identifier - 1.3.6.1.4.1.318.1.1.1.2.3.9.1.1
indexes:
- labelname: upsHighPrecBatteryCurrentTableIndex
type: gauge
- labelname: upsHighPrecBatteryCurrentIndex
type: gauge
- name: upsHighPrecBatteryCurrentIndex
oid: 1.3.6.1.4.1.318.1.1.1.2.3.9.1.2
type: gauge
help: The Battery frame identifier - 1.3.6.1.4.1.318.1.1.1.2.3.9.1.2
indexes:
- labelname: upsHighPrecBatteryCurrentTableIndex
type: gauge
- labelname: upsHighPrecBatteryCurrentIndex
type: gauge
- name: upsHighPrecBatteryCurrentPolarity
oid: 1.3.6.1.4.1.318.1.1.1.2.3.9.1.3
type: gauge
help: The selected Battery Current polarity - 1.3.6.1.4.1.318.1.1.1.2.3.9.1.3
indexes:
- labelname: upsHighPrecBatteryCurrentTableIndex
type: gauge
- labelname: upsHighPrecBatteryCurrentIndex
type: gauge
enum_values:
0: positive
1: negative
- name: upsHighPrecBatteryFrameCurrent
oid: 1.3.6.1.4.1.318.1.1.1.2.3.9.1.4
type: gauge
help: The Battery current in tenths of Amperes. - 1.3.6.1.4.1.318.1.1.1.2.3.9.1.4
indexes:
- labelname: upsHighPrecBatteryCurrentTableIndex
type: gauge
- labelname: upsHighPrecBatteryCurrentIndex
type: gauge
- name: upsHighPrecBatteryPackTableSize
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.1
type: gauge
help: The number of entries in the upsHighPrecBatteryPacks. - 1.3.6.1.4.1.318.1.1.1.2.3.10.1
- name: upsHighPrecBatteryPackIndex
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1
type: gauge
help: The battery pack identifier. - 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.1
indexes:
- labelname: upsHighPrecBatteryPackIndex
type: gauge
- labelname: upsHighPrecBatteryCartridgeIndex
type: gauge
- name: upsHighPrecBatteryCartridgeIndex
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2
type: gauge
help: The battery cartridge identifier. - 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.2
indexes:
- labelname: upsHighPrecBatteryPackIndex
type: gauge
- labelname: upsHighPrecBatteryCartridgeIndex
type: gauge
- name: upsHighPrecBatteryPackFirmwareRevision
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.3
type: DisplayString
help: The battery pack firmware revision. - 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.3
indexes:
- labelname: upsHighPrecBatteryPackIndex
type: gauge
- labelname: upsHighPrecBatteryCartridgeIndex
type: gauge
- name: upsHighPrecBatteryPackSerialNumber
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4
type: DisplayString
help: The battery pack serial number. - 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.4
indexes:
- labelname: upsHighPrecBatteryPackIndex
type: gauge
- labelname: upsHighPrecBatteryCartridgeIndex
type: gauge
- name: upsHighPrecBatteryPackTemperature
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5
type: gauge
help: The battery pack temperature measured in 10ths of degree Celcius - 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.5
indexes:
- labelname: upsHighPrecBatteryPackIndex
type: gauge
- labelname: upsHighPrecBatteryCartridgeIndex
type: gauge
- name: upsHighPrecBatteryPackStatus
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.6
type: OctetString
help: The battery status for the pack only - 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.6
indexes:
- labelname: upsHighPrecBatteryPackIndex
type: gauge
- labelname: upsHighPrecBatteryCartridgeIndex
type: gauge
- name: upsHighPrecBatteryPackCartridgeHealth
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7
type: OctetString
help: The battery cartridge health - 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.7
indexes:
- labelname: upsHighPrecBatteryPackIndex
type: gauge
- labelname: upsHighPrecBatteryCartridgeIndex
type: gauge
- name: upsHighPrecBatteryPackCartridgeReplaceDate
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8
type: DisplayString
help: The battery cartridge estimated battery replace date. - 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.8
indexes:
- labelname: upsHighPrecBatteryPackIndex
type: gauge
- labelname: upsHighPrecBatteryCartridgeIndex
type: gauge
- name: upsHighPrecBatteryPackCartridgeInstallDate
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.9
type: DisplayString
help: The battery cartridge install date. - 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.9
indexes:
- labelname: upsHighPrecBatteryPackIndex
type: gauge
- labelname: upsHighPrecBatteryCartridgeIndex
type: gauge
- name: upsHighPrecBatteryPackCartridgeStatus
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10
type: OctetString
help: The battery cartridge status - 1.3.6.1.4.1.318.1.1.1.2.3.10.2.1.10
indexes:
- labelname: upsHighPrecBatteryPackIndex
type: gauge
- labelname: upsHighPrecBatteryCartridgeIndex
type: gauge
- name: upsHighPrecBatteryPackOnlyTableSize
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.3
type: gauge
help: The number of entries in the upsHighPrecBatteryPacks. - 1.3.6.1.4.1.318.1.1.1.2.3.10.3
- name: upsHighPrecBatteryPackOnlyIndex
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.1
type: gauge
help: The battery pack identifier. - 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.1
indexes:
- labelname: upsHighPrecBatteryPackOnlyIndex
type: gauge
- name: upsHighPrecBatteryPackOnlyFirmwareRevision
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.2
type: DisplayString
help: The battery pack firmware revision. - 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.2
indexes:
- labelname: upsHighPrecBatteryPackOnlyIndex
type: gauge
- name: upsHighPrecBatteryPackOnlySerialNumber
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.3
type: DisplayString
help: The battery pack serial number. - 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.3
indexes:
- labelname: upsHighPrecBatteryPackOnlyIndex
type: gauge
- name: upsHighPrecBatteryPackOnlyTemperature
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.4
type: gauge
help: The battery pack temperature measured in 10ths of degree Celcius - 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.4
indexes:
- labelname: upsHighPrecBatteryPackOnlyIndex
type: gauge
- name: upsHighPrecBatteryPackOnlyStatus
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5
type: OctetString
help: The battery status for the pack only - 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.5
indexes:
- labelname: upsHighPrecBatteryPackOnlyIndex
type: gauge
- name: upsHighPrecBatteryPackOnlyHealth
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.6
type: OctetString
help: The battery pack health - 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.6
indexes:
- labelname: upsHighPrecBatteryPackOnlyIndex
type: gauge
- name: upsHighPrecBatteryPackOnlyReplaceDate
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.7
type: DisplayString
help: The battery pack estimated battery replace date. - 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.7
indexes:
- labelname: upsHighPrecBatteryPackOnlyIndex
type: gauge
- name: upsHighPrecBatteryPackOnlyInstallDate
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.8
type: DisplayString
help: The battery pack install date. - 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.8
indexes:
- labelname: upsHighPrecBatteryPackOnlyIndex
type: gauge
- name: upsHighPrecBatteryPackOnlyManufactureDate
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.9
type: DisplayString
help: The battery pack manufacture date. - 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.9
indexes:
- labelname: upsHighPrecBatteryPackOnlyIndex
type: gauge
- name: upsHighPrecBatteryPackOnlySKU
oid: 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.10
type: DisplayString
help: The battery pack SKU. - 1.3.6.1.4.1.318.1.1.1.2.3.10.4.1.10
indexes:
- labelname: upsHighPrecBatteryPackOnlyIndex
type: gauge
- name: upsHighPrecBatteryHealth
oid: 1.3.6.1.4.1.318.1.1.1.2.3.11
type: OctetString
help: The battery health - 1.3.6.1.4.1.318.1.1.1.2.3.11
- name: upsHighPrecActivePower
oid: 1.3.6.1.4.1.318.1.1.1.2.3.12
type: gauge
help: Active Power of Battery in tenths of kW - 1.3.6.1.4.1.318.1.1.1.2.3.12
- name: upsHighPrecExtdBatteryTemperature
oid: 1.3.6.1.4.1.318.1.1.1.2.3.13
type: gauge
help: The current internal UPS temperature expressed in tenths of degrees Celsius
- 1.3.6.1.4.1.318.1.1.1.2.3.13
- name: upsHighPrecMaximumModuleTemperature
oid: 1.3.6.1.4.1.318.1.1.1.2.3.14
type: gauge
help: The current maximum temperature across all battery modules in tenths of
degrees Celsius - 1.3.6.1.4.1.318.1.1.1.2.3.14
- name: upsHighPrecMinimumModuleTemperature
oid: 1.3.6.1.4.1.318.1.1.1.2.3.15
type: gauge
help: The current minimum temperature across all battery modules in tenths of
degrees Celsius - 1.3.6.1.4.1.318.1.1.1.2.3.15
- name: upsHighPrecMaximumCellVoltage
oid: 1.3.6.1.4.1.318.1.1.1.2.3.16
type: gauge
help: The current maximum cell voltage in mVDC across all batteries. - 1.3.6.1.4.1.318.1.1.1.2.3.16
- name: upsHighPrecMinimumCellVoltage
oid: 1.3.6.1.4.1.318.1.1.1.2.3.17
type: gauge
help: The current minimum cell voltage in mVDC across all batteries. - 1.3.6.1.4.1.318.1.1.1.2.3.17
- name: upsBatteryNumberOfCabinets
oid: 1.3.6.1.4.1.318.1.1.1.2.4
type: gauge
help: The value indicates the number of battery cabinets in total, internal
and external - 1.3.6.1.4.1.318.1.1.1.2.4
- name: upsBatteryCabinetIndex
oid: 1.3.6.1.4.1.318.1.1.1.2.5.1.1
type: gauge
help: The Battery Cabinet identifier - 1.3.6.1.4.1.318.1.1.1.2.5.1.1
indexes:
- labelname: upsBatteryCabinetIndex
type: gauge
- name: upsBatteryCabinetLocalIndex
oid: 1.3.6.1.4.1.318.1.1.1.2.5.1.2
type: gauge
help: The identification number for the actual battery cabinet in the system
- 1.3.6.1.4.1.318.1.1.1.2.5.1.2
indexes:
- labelname: upsBatteryCabinetIndex
type: gauge
- name: upsBatteryCabinetWiringConfiguration
oid: 1.3.6.1.4.1.318.1.1.1.2.5.1.3
type: gauge
help: The value indicates the wiring configuration, whether the battery is 2-wire
or 3-wire - 1.3.6.1.4.1.318.1.1.1.2.5.1.3
indexes:
- labelname: upsBatteryCabinetIndex
type: gauge
enum_values:
1: twoWire
2: threeWire
- name: upsBatteryCabinetVoltagePolarity1
oid: 1.3.6.1.4.1.318.1.1.1.2.5.1.4
type: gauge
help: The battery voltage - 1.3.6.1.4.1.318.1.1.1.2.5.1.4
indexes:
- labelname: upsBatteryCabinetIndex
type: gauge
- name: upsBatteryCabinetVoltagePolarity2
oid: 1.3.6.1.4.1.318.1.1.1.2.5.1.5
type: gauge
help: The voltage for the second side/half of the battery in a split battery
system - 1.3.6.1.4.1.318.1.1.1.2.5.1.5
indexes:
- labelname: upsBatteryCabinetIndex
type: gauge
- name: upsBatteryCabinetCurrentPolarity1
oid: 1.3.6.1.4.1.318.1.1.1.2.5.1.6
type: gauge
help: The battery current - 1.3.6.1.4.1.318.1.1.1.2.5.1.6
indexes:
- labelname: upsBatteryCabinetIndex
type: gauge
- name: upsBatteryCabinetCurrentPolarity2
oid: 1.3.6.1.4.1.318.1.1.1.2.5.1.7
type: gauge
help: The current for the second side/half of the battery in a split battery
system - 1.3.6.1.4.1.318.1.1.1.2.5.1.7
indexes:
- labelname: upsBatteryCabinetIndex
type: gauge
- name: upsBatteryCabinetTemperature
oid: 1.3.6.1.4.1.318.1.1.1.2.5.1.8
type: gauge
help: The measured temperature of the battery cabinet in tenths of degrees Celcius
- 1.3.6.1.4.1.318.1.1.1.2.5.1.8
indexes:
- labelname: upsBatteryCabinetIndex
type: gauge
- name: upsBatteryCabinetMaxTemperature
oid: 1.3.6.1.4.1.318.1.1.1.2.5.1.9
type: gauge
help: The highest temperature measured for the battery in the battery cabinet
in tenths of degrees Celcius - 1.3.6.1.4.1.318.1.1.1.2.5.1.9
indexes:
- labelname: upsBatteryCabinetIndex
type: gauge
- name: upsBatteryCabinetMinTemperature
oid: 1.3.6.1.4.1.318.1.1.1.2.5.1.10
type: gauge
help: The lowest temperature measured for the battery in the battery cabinet
in tenths of degrees Celcius - 1.3.6.1.4.1.318.1.1.1.2.5.1.10
indexes:
- labelname: upsBatteryCabinetIndex
type: gauge
- name: upsBatteryCabinetAverageTemperature
oid: 1.3.6.1.4.1.318.1.1.1.2.5.1.11
type: gauge
help: The average temperature for all the battery sensors in the battery cabinet
and for the battery strings, if battery strings are present - 1.3.6.1.4.1.318.1.1.1.2.5.1.11
indexes:
- labelname: upsBatteryCabinetIndex
type: gauge
- name: upsBatteryCabinetFuse
oid: 1.3.6.1.4.1.318.1.1.1.2.5.1.12
type: gauge
help: If the battery cabinet has a common fuse, the status is given by this
value - 1.3.6.1.4.1.318.1.1.1.2.5.1.12
indexes:
- labelname: upsBatteryCabinetIndex
type: gauge
enum_values:
1: fuseOpen
2: fuseOk
3: notPresent
- name: upsBatteryCabinetBreaker
oid: 1.3.6.1.4.1.318.1.1.1.2.5.1.13
type: gauge
help: The value indicates the battery cabinet breaker status - 1.3.6.1.4.1.318.1.1.1.2.5.1.13
indexes:
- labelname: upsBatteryCabinetIndex
type: gauge
enum_values:
1: noBreaker
2: unknown
3: breakerOpen
4: breakerClosed
- name: upsBatteryCabinetNumberOfStrings
oid: 1.3.6.1.4.1.318.1.1.1.2.5.1.14
type: gauge
help: The number of battery strings in the battery cabinet - 1.3.6.1.4.1.318.1.1.1.2.5.1.14
indexes:
- labelname: upsBatteryCabinetIndex
type: gauge
- name: upsBatteryCabinetNumberOfVerticalPositions
oid: 1.3.6.1.4.1.318.1.1.1.2.5.1.15
type: gauge