forked from prometheus/snmp_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
snmp.yml
20003 lines (20003 loc) · 608 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.
apcups:
walk:
- 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.10.2.3.2
- 1.3.6.1.4.1.318.1.1.26.8.3
get:
- 1.3.6.1.2.1.1.3.0
- 1.3.6.1.4.1.318.1.1.1.8.1.0
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: EnumAsInfo
help: The type of interface - 1.3.6.1.2.1.2.2.1.3
indexes:
- labelname: ifIndex
type: gauge
enum_values:
1: other
2: regular1822
3: hdh1822
4: ddnX25
5: rfc877x25
6: ethernetCsmacd
7: iso88023Csmacd
8: iso88024TokenBus
9: iso88025TokenRing
10: iso88026Man
11: starLan
12: proteon10Mbit
13: proteon80Mbit
14: hyperchannel
15: fddi
16: lapb
17: sdlc
18: ds1
19: e1
20: basicISDN
21: primaryISDN
22: propPointToPointSerial
23: ppp
24: softwareLoopback
25: eon
26: ethernet3Mbit
27: nsip
28: slip
29: ultra
30: ds3
31: sip
32: frameRelay
33: rs232
34: para
35: arcnet
36: arcnetPlus
37: atm
38: miox25
39: sonet
40: x25ple
41: iso88022llc
42: localTalk
43: smdsDxi
44: frameRelayService
45: v35
46: hssi
47: hippi
48: modem
49: aal5
50: sonetPath
51: sonetVT
52: smdsIcip
53: propVirtual
54: propMultiplexor
55: ieee80212
56: fibreChannel
57: hippiInterface
58: frameRelayInterconnect
59: aflane8023
60: aflane8025
61: cctEmul
62: fastEther
63: isdn
64: v11
65: v36
66: g703at64k
67: g703at2mb
68: qllc
69: fastEtherFX
70: channel
71: ieee80211
72: ibm370parChan
73: escon
74: dlsw
75: isdns
76: isdnu
77: lapd
78: ipSwitch
79: rsrb
80: atmLogical
81: ds0
82: ds0Bundle
83: bsc
84: async
85: cnr
86: iso88025Dtr
87: eplrs
88: arap
89: propCnls
90: hostPad
91: termPad
92: frameRelayMPI
93: x213
94: adsl
95: radsl
96: sdsl
97: vdsl
98: iso88025CRFPInt
99: myrinet
100: voiceEM
101: voiceFXO
102: voiceFXS
103: voiceEncap
104: voiceOverIp
105: atmDxi
106: atmFuni
107: atmIma
108: pppMultilinkBundle
109: ipOverCdlc
110: ipOverClaw
111: stackToStack
112: virtualIpAddress
113: mpc
114: ipOverAtm
115: iso88025Fiber
116: tdlc
117: gigabitEthernet
118: hdlc
119: lapf
120: v37
121: x25mlp
122: x25huntGroup
123: transpHdlc
124: interleave
125: fast
126: ip
127: docsCableMaclayer
128: docsCableDownstream
129: docsCableUpstream
130: a12MppSwitch
131: tunnel
132: coffee
133: ces
134: atmSubInterface
135: l2vlan
136: l3ipvlan
137: l3ipxvlan
138: digitalPowerline
139: mediaMailOverIp
140: dtm
141: dcn
142: ipForward
143: msdsl
144: ieee1394
145: if-gsn
146: dvbRccMacLayer
147: dvbRccDownstream
148: dvbRccUpstream
149: atmVirtual
150: mplsTunnel
151: srp
152: voiceOverAtm
153: voiceOverFrameRelay
154: idsl
155: compositeLink
156: ss7SigLink
157: propWirelessP2P
158: frForward
159: rfc1483
160: usb
161: ieee8023adLag
162: bgppolicyaccounting
163: frf16MfrBundle
164: h323Gatekeeper
165: h323Proxy
166: mpls
167: mfSigLink
168: hdsl2
169: shdsl
170: ds1FDL
171: pos
172: dvbAsiIn
173: dvbAsiOut
174: plc
175: nfas
176: tr008
177: gr303RDT
178: gr303IDT
179: isup
180: propDocsWirelessMaclayer
181: propDocsWirelessDownstream
182: propDocsWirelessUpstream
183: hiperlan2
184: propBWAp2Mp
185: sonetOverheadChannel
186: digitalWrapperOverheadChannel
187: aal2
188: radioMAC
189: atmRadio
190: imt
191: mvl
192: reachDSL
193: frDlciEndPt
194: atmVciEndPt
195: opticalChannel
196: opticalTransport
197: propAtm
198: voiceOverCable
199: infiniband
200: teLink
201: q2931
202: virtualTg
203: sipTg
204: sipSig
205: docsCableUpstreamChannel
206: econet
207: pon155
208: pon622
209: bridge
210: linegroup
211: voiceEMFGD
212: voiceFGDEANA
213: voiceDID
214: mpegTransport
215: sixToFour
216: gtp
217: pdnEtherLoop1
218: pdnEtherLoop2
219: opticalChannelGroup
220: homepna
221: gfp
222: ciscoISLvlan
223: actelisMetaLOOP
224: fcipLink
225: rpr
226: qam
227: lmp
228: cblVectaStar
229: docsCableMCmtsDownstream
230: adsl2
231: macSecControlledIF
232: macSecUncontrolledIF
233: aviciOpticalEther
234: atmbond
235: voiceFGDOS
236: mocaVersion1
237: ieee80216WMAN
238: adsl2plus
239: dvbRcsMacLayer
240: dvbTdm
241: dvbRcsTdma
242: x86Laps
243: wwanPP
244: wwanPP2
245: voiceEBS
246: ifPwType
247: ilan
248: pip
249: aluELP
250: gpon
251: vdsl2
252: capwapDot11Profile
253: capwapDot11Bss
254: capwapWtpVirtualRadio
255: bits
256: docsCableUpstreamRfPort
257: cableDownstreamRfPort
258: vmwareVirtualNic
259: ieee802154
260: otnOdu
261: otnOtu
262: ifVfiType
263: g9981
264: g9982
265: g9983
266: aluEpon
267: aluEponOnu
268: aluEponPhysicalUni
269: aluEponLogicalLink
270: aluGponOnu
271: aluGponPhysicalUni
272: vmwareNicTeam
277: docsOfdmDownstream
278: docsOfdmaUpstream
279: gfast
280: sdci
281: xboxWireless
282: fastdsl
283: docsCableScte55d1FwdOob
284: docsCableScte55d1RetOob
285: docsCableScte55d2DsOob
286: docsCableScte55d2UsOob
287: docsCableNdf
288: docsCableNdr
289: ptm
290: ghn
291: otnOtsi
292: otnOtuc
293: otnOduc
294: otnOtsig
295: microwaveCarrierTermination
296: microwaveRadioLinkTerminal
297: ieee8021axDrni
298: ax25
299: ieee19061nanocom
- 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
enum_values:
1: up
2: down
3: testing
- 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
enum_values:
1: up
2: down
3: testing
4: unknown
5: dormant
6: notPresent
7: lowerLayerDown
- 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: ifSpecific
oid: 1.3.6.1.2.1.2.2.1.22
type: OctetString
help: A reference to MIB definitions specific to the particular media being used
to realize the interface - 1.3.6.1.2.1.2.2.1.22
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: 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'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
- 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