forked from zabbix/community-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
template_zte-c320.yaml
1224 lines (1215 loc) · 52.5 KB
/
template_zte-c320.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: '6.0'
date: '2021-11-21T21:49:15Z'
groups:
-
uuid: f2481361f99448eea617b7b1d4765566
name: 'Discovered hosts'
templates:
-
uuid: f5024303dbe14c899d4ac735d5c292ef
template: ZTE-C320-GPON-nor
name: ZTE-C320-GPON-nor
description: |
## Overview
This is the template which is monitoring ZTE X320 with auto discovery
Just upload it in zabbix templates no need to use macroses The template can calculate and print the real onu signal values in dbm
## Author
Mushegh Davtyan Eduard Alaverdyan
groups:
-
name: 'Discovered hosts'
discovery_rules:
-
uuid: b612951f77ec4ceb81eb30423637ee43
name: 'ONU discovery on pon1'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268501248]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.1
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 688866c40c664dc28bd71a91e776c2b8
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268501248.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268501248.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: f3c396f8f7a443368f92bbfbcf7d9882
name: 'onu_1/1/1:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.1.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268501248.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: a92643a39a124357b7ac182580e253bf
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.1.[{#SNMPINDEX}])<{$MIN1:1})or(last(/ZTE-C320-GPON-nor/pon.onu.1.1.1.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/1:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
graph_prototypes:
-
uuid: 1a436d4393a640309184ed6c0e647529
name: 'ONU-signal db'
graph_items:
-
color: 1A7C11
item:
host: ZTE-C320-GPON-nor
key: 'pon.onu.1.1.1.[{#SNMPINDEX}]'
-
uuid: 531b2a9d91384726b8d4c2f6d8308795
name: 'ONU discovery on pon2'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268501504]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.2
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 1c06d41991594eb690c398b6c00ebd7b
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268501504.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268501504.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: 55c236f0aeba4292aeda0f55392a5615
name: 'onu_1/1/2:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.2.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268501504.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: bd2375eccdd04fe6b5a3d326745c91ea
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.2.[{#SNMPINDEX}])<{$MIN1:2})and(last(/ZTE-C320-GPON-nor/pon.onu.1.1.2.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/2:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: c885c17f964740949c1a5ece3d780433
name: 'ONU discovery on pon3'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268501760]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.3
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: a897c52f8c0447ef9c0aa75fc1552592
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268501760.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268501760.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: 9d7e31e9883345359fd2e5b0c56100fd
name: 'onu_1/1/3:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.3.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268501760.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 4208c3d8e58c44a9967c92edd30c367c
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.3.[{#SNMPINDEX}])<{$MIN1:3})and(last(/ZTE-C320-GPON-nor/pon.onu.1.1.3.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/3:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: 5a4d6fc133e341cbac44ac3002c71584
name: 'ONU discovery on pon4'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268502016]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.4
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 9dfca92b2f2c456ab4d634363499c787
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268502016.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268502016.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: c7c9983fa9c642d09c370a0b8b1c1ff4
name: 'onu_1/1/4:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.4.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268502016.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: adad960dd8d842c0a1acb4b2a824475b
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.4.[{#SNMPINDEX}])<{$MIN1:4})and(last(/ZTE-C320-GPON-nor/pon.onu.1.1.4.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/4:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: 4c78004f7efd415a9eb6e6c53c783a45
name: 'ONU discovery on pon5'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268502272]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.5
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: b68ab25ed8e24c5bafa03d19f616ebe8
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268502272.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268502272.[{#SNMPINDEX}]'
delay: '10'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: 9c367cb6cf244754976ec130e08fcdba
name: 'onu_1/1/5:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.5.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268502272.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: d4ffbedcb7a146f0a00187d30c29eee1
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.5.[{#SNMPINDEX}])<{$MIN1:5})and(last(/ZTE-C320-GPON-nor/pon.onu.1.1.5.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/5:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: dadee19cdb0849b7a2f77eae2a8d510a
name: 'ONU discovery on pon6'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268502528]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.6
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 6f1a0e9dc4fb4fc885d55f7334f35992
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268502528.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268502528.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: 462453c37b3b4b8289d43dc038f5ce80
name: 'onu_1/1/6:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.6.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268502528.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: e0d0c4e041c5490fa63e95fb821d56d4
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.6.[{#SNMPINDEX}])<{$MIN1:6})and(last(/ZTE-C320-GPON-nor/pon.onu.1.1.6.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/6:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: 82dd7f546acd468faa3b450e4864da87
name: 'ONU discovery on pon7'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268502784]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.7
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 0a31344b3acb451b948861cad22f305e
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268502784.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268502784.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: c52af4f9982544bbbf21b88625c4dd13
name: 'onu_1/1/7:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.7.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268502784.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: db20afafb99b458483d9226e6aa78321
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.7.[{#SNMPINDEX}])<{$MIN1:7})and(last(/ZTE-C320-GPON-nor/pon.onu.1.1.7.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/7:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: f07c521778204c88bdbe5601d05d6300
name: 'ONU discovery on pon8'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268503040]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.8
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 3178a67ef80d4191b29deb28384a1270
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268503040.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268503040.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: c857f1ea808f4de391ad9b56fa4bf7cb
name: 'onu_1/1/8:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.8.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268503040.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 15204b8461954c0092d170f4548fb70a
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.8.[{#SNMPINDEX}])<{$MIN1:8})and(last(/ZTE-C320-GPON-nor/pon.onu.1.1.8.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/8:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: b3f5beb1cf6540fbba30ef401a592ea5
name: 'ONU discovery on pon9'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268503296]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.9
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 3075bf2abf8642f6a08b80a6089cb99c
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268503296.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268503296.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: 215a93e15a3840c986b5db752dc5bc12
name: 'onu_1/1/9:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.9.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268503296.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: a74069c7883e475ba77e2b99db726fa8
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.9.[{#SNMPINDEX}])<{$MIN1:9})and(last(/ZTE-C320-GPON-nor/pon.onu.1.1.9.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/9:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: 867c59fbc45e4562ba35709996405e09
name: 'ONU discovery on pon10'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268503552]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.10
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 82f8123ebeca4773b2ec2e03694dc653
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268503552.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268503552.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: d2bea135b4754d848098eea4228d477b
name: 'onu_1/1/10:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.10.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268503552.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 0e93bca4134d490f9e327b646ed55981
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.10.[{#SNMPINDEX}])<{$MIN1:10})and(last(/ZTE-C320-GPON-nor/pon.onu.1.1.10.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/10:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: 3edef4bed7d0409eb5d00825a73ec477
name: 'ONU discovery on pon11'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268503808]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.11
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 19596845b158451fbca957308bd3d6f0
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268503808.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268503808.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: 3b209044a1174ba7b87a613667a70c2a
name: 'onu_1/1/11:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.11.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268503808.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 5cec780d501f43f0b0925a2163f54da8
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.11.[{#SNMPINDEX}])<{$MIN1:11})and(last(/ZTE-C320-GPON-nor/pon.onu.1.1.11.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/11:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: 64507f6987d746cd9074771a55f08894
name: 'ONU discovery on pon12'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268504064]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.12
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 5515bfd2302a4ac8a79804e945fcead4
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268504064.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268504064.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: 1e282398e7394dc0a4b06596290d6ae0
name: 'onu_1/1/12:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.12.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268504064.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 0717bec600134f529861861adfa1e9b6
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.12.[{#SNMPINDEX}])<{$MIN1:12})and(last(/ZTE-C320-GPON-nor/pon.onu.1.1.12.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/12:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: 68dd47e357b347889ac09a61db01d05c
name: 'ONU discovery on pon13'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268504320]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.13
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 98b0d92216984b20bbe934fd5e9586cd
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268504320.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268504320.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: 40739673d2d04b98bf5203b4d99cf452
name: 'onu_1/1/13:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.13.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268504320.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 3e04879d056149e083421ae2f00fa41d
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.13.[{#SNMPINDEX}])<{$MIN1:13})and(last(/ZTE-C320-GPON-nor/pon.onu.1.1.13.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/13:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: 3715d7cc66294348a967ad7a4f991641
name: 'ONU discovery on pon14'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268504576]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.14
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: d7412497098646a99c349e94ed289330
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268504576.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268504576.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: cea4804a743b40b788f43f3daa329fdd
name: 'onu_1/1/14:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.14.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268504576.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: e3d9ee81033944c8930ec73655d1c208
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.14.[{#SNMPINDEX}])<{$MIN1:14})and(last(/ZTE-C320-GPON-nor/pon.onu.1.1.14.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/14:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: 487e971045bb42dea88de1108793cb40
name: 'ONU discovery on pon15'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268504832]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.15
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: b247766a4b014a6d9a58c058356c532e
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268504832.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268504832.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: 8a0e9183565b4ce1850b444819ceb21c
name: 'onu_1/1/15:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.15.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268504832.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: ddac0120db2f4a8d92098218af74bdfb
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.15.[{#SNMPINDEX}])<{$MIN1:15})and(last(/ZTE-C320-GPON-nor/pon.onu.1.1.15.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/15:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: 220282f303914dad9cf7b321e2b3fa4b
name: 'ONU discovery on pon16'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268505088]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.16
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 90400c2e6e854a03883a1862bd96d6a8
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268505088.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268505088.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: 198429ecc2c94907b6e7813de70e2f41
name: 'onu_1/1/16:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.1.16.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268505088.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: a2e947bef7944b11991b2afb2e29307a
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.1.16.[{#SNMPINDEX}])<{$MIN1:16})and(last(/ZTE-C320-GPON-nor/pon.onu.1.1.16.[{#SNMPINDEX}])<101)'
name: 'onu_1/1/16:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: d89a04f1e957479bbfc1c11e1b02fb22
name: 'ONU discovery on pon2/1'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268566784]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.17
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: a0fa406f23fd4ff2a300921fdfcbc882
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268566784.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268566784.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: 530ba12bdbb34ffa8374d945fca9689a
name: 'onu_1/2/1:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.2.1.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268566784.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 296813238bb84ce682959ddfdba9382f
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.2.1.[{#SNMPINDEX}])<{$MIN1:17})and(last(/ZTE-C320-GPON-nor/pon.onu.1.2.1.[{#SNMPINDEX}])<101)'
name: 'onu_1/2/1:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: cecf3d442ad34c3c824e4e1fcc28e9e4
name: 'ONU discovery on pon2/2'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268567040]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.18
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: b292c948c5024dab9b1995c564f8f81e
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268567040.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268567040.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: a6e6e766874a4404b29bc39618fe1821
name: 'onu_1/2/2:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.2.2.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268567040.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 6d4a5a4cc7af466382bd4c18cfcb7bc7
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.2.2.[{#SNMPINDEX}])<{$MIN1:18})or(last(/ZTE-C320-GPON-nor/pon.onu.1.2.2.[{#SNMPINDEX}])<101)'
name: 'onu_1/2/2:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: 166add44c40a4947a8f557660a5b0eb9
name: 'ONU discovery on pon2/3'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268567296]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.19
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: a1d9f6fdc3fe46b59edfd27889317cde
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268567296.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268567296.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: 332639506d5a4e53a90ebaa07b9f626b
name: 'onu_1/2/3:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.2.3.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268567296.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 126356e4017b4991b306416f3c3aa291
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.2.3.[{#SNMPINDEX}])<{$MIN1:19})and(last(/ZTE-C320-GPON-nor/pon.onu.1.2.3.[{#SNMPINDEX}])<101)'
name: 'onu_1/2/3:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: d663a94f4c2145769fc36bd6302a5be4
name: 'ONU discovery on pon2/4'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268567552]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.20
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 2345dfbce9a84a968866caf467b64636
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268567552.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268567552.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: 4062d24a47fa45a8bfbd1c1f2901e28a
name: 'onu_1/2/4:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.2.4.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268567552.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 7af5073a9cac4475a37de7333537c82e
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.2.4.[{#SNMPINDEX}])<{$MIN1:20})and(last(/ZTE-C320-GPON-nor/pon.onu.1.2.4.[{#SNMPINDEX}])<101)'
name: 'onu_1/2/4:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: d225ccc8476a45f6830e15ba9cbc913b
name: 'ONU discovery on pon2/5'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268567808]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.21
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 8fa2a1461ebd4014b94be403a70fa817
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268567808.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268567808.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: daab84d8f887403ebc15aa2744555b60
name: 'onu_1/2/5:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.2.5.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268567808.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 2e831d29f7884a928c992543417b02c2
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.2.5.[{#SNMPINDEX}])<{$MIN1:21})and(last(/ZTE-C320-GPON-nor/pon.onu.1.2.5.[{#SNMPINDEX}])<20)'
name: 'onu_1/2/5:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: 61e0e143d41e433db532c230b5e5c6c5
name: 'ONU discovery on pon2/6'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268568064]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.22
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 9f523648d09148ef9c5bb12e15ce1d45
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268568064.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268568064.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: dab38b072b6a41cc93af51ab00626697
name: 'onu_1/2/6:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.2.6.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268568064.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 355e36604fd34706baa57824fb6b55c6
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.2.6.[{#SNMPINDEX}])<{$MIN1:22})and(last(/ZTE-C320-GPON-nor/pon.onu.1.2.6.[{#SNMPINDEX}])<101)'
name: 'onu_1/2/6:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: 6a214c93b98c408fb61883dd1c973ea8
name: 'ONU discovery on pon2/7'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268568320]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.23
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 1d3049f0fdbe4bd0b028d33b0f9a830d
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268568320.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268568320.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: b84bfb9917e84053a3eb94972e520d23
name: 'onu_1/2/7:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.2.7.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268568320.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 097d082ecbd349ca87d236407ce7af57
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.2.7.[{#SNMPINDEX}])<{$MIN1:23})and(last(/ZTE-C320-GPON-nor/pon.onu.1.2.7.[{#SNMPINDEX}])<101)'
name: 'onu_1/2/7:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: 31006a2c1f43483ea1371a0e2c06a92b
name: 'ONU discovery on pon2/8'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268568576]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.24
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 0c521303db5a45cdb1afd4e371d5f953
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268568576.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268568576.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: 87e96816b54e45cf80dd6196aa35f7cd
name: 'onu_1/2/8:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.2.8.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268568576.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 2905cb7ad67b497bbeb3c816f777bd41
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.2.8.[{#SNMPINDEX}])<{$MIN1:24})and(last(/ZTE-C320-GPON-nor/pon.onu.1.2.8.[{#SNMPINDEX}])<101)'
name: 'onu_1/2/8:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: 9d8540d261d54f79a6691624013ed502
name: 'ONU discovery on pon2/9'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268568832]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.25
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 3b4471ff54594d68bd0f65f58c843287
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268568832.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268568832.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: e4dbbce10140441b99858951782a1656
name: 'onu_1/2/9:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.2.9.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268568832.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 86c2ab46b4ef46f2941498b758d4cfe9
expression: '(last(/ZTE-C320-GPON-nor/pon.onu.1.2.9.[{#SNMPINDEX}])<{$MIN1:25})and(last(/ZTE-C320-GPON-nor/pon.onu.1.2.9.[{#SNMPINDEX}])<101)'
name: 'onu_1/2/9:{#SNMPINDEX} {#SNMPVALUE} onu signal {ITEM.LASTVALUE}'
priority: AVERAGE
-
uuid: e6795fd8ca784438aab1f6d873ab7b82
name: 'ONU discovery on pon2/10'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},.1.3.6.1.4.1.3902.1012.3.28.1.1.2.268569088]'
key: .1.3.6.1.4.1.3902.1012.3.28.1.1.2.26
delay: '1800'
lifetime: 7d
item_prototypes:
-
uuid: 598d726a44ea4e08a0aea3fca8565cee
name: '{#SNMPINDEX} Onu-rx'
type: SNMP_AGENT
snmp_oid: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268569088.{#SNMPINDEX}.1'
key: '.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268569088.[{#SNMPINDEX}]'
delay: '900'
history: 1d
tags:
-
tag: Application
value: snmp
-
uuid: 847a0b732d6e4787898a886dde13b6c5
name: 'onu_1/2/10:{#SNMPINDEX} {#SNMPVALUE} onu signal (dbm)'
type: CALCULATED
key: 'pon.onu.1.2.10.[{#SNMPINDEX}]'
delay: '900'
history: 1d
value_type: FLOAT
units: dBm
params: 'last(//.1.3.6.1.4.1.3902.1012.3.50.12.1.1.10.268569088.[{#SNMPINDEX}])*0.002-30'
trigger_prototypes:
-
uuid: 7865689b11dd45d498f597750b94c8ee