-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsnmp.yml
8815 lines (8807 loc) · 289 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
apcups:
walk:
- 1.3.6.1.2.1.1.3
- 1.3.6.1.2.1.2
- 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.1.8.1
- 1.3.6.1.4.1.318.1.1.10.2.3.2
metrics:
- name: sysUpTime
oid: 1.3.6.1.2.1.1.3
type: gauge
help: The time (in hundredths of a second) since the network management portion
of the system was last re-initialized. - 1.3.6.1.2.1.1.3
- name: ifNumber
oid: 1.3.6.1.2.1.2.1
type: gauge
help: The number of network interfaces (regardless of their current state) present
on this system. - 1.3.6.1.2.1.2.1
- name: ifIndex
oid: 1.3.6.1.2.1.2.2.1.1
type: gauge
help: A unique value, greater than zero, for each interface - 1.3.6.1.2.1.2.2.1.1
indexes:
- labelname: ifIndex
type: gauge
- name: ifDescr
oid: 1.3.6.1.2.1.2.2.1.2
type: DisplayString
help: A textual string containing information about the interface - 1.3.6.1.2.1.2.2.1.2
indexes:
- labelname: ifIndex
type: gauge
- name: ifType
oid: 1.3.6.1.2.1.2.2.1.3
type: gauge
help: The type of interface - 1.3.6.1.2.1.2.2.1.3
indexes:
- labelname: ifIndex
type: gauge
- name: ifMtu
oid: 1.3.6.1.2.1.2.2.1.4
type: gauge
help: The size of the largest packet which can be sent/received on the interface,
specified in octets - 1.3.6.1.2.1.2.2.1.4
indexes:
- labelname: ifIndex
type: gauge
- name: ifSpeed
oid: 1.3.6.1.2.1.2.2.1.5
type: gauge
help: An estimate of the interface's current bandwidth in bits per second - 1.3.6.1.2.1.2.2.1.5
indexes:
- labelname: ifIndex
type: gauge
- name: ifPhysAddress
oid: 1.3.6.1.2.1.2.2.1.6
type: PhysAddress48
help: The interface's address at its protocol sub-layer - 1.3.6.1.2.1.2.2.1.6
indexes:
- labelname: ifIndex
type: gauge
- name: ifAdminStatus
oid: 1.3.6.1.2.1.2.2.1.7
type: gauge
help: The desired state of the interface - 1.3.6.1.2.1.2.2.1.7
indexes:
- labelname: ifIndex
type: gauge
- name: ifOperStatus
oid: 1.3.6.1.2.1.2.2.1.8
type: gauge
help: The current operational state of the interface - 1.3.6.1.2.1.2.2.1.8
indexes:
- labelname: ifIndex
type: gauge
- name: ifLastChange
oid: 1.3.6.1.2.1.2.2.1.9
type: gauge
help: The value of sysUpTime at the time the interface entered its current operational
state - 1.3.6.1.2.1.2.2.1.9
indexes:
- labelname: ifIndex
type: gauge
- name: ifInOctets
oid: 1.3.6.1.2.1.2.2.1.10
type: counter
help: The total number of octets received on the interface, including framing
characters - 1.3.6.1.2.1.2.2.1.10
indexes:
- labelname: ifIndex
type: gauge
- name: ifInUcastPkts
oid: 1.3.6.1.2.1.2.2.1.11
type: counter
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer,
which were not addressed to a multicast or broadcast address at this sub-layer
- 1.3.6.1.2.1.2.2.1.11
indexes:
- labelname: ifIndex
type: gauge
- name: ifInNUcastPkts
oid: 1.3.6.1.2.1.2.2.1.12
type: counter
help: The number of packets, delivered by this sub-layer to a higher (sub-)layer,
which were addressed to a multicast or broadcast address at this sub-layer -
1.3.6.1.2.1.2.2.1.12
indexes:
- labelname: ifIndex
type: gauge
- name: ifInDiscards
oid: 1.3.6.1.2.1.2.2.1.13
type: counter
help: The number of inbound packets which were chosen to be discarded even though
no errors had been detected to prevent their being deliverable to a higher-layer
protocol - 1.3.6.1.2.1.2.2.1.13
indexes:
- labelname: ifIndex
type: gauge
- name: ifInErrors
oid: 1.3.6.1.2.1.2.2.1.14
type: counter
help: For packet-oriented interfaces, the number of inbound packets that contained
errors preventing them from being deliverable to a higher-layer protocol - 1.3.6.1.2.1.2.2.1.14
indexes:
- labelname: ifIndex
type: gauge
- name: ifInUnknownProtos
oid: 1.3.6.1.2.1.2.2.1.15
type: counter
help: For packet-oriented interfaces, the number of packets received via the interface
which were discarded because of an unknown or unsupported protocol - 1.3.6.1.2.1.2.2.1.15
indexes:
- labelname: ifIndex
type: gauge
- name: ifOutOctets
oid: 1.3.6.1.2.1.2.2.1.16
type: counter
help: The total number of octets transmitted out of the interface, including framing
characters - 1.3.6.1.2.1.2.2.1.16
indexes:
- labelname: ifIndex
type: gauge
- name: ifOutUcastPkts
oid: 1.3.6.1.2.1.2.2.1.17
type: counter
help: The total number of packets that higher-level protocols requested be transmitted,
and which were not addressed to a multicast or broadcast address at this sub-layer,
including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.17
indexes:
- labelname: ifIndex
type: gauge
- name: ifOutNUcastPkts
oid: 1.3.6.1.2.1.2.2.1.18
type: counter
help: The total number of packets that higher-level protocols requested be transmitted,
and which were addressed to a multicast or broadcast address at this sub-layer,
including those that were discarded or not sent - 1.3.6.1.2.1.2.2.1.18
indexes:
- labelname: ifIndex
type: gauge
- name: ifOutDiscards
oid: 1.3.6.1.2.1.2.2.1.19
type: counter
help: The number of outbound packets which were chosen to be discarded even though
no errors had been detected to prevent their being transmitted - 1.3.6.1.2.1.2.2.1.19
indexes:
- labelname: ifIndex
type: gauge
- name: ifOutErrors
oid: 1.3.6.1.2.1.2.2.1.20
type: counter
help: For packet-oriented interfaces, the number of outbound packets that could
not be transmitted because of errors - 1.3.6.1.2.1.2.2.1.20
indexes:
- labelname: ifIndex
type: gauge
- name: ifOutQLen
oid: 1.3.6.1.2.1.2.2.1.21
type: gauge
help: The length of the output packet queue (in packets). - 1.3.6.1.2.1.2.2.1.21
indexes:
- labelname: ifIndex
type: gauge
- 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: upsOutletGroupStatusName
type: gauge
lookups:
- labels:
- upsOutletGroupStatusName
labelname: upsOutletGroupStatusName
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
type: OctetString
- name: upsOutletGroupStatusName
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
type: OctetString
help: The name of the outlet group - 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
indexes:
- labelname: upsOutletGroupStatusName
type: gauge
lookups:
- labels:
- upsOutletGroupStatusName
labelname: upsOutletGroupStatusName
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
type: OctetString
- 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: upsOutletGroupStatusName
type: gauge
lookups:
- labels:
- upsOutletGroupStatusName
labelname: upsOutletGroupStatusName
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
type: OctetString
- 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: upsOutletGroupStatusName
type: gauge
lookups:
- labels:
- upsOutletGroupStatusName
labelname: upsOutletGroupStatusName
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
type: OctetString
- 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: upsOutletGroupStatusName
type: gauge
lookups:
- labels:
- upsOutletGroupStatusName
labelname: upsOutletGroupStatusName
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
type: OctetString
- name: upsOutletGroupStatusGroupFullState
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.6
type: OctetString
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: upsOutletGroupStatusName
type: gauge
lookups:
- labels:
- upsOutletGroupStatusName
labelname: upsOutletGroupStatusName
oid: 1.3.6.1.4.1.318.1.1.1.12.1.2.1.2
type: OctetString
- 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: OctetString
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
- 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
- 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
- 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'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
- 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
- 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
- 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: OctetString
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
- 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
- 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
- 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: OctetString
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
- 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
- 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
- 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
- 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: gauge
help: The status of the battery charger - 1.3.6.1.4.1.318.1.1.1.2.2.17
- name: upsAdvBatteryInternalSKU
oid: 1.3.6.1.4.1.318.1.1.1.2.2.19
type: OctetString
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: OctetString
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: OctetString
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: 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
- 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
- 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
- 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: OctetString
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: OctetString
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: OctetString
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: OctetString
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: 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: upsBasicInputPhase
oid: 1.3.6.1.4.1.318.1.1.1.3.1.1
type: gauge
help: The current AC input phase. - 1.3.6.1.4.1.318.1.1.1.3.1.1
- name: upsAdvInputLineVoltage
oid: 1.3.6.1.4.1.318.1.1.1.3.2.1
type: gauge
help: The current utility line voltage in VAC. - 1.3.6.1.4.1.318.1.1.1.3.2.1
- name: upsAdvInputMaxLineVoltage
oid: 1.3.6.1.4.1.318.1.1.1.3.2.2
type: gauge
help: The maximum utility line voltage in VAC over the previous 1 minute period.
- 1.3.6.1.4.1.318.1.1.1.3.2.2
- name: upsAdvInputMinLineVoltage
oid: 1.3.6.1.4.1.318.1.1.1.3.2.3
type: gauge
help: The minimum utility line voltage in VAC over the previous 1 minute period.
- 1.3.6.1.4.1.318.1.1.1.3.2.3
- name: upsAdvInputFrequency
oid: 1.3.6.1.4.1.318.1.1.1.3.2.4
type: gauge
help: The current input frequency to the UPS system in Hz. - 1.3.6.1.4.1.318.1.1.1.3.2.4
- name: upsAdvInputLineFailCause
oid: 1.3.6.1.4.1.318.1.1.1.3.2.5
type: gauge
help: The reason for the occurrence of the last transfer to UPS battery power
- 1.3.6.1.4.1.318.1.1.1.3.2.5
- name: upsAdvInputNominalFrequency
oid: 1.3.6.1.4.1.318.1.1.1.3.2.6
type: gauge
help: The nominal input frequency of the UPS system in Hz. - 1.3.6.1.4.1.318.1.1.1.3.2.6
- name: upsAdvInputNominalVoltage
oid: 1.3.6.1.4.1.318.1.1.1.3.2.7
type: gauge
help: The nominal input voltage of the UPS system in VAC. - 1.3.6.1.4.1.318.1.1.1.3.2.7
- name: upsAdvInputBypassNominalFrequency
oid: 1.3.6.1.4.1.318.1.1.1.3.2.8
type: gauge
help: The nominal bypass input frequency of the UPS system in Hz. - 1.3.6.1.4.1.318.1.1.1.3.2.8
- name: upsAdvInputBypassNominalVoltage
oid: 1.3.6.1.4.1.318.1.1.1.3.2.9
type: gauge
help: The nominal bypass input voltage of the UPS system in VAC. - 1.3.6.1.4.1.318.1.1.1.3.2.9
- name: upsAdvInputStatisticsIndex
oid: 1.3.6.1.4.1.318.1.1.1.3.2.10.1.1
type: gauge
help: The input identifier. - 1.3.6.1.4.1.318.1.1.1.3.2.10.1.1
indexes:
- labelname: upsAdvInputStatisticsIndex
type: gauge
- name: upsAdvInputApparentPower
oid: 1.3.6.1.4.1.318.1.1.1.3.2.10.1.2
type: gauge
help: The input apparent power(sum of all of the three phases) measured in kVA.
- 1.3.6.1.4.1.318.1.1.1.3.2.10.1.2
indexes:
- labelname: upsAdvInputStatisticsIndex
type: gauge
- name: upsAdvInputVoltageTHD
oid: 1.3.6.1.4.1.318.1.1.1.3.2.10.1.3
type: gauge
help: The input voltage Total Harmonic Distortion in percent. - 1.3.6.1.4.1.318.1.1.1.3.2.10.1.3
indexes:
- labelname: upsAdvInputStatisticsIndex
type: gauge
- name: upsAdvInputBypassVoltageTHD
oid: 1.3.6.1.4.1.318.1.1.1.3.2.10.1.4
type: gauge
help: The bypass input voltage Total Harmonic Distortion in percent. - 1.3.6.1.4.1.318.1.1.1.3.2.10.1.4
indexes:
- labelname: upsAdvInputStatisticsIndex
type: gauge
- name: upsAdvInputPeakCurrent
oid: 1.3.6.1.4.1.318.1.1.1.3.2.10.1.5
type: gauge
help: The input peak current in Amperes. - 1.3.6.1.4.1.318.1.1.1.3.2.10.1.5
indexes:
- labelname: upsAdvInputStatisticsIndex
type: gauge
- name: upsAdvInputBypassPeakCurrent
oid: 1.3.6.1.4.1.318.1.1.1.3.2.10.1.6
type: gauge
help: The bypass input peak current in Amperes. - 1.3.6.1.4.1.318.1.1.1.3.2.10.1.6
indexes:
- labelname: upsAdvInputStatisticsIndex
type: gauge
- name: upsAdvInputActivePower
oid: 1.3.6.1.4.1.318.1.1.1.3.2.10.1.7
type: gauge
help: The input active power measured in kW. - 1.3.6.1.4.1.318.1.1.1.3.2.10.1.7
indexes:
- labelname: upsAdvInputStatisticsIndex
type: gauge
- name: upsAdvInputTotalApparentPower
oid: 1.3.6.1.4.1.318.1.1.1.3.2.11
type: gauge
help: The input total apparent power(sum of all three phases) of the UPS system
in kVA. - 1.3.6.1.4.1.318.1.1.1.3.2.11
- name: upsAdvInputTotalActivePower
oid: 1.3.6.1.4.1.318.1.1.1.3.2.12
type: gauge
help: The input total active power(sum of all three phases) of the UPS system
in kW. - 1.3.6.1.4.1.318.1.1.1.3.2.12
- name: upsAdvInputBypassTotalApparentPower
oid: 1.3.6.1.4.1.318.1.1.1.3.2.13
type: gauge
help: The input bypass total apparent power(sum of all three phases) of the UPS
system in kVA. - 1.3.6.1.4.1.318.1.1.1.3.2.13
- name: upsAdvInputBypassTotalActivePower
oid: 1.3.6.1.4.1.318.1.1.1.3.2.14
type: gauge
help: The input bypass total active power(sum of all three phases) of the UPS
system in kW. - 1.3.6.1.4.1.318.1.1.1.3.2.14
- name: upsAdvInputEnergyUsage
oid: 1.3.6.1.4.1.318.1.1.1.3.2.15
type: gauge
help: The input energy usage of the UPS in kWh. - 1.3.6.1.4.1.318.1.1.1.3.2.15
- name: upsHighPrecInputLineVoltage
oid: 1.3.6.1.4.1.318.1.1.1.3.3.1
type: gauge
help: The current utility line voltage in tenths of VAC. - 1.3.6.1.4.1.318.1.1.1.3.3.1
- name: upsHighPrecInputMaxLineVoltage
oid: 1.3.6.1.4.1.318.1.1.1.3.3.2
type: gauge
help: The maximum utility line voltage in tenths of VAC over the previous 1 minute
period. - 1.3.6.1.4.1.318.1.1.1.3.3.2
- name: upsHighPrecInputMinLineVoltage
oid: 1.3.6.1.4.1.318.1.1.1.3.3.3
type: gauge
help: The minimum utility line voltage in tenths of VAC over the previous 1 minute
period. - 1.3.6.1.4.1.318.1.1.1.3.3.3
- name: upsHighPrecInputFrequency
oid: 1.3.6.1.4.1.318.1.1.1.3.3.4
type: gauge
help: The current input frequency to the UPS system in tenths of Hz. - 1.3.6.1.4.1.318.1.1.1.3.3.4
- name: upsHighPrecInputEnergyUsage
oid: 1.3.6.1.4.1.318.1.1.1.3.3.5
type: gauge
help: The input energy usage of the UPS in hundredths of kWh. - 1.3.6.1.4.1.318.1.1.1.3.3.5
- name: upsHighPrecInputBypassVoltage
oid: 1.3.6.1.4.1.318.1.1.1.3.3.6
type: gauge
help: The current bypass line voltage in tenths of VAC. - 1.3.6.1.4.1.318.1.1.1.3.3.6
- name: upsHighPrecInputBypassFrequency
oid: 1.3.6.1.4.1.318.1.1.1.3.3.7
type: gauge
help: The current input bypass frequency to the UPS system in tenths of Hz. -
1.3.6.1.4.1.318.1.1.1.3.3.7
- name: upsBasicOutputStatus
oid: 1.3.6.1.4.1.318.1.1.1.4.1.1
type: gauge
help: The current state of the UPS - 1.3.6.1.4.1.318.1.1.1.4.1.1
- name: upsBasicOutputPhase
oid: 1.3.6.1.4.1.318.1.1.1.4.1.2
type: gauge
help: The current output phase. - 1.3.6.1.4.1.318.1.1.1.4.1.2
- name: upsBasicSystemStatus
oid: 1.3.6.1.4.1.318.1.1.1.4.1.3
type: gauge
help: Current state for the whole system (UPS and surrounding breakers) - 1.3.6.1.4.1.318.1.1.1.4.1.3
- name: upsBasicSystemInternalTemperature
oid: 1.3.6.1.4.1.318.1.1.1.4.1.4
type: gauge
help: The actual internal temperature of the UPS system in Celsius. - 1.3.6.1.4.1.318.1.1.1.4.1.4
- name: upsBasicSystemInverterStatus
oid: 1.3.6.1.4.1.318.1.1.1.4.1.5
type: gauge
help: The current state of the UPS inverter - 1.3.6.1.4.1.318.1.1.1.4.1.5
- name: upsBasicSystemPFCStatus
oid: 1.3.6.1.4.1.318.1.1.1.4.1.6
type: gauge
help: The general status of the power factor correction (AC input stage of the
UPS) - 1.3.6.1.4.1.318.1.1.1.4.1.6
- name: upsBasicOutputACwiringConfiguration
oid: 1.3.6.1.4.1.318.1.1.1.4.1.7
type: gauge
help: Indicates if neutral wire on output side of the UPS is used (load wired
line to neutral) - 1.3.6.1.4.1.318.1.1.1.4.1.7
- name: upsAdvOutputVoltage
oid: 1.3.6.1.4.1.318.1.1.1.4.2.1
type: gauge
help: The output voltage of the UPS system in VAC. - 1.3.6.1.4.1.318.1.1.1.4.2.1
- name: upsAdvOutputFrequency
oid: 1.3.6.1.4.1.318.1.1.1.4.2.2
type: gauge
help: The current output frequency of the UPS system in Hz. - 1.3.6.1.4.1.318.1.1.1.4.2.2
- name: upsAdvOutputLoad
oid: 1.3.6.1.4.1.318.1.1.1.4.2.3
type: gauge
help: The current UPS load expressed in percent of rated capacity. - 1.3.6.1.4.1.318.1.1.1.4.2.3
- name: upsAdvOutputCurrent
oid: 1.3.6.1.4.1.318.1.1.1.4.2.4
type: gauge
help: The current in amperes drawn by the load on the UPS. - 1.3.6.1.4.1.318.1.1.1.4.2.4
- name: upsAdvOutputRedundancy
oid: 1.3.6.1.4.1.318.1.1.1.4.2.5
type: gauge
help: The number of power modules which can fail or be removed without causing
the UPS to generate a Minimum Redundancy Lost event. - 1.3.6.1.4.1.318.1.1.1.4.2.5
- name: upsAdvOutputKVACapacity
oid: 1.3.6.1.4.1.318.1.1.1.4.2.6
type: gauge
help: The maximum load that this UPS can support. - 1.3.6.1.4.1.318.1.1.1.4.2.6
- name: upsAdvOutputNominalFrequency
oid: 1.3.6.1.4.1.318.1.1.1.4.2.7
type: gauge
help: The nominal output frequency of the UPS system in Hz. - 1.3.6.1.4.1.318.1.1.1.4.2.7
- name: upsAdvOutputActivePower
oid: 1.3.6.1.4.1.318.1.1.1.4.2.8
type: gauge
help: The total output active power of the UPS system in W - 1.3.6.1.4.1.318.1.1.1.4.2.8
- name: upsAdvOutputApparentPower
oid: 1.3.6.1.4.1.318.1.1.1.4.2.9
type: gauge
help: The total output apparent power of all phases of the UPS system in VA. -