-
Notifications
You must be signed in to change notification settings - Fork 0
/
Eaton93PS-40kW.yaml
1158 lines (1158 loc) · 30.6 KB
/
Eaton93PS-40kW.yaml
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
zabbix_export:
version: '5.4'
date: '2024-06-17T17:28:18Z'
groups:
-
uuid: 0e68f753bc604f5d9d04717f95042762
name: APC
templates:
-
uuid: 6d2aef99fa4e4c40946221bc9c3c8dd8
template: Eaton93PS-40kW
name: Eaton93PS-40kW
groups:
-
name: APC
items:
-
uuid: 4bc4e4bb64a4456b86b5a0d7a37439c3
name: 'ICMP ping'
type: SIMPLE
key: icmpping
history: 1w
tags:
-
tag: Application
value: Status
-
uuid: f583a3a0a4c74b30aa4161f216da7462
name: 'ICMP loss'
type: SIMPLE
key: icmppingloss
history: 1w
value_type: FLOAT
units: '%'
tags:
-
tag: Application
value: Status
-
uuid: e1d4cb82030f4dafb71113013efffcdd
name: 'ICMP response time'
type: SIMPLE
key: icmppingsec
history: 1w
value_type: FLOAT
units: s
tags:
-
tag: Application
value: Status
-
uuid: 13f127c261fb47eebe7345f00164dc2d
name: 'Interface eth0(): Interface admin status'
type: SNMP_AGENT
snmp_oid: ifAdminStatus.3
key: ifAdminStatus.3
tags:
-
tag: Application
value: Network
-
uuid: ebf152906a134262942ce22721f6254f
name: 'Interface eth0(): Interface description'
type: SNMP_AGENT
snmp_oid: ifDescr.3
key: ifDescr.3
trends: '0'
value_type: CHAR
tags:
-
tag: Application
value: Network
-
uuid: a8641b18ae1a4c56aa11d5e34a39579c
name: 'Interface eth0(): Bits received'
type: SNMP_AGENT
snmp_oid: ifInOctets.3
key: ifInOctets.3
units: bps
preprocessing:
-
type: CHANGE_PER_SECOND
parameters:
- ''
-
type: MULTIPLIER
parameters:
- '8'
tags:
-
tag: Application
value: Network
-
uuid: 6fff03d69f404695b03b1415d0d8574a
name: 'Interface eth0(): Operational status'
type: SNMP_AGENT
snmp_oid: ifOperStatus.3
key: ifOperStatus.3
tags:
-
tag: Application
value: Network
-
uuid: bf50d83004534fb4b5b158e93a8d6747
name: 'Interface eth0(): Bits sent'
type: SNMP_AGENT
snmp_oid: ifOutOctets.3
key: ifOutOctets.3
units: bps
preprocessing:
-
type: CHANGE_PER_SECOND
parameters:
- ''
-
type: MULTIPLIER
parameters:
- '8'
tags:
-
tag: Application
value: Network
-
uuid: 7be5cbd63bdf4b48be36447aa9175f27
name: 'Interface eth0(): Speed'
type: SNMP_AGENT
snmp_oid: ifSpeed.3
key: ifSpeed.3
units: bps
preprocessing:
-
type: CHANGE_PER_SECOND
parameters:
- ''
-
type: MULTIPLIER
parameters:
- '8'
tags:
-
tag: Application
value: Network
-
uuid: efca0defaa3a4738801ec86e175c5b8b
name: 'Interface eth0(): Interface type'
type: SNMP_AGENT
snmp_oid: ifType.3
key: ifType.3
delay: 5m
tags:
-
tag: Application
value: Network
-
uuid: 7c66b94e530e46958011739f7599bc59
name: 'Device contact details'
type: SNMP_AGENT
snmp_oid: sysContact.0
key: sysContact.0
delay: 5m
trends: '0'
value_type: CHAR
tags:
-
tag: Application
value: System
-
uuid: 1aeccf9cdb7e43fc8c811dd41aab0704
name: 'Device description'
type: SNMP_AGENT
snmp_oid: sysDescr.0
key: sysDescr.0
delay: 5m
trends: '0'
value_type: CHAR
tags:
-
tag: Application
value: System
-
uuid: 0be242dfd6044ddb932b1ca808aa8563
name: 'Device location'
type: SNMP_AGENT
snmp_oid: sysLocation.0
key: sysLocation.0
delay: 5m
trends: '0'
value_type: CHAR
tags:
-
tag: Application
value: System
-
uuid: 92585b145a6d40b7bf1649040bbb41a6
name: Hostname
type: SNMP_AGENT
snmp_oid: sysName.0
key: sysName.0
delay: 5m
trends: '0'
value_type: CHAR
tags:
-
tag: Application
value: System
-
uuid: 329ad49d9b7f4142b41c1f3aadf114ea
name: 'System object ID'
type: SNMP_AGENT
snmp_oid: sysObjectID.0
key: sysObjectID.0
delay: 5m
trends: '0'
value_type: CHAR
tags:
-
tag: Application
value: System
-
uuid: cbda0644d9cd4d98964764a5f81c3dde
name: 'System Firmware'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.534.1.1.3.0
key: System.Firmware
trends: '0'
value_type: CHAR
tags:
-
tag: Application
value: System
-
uuid: 129eba2c182240538e170bb053cad9eb
name: 'Device uptime'
type: SNMP_AGENT
snmp_oid: sysUpTimeInstance
key: sysUpTimeInstance
units: uptime
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.01'
tags:
-
tag: Application
value: Status
-
uuid: 2248711a92204659aa29face5d4551c1
name: 'UPS Alarms Present'
type: SNMP_AGENT
snmp_oid: upsAlarmsPresent.0
key: upsAlarmsPresent.0
delay: 5m
tags:
-
tag: Application
value: UPS
-
uuid: cafc4b91fc1a477fa5840ac98c2c9b2f
name: 'UPS Auto Restart'
type: SNMP_AGENT
snmp_oid: upsAutoRestart.0
key: upsAutoRestart.0
delay: 5m
tags:
-
tag: Application
value: UPS
-
uuid: 4d5f13264240465c9d7aac1cd0f7542e
name: 'UPS Battery Current'
type: SNMP_AGENT
snmp_oid: upsBatteryCurrent.0
key: upsBatteryCurrent.0
delay: 10m
units: 'Amp DC'
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: UPS
-
uuid: 7eaaf0b123d346359fff77132b94ff84
name: 'UPS Battery Status'
type: SNMP_AGENT
snmp_oid: upsBatteryStatus.0
key: upsBatteryStatus.0
delay: 10m
tags:
-
tag: Application
value: UPS
-
uuid: f654dbe269194cd5afee34ab7fb07672
name: 'UPS Battery Voltage'
type: SNMP_AGENT
snmp_oid: upsBatteryVoltage.0
key: upsBatteryVoltage.0
delay: 10m
units: 'Volt DC'
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: UPS
-
uuid: 93acd41b12d349259324d58a67d41454
name: 'UPS Bypass Current 1'
type: SNMP_AGENT
snmp_oid: upsBypassCurrent.1
key: upsBypassCurrent.1
delay: 5m
units: 'RMS Amp'
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Bypass lines'
-
tag: Application
value: UPS
-
uuid: 6e40c9a379f04af6b99ccb84538c45a9
name: 'UPS Bypass Current 2'
type: SNMP_AGENT
snmp_oid: upsBypassCurrent.2
key: upsBypassCurrent.2
delay: 5m
units: 'RMS Amp'
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Bypass lines'
-
tag: Application
value: UPS
-
uuid: 18421af0c9574ae9bb8a02f3c3e96cac
name: 'UPS Bypass Current 3'
type: SNMP_AGENT
snmp_oid: upsBypassCurrent.3
key: upsBypassCurrent.3
delay: 5m
units: 'RMS Amp'
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Bypass lines'
-
tag: Application
value: UPS
-
uuid: 0d82e99bd40e4bcb902c94f36d0eb789
name: 'UPS Bypass Frequency'
type: SNMP_AGENT
snmp_oid: upsBypassFrequency.0
key: upsBypassFrequency.0
delay: 5m
units: Hz
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Bypass lines'
-
tag: Application
value: UPS
-
uuid: 9fda397e8677447d9416c4ab95083c74
name: 'UPS Bypass Num Lines'
type: SNMP_AGENT
snmp_oid: upsBypassNumLines.0
key: upsBypassNumLines.0
delay: 5m
tags:
-
tag: Application
value: 'Bypass lines'
-
tag: Application
value: UPS
-
uuid: 6ac95c1fb9b9495a85b19123ce921f56
name: 'UPS Bypass Power 1'
type: SNMP_AGENT
snmp_oid: upsBypassPower.1
key: upsBypassPower.1
delay: 5m
units: Watts
tags:
-
tag: Application
value: 'Bypass lines'
-
tag: Application
value: UPS
-
uuid: 75e346d07e8445fda5b076cf654bdd62
name: 'UPS Bypass Power 2'
type: SNMP_AGENT
snmp_oid: upsBypassPower.2
key: upsBypassPower.2
delay: 5m
units: Watts
tags:
-
tag: Application
value: 'Bypass lines'
-
tag: Application
value: UPS
-
uuid: a87fd00f7c5e4d479a024ca96cba13fd
name: 'UPS Bypass Power 3'
type: SNMP_AGENT
snmp_oid: upsBypassPower.3
key: upsBypassPower.3
delay: 5m
units: Watts
tags:
-
tag: Application
value: 'Bypass lines'
-
tag: Application
value: UPS
-
uuid: b3f1b9950f61440481310c5e37ec9c4e
name: 'UPS Bypass Voltage 1'
type: SNMP_AGENT
snmp_oid: upsBypassVoltage.1
key: upsBypassVoltage.1
delay: 5m
units: 'RMS Volts'
tags:
-
tag: Application
value: 'Bypass lines'
-
tag: Application
value: UPS
-
uuid: 54f489f2bafb4eb8957d681f7df8de31
name: 'UPS Bypass Voltage 2'
type: SNMP_AGENT
snmp_oid: upsBypassVoltage.2
key: upsBypassVoltage.2
delay: 5m
units: 'RMS Volts'
tags:
-
tag: Application
value: 'Bypass lines'
-
tag: Application
value: UPS
-
uuid: fb158a6a1a8946e5b60a4e5e9c1ff7ff
name: 'UPS Bypass Voltage 3'
type: SNMP_AGENT
snmp_oid: upsBypassVoltage.3
key: upsBypassVoltage.3
delay: 5m
units: 'RMS Volts'
tags:
-
tag: Application
value: 'Bypass lines'
-
tag: Application
value: UPS
-
uuid: ddac17230e5247469e8a6c72cdafd132
name: 'UPS Config High Voltage Transfer Point'
type: SNMP_AGENT
snmp_oid: upsConfigHighVoltageTransferPoint.0
key: upsConfigHighVoltageTransferPoint.0
delay: 5m
units: 'RMS Volts'
tags:
-
tag: Application
value: UPS
-
uuid: f28ce329ed05477f9e9aa37c53bf03ab
name: 'UPS Config Input Frequency'
type: SNMP_AGENT
snmp_oid: upsConfigInputFreq.0
key: upsConfigInputFreq.0
delay: 5m
units: Hz
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Input lines'
-
tag: Application
value: UPS
-
uuid: f5ff8bb8b7e5432f9830de30543aa645
name: 'UPS Config Input Voltage'
type: SNMP_AGENT
snmp_oid: upsConfigInputVoltage.0
key: upsConfigInputVoltage.0
delay: 5m
units: 'RMS Volts'
tags:
-
tag: Application
value: 'Input lines'
-
tag: Application
value: UPS
-
uuid: 008ce698ebeb44409c5d1059eb53700d
name: 'UPS Config Low Voltage Transfer Point'
type: SNMP_AGENT
snmp_oid: upsConfigLowVoltageTransferPoint.0
key: upsConfigLowVoltageTransferPoint.0
delay: 5m
units: 'RMS Volts'
tags:
-
tag: Application
value: UPS
-
uuid: 63274c218e154de19b9b78b770f5b218
name: 'UPS Config Output Frequency'
type: SNMP_AGENT
snmp_oid: upsConfigOutputFreq.0
key: upsConfigOutputFreq.0
delay: 5m
units: Hz
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Output lines'
-
tag: Application
value: UPS
-
uuid: 2f4ec07fda9e439a947337f69043777e
name: 'UPS Config Output Power'
type: SNMP_AGENT
snmp_oid: upsConfigOutputPower.0
key: upsConfigOutputPower.0
delay: 5m
units: Watts
tags:
-
tag: Application
value: 'Output lines'
-
tag: Application
value: UPS
-
uuid: 510570e737c54f6398553dbc83dfcf99
name: 'UPS Config Output VA'
type: SNMP_AGENT
snmp_oid: upsConfigOutputVA.0
key: upsConfigOutputVA.0
delay: 5m
units: Volt-Amps
tags:
-
tag: Application
value: 'Output lines'
-
tag: Application
value: UPS
-
uuid: 55879ab6a96b48e1bdb3a5fae0c09b0d
name: 'UPS Estimated Charge Remaining'
type: SNMP_AGENT
snmp_oid: upsEstimatedChargeRemaining.0
key: upsEstimatedChargeRemaining.0
delay: 5m
tags:
-
tag: Application
value: UPS
-
uuid: 97a8f86ac43844879b45a561b66da278
name: 'UPS Estimated Minutes Remaining'
type: SNMP_AGENT
snmp_oid: upsEstimatedMinutesRemaining.0
key: upsEstimatedMinutesRemaining.0
delay: 5m
tags:
-
tag: Application
value: UPS
-
uuid: 0afe051918db44cbaa7251a1c8d2dd9e
name: Manufacture
type: SNMP_AGENT
snmp_oid: upsIdentManufacturer.0
key: upsIdentManufacturer.0
delay: 5m
trends: '0'
value_type: LOG
tags:
-
tag: Application
value: System
-
uuid: a2167e62fe554f51a482d3bded6cc262
name: 'UPS Input Current 1'
type: SNMP_AGENT
snmp_oid: upsInputCurrent.1
key: upsInputCurrent.1
delay: 5m
units: 'RMS Amp'
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Input lines'
-
tag: Application
value: UPS
-
uuid: a17182c1c5aa4a46a4ec5bdec1c10941
name: 'UPS Input Current 2'
type: SNMP_AGENT
snmp_oid: upsInputCurrent.2
key: upsInputCurrent.2
delay: 5m
units: 'RMS Amp'
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Input lines'
-
tag: Application
value: UPS
-
uuid: 082e2f0496904f459cf84f3ac695c9b9
name: 'UPS Input Current 3'
type: SNMP_AGENT
snmp_oid: upsInputCurrent.3
key: upsInputCurrent.3
delay: 5m
units: 'RMS Amp'
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Input lines'
-
tag: Application
value: UPS
-
uuid: 9fb586aeebf949d581a45aa8cefc94e4
name: 'UPS Input Frequency 1'
type: SNMP_AGENT
snmp_oid: upsInputFrequency.1
key: upsInputFrequency.1
delay: 5m
units: Hz
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Input lines'
-
tag: Application
value: UPS
-
uuid: 94426531de2649b595674298fcf72e59
name: 'UPS Input Frequency 2'
type: SNMP_AGENT
snmp_oid: upsInputFrequency.2
key: upsInputFrequency.2
delay: 5m
units: Hz
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Input lines'
-
tag: Application
value: UPS
-
uuid: 5f6dad6602b144d389514856ce184613
name: 'UPS Input Frequency 3'
type: SNMP_AGENT
snmp_oid: upsInputFrequency.3
key: upsInputFrequency.3
delay: 5m
units: Hz
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Input lines'
-
tag: Application
value: UPS
-
uuid: fd65c7fe729c4a92afc641e9ade2dc6b
name: 'UPS Input Num Lines'
type: SNMP_AGENT
snmp_oid: upsInputNumLines.0
key: upsInputNumLines.0
delay: 10m
units: upsInputNumLines.0
tags:
-
tag: Application
value: 'Input lines'
-
tag: Application
value: UPS
-
uuid: 8c8219eb07ef4d1c9c9571d2f58b17f6
name: 'UPS Input True Power 1'
type: SNMP_AGENT
snmp_oid: upsInputTruePower.1
key: upsInputTruePower.1
delay: 5m
units: Watts
tags:
-
tag: Application
value: 'Input lines'
-
tag: Application
value: UPS
-
uuid: 07679af7831c4a5d8c8edbd1ec9163b8
name: 'UPS Input True Power 2'
type: SNMP_AGENT
snmp_oid: upsInputTruePower.2
key: upsInputTruePower.2
delay: 5m
units: Watts
tags:
-
tag: Application
value: 'Input lines'
-
tag: Application
value: UPS
-
uuid: 68c8df14494041b29103b4690a0cbaa1
name: 'UPS Input True Power 3'
type: SNMP_AGENT
snmp_oid: upsInputTruePower.3
key: upsInputTruePower.3
delay: 5m
units: Watts
tags:
-
tag: Application
value: 'Input lines'
-
tag: Application
value: UPS
-
uuid: 5e819ddc1503453ba757ea8c589a4c07
name: 'UPS Input Voltage 1'
type: SNMP_AGENT
snmp_oid: upsInputVoltage.1
key: upsInputVoltage.1
delay: 5m
units: 'RMS Volts'
tags:
-
tag: Application
value: 'Input lines'
-
tag: Application
value: UPS
-
uuid: f9cb8ee3fefd43cd98886acc4a9edd3d
name: 'UPS Input Voltage 2'
type: SNMP_AGENT
snmp_oid: upsInputVoltage.2
key: upsInputVoltage.2
delay: 5m
units: 'RMS Volts'
tags:
-
tag: Application
value: 'Input lines'
-
tag: Application
value: UPS
-
uuid: 90043f5cd2884b0ba2c7a51b96e92c14
name: 'UPS Input Voltage 3'
type: SNMP_AGENT
snmp_oid: upsInputVoltage.3
key: upsInputVoltage.3
delay: 5m
units: 'RMS Volts'
tags:
-
tag: Application
value: 'Input lines'
-
tag: Application
value: UPS
-
uuid: fdeb21de6a084c13832e4af54e07af82
name: 'UPS Output Current 1'
type: SNMP_AGENT
snmp_oid: upsOutputCurrent.1
key: upsOutputCurrent.1
delay: 5m
units: 'RMS Amp'
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Output lines'
-
tag: Application
value: UPS
-
uuid: e5ffc81cf0eb43218562bc1440d3f06f
name: 'UPS Output Current 2'
type: SNMP_AGENT
snmp_oid: upsOutputCurrent.2
key: upsOutputCurrent.2
delay: 5m
units: 'RMS Amp'
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Output lines'
-
tag: Application
value: UPS
-
uuid: b66715da556942f9b0de4a102b1fe6b1
name: 'UPS Output Current 3'
type: SNMP_AGENT
snmp_oid: upsOutputCurrent.3
key: upsOutputCurrent.3
delay: 5m
units: 'RMS Amp'
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Output lines'
-
tag: Application
value: UPS
-
uuid: 7096181aac054365b373102838b0f405
name: 'UPS Output Frequency'
type: SNMP_AGENT
snmp_oid: upsOutputFrequency.0
key: upsOutputFrequency.0
delay: 5m
units: Hz
preprocessing:
-
type: MULTIPLIER
parameters:
- '0.1'
tags:
-
tag: Application
value: 'Output lines'
-
tag: Application
value: UPS
-
uuid: 3dbc3ef27a1a4b619bae8c63d3326c45
name: 'UPS Output Num Lines'
type: SNMP_AGENT
snmp_oid: upsOutputNumLines.0
key: upsOutputNumLines.0
delay: 10m
tags:
-
tag: Application
value: 'Output lines'
-
tag: Application
value: UPS
-
uuid: cac5438a281d45e5bbd83c55005a900b
name: 'UPS Output Percent Load 1'
type: SNMP_AGENT
snmp_oid: upsOutputPercentLoad.1
key: upsOutputPercentLoad.1
delay: 5m
tags:
-
tag: Application
value: 'Output lines'
-
tag: Application
value: UPS
-
uuid: 214c46f0ae834b1aaac96a616382466b
name: 'UPS Output Percent Load 2'
type: SNMP_AGENT
snmp_oid: upsOutputPercentLoad.2
key: upsOutputPercentLoad.2
delay: 5m
tags:
-
tag: Application
value: 'Output lines'
-
tag: Application
value: UPS
-
uuid: 058bf97375bc485f91c69505ae78a459
name: 'UPS Output Percent Load 3'
type: SNMP_AGENT
snmp_oid: upsOutputPercentLoad.3
key: upsOutputPercentLoad.3
delay: 5m
tags:
-
tag: Application
value: 'Output lines'
-