forked from zabbix/community-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate_ruijie.yaml
1495 lines (1490 loc) · 48.3 KB
/
template_ruijie.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: '2021-11-21T22:01:12Z'
groups:
-
uuid: 7df96b18c230490a9a0a9e2307226338
name: Templates
templates:
-
uuid: f6e15a2d7ee84f2d95f142fa6a08e470
template: 'Ruijie BBU'
name: 'Ruijie BBU'
description: |
## Overview
锐捷小站设备资源监测模板
groups:
-
name: Templates
items:
-
uuid: 3abb1ec65d2e4605ac66ac5745de2e73
name: 系统入口流量
key: 'net.if.in[eth1,]'
delay: 1s
-
uuid: c2e29ef1af984427a9285cac389028a3
name: 系统出口流量
key: 'net.if.out[eth1,]'
delay: 1s
-
uuid: 4e2fa07cc2d6406bb9ed733e40bf3889
name: 'aaad 内存'
key: process.aaad.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: a864c246384e4de995f2511beace2f01
expression: 'change(/Ruijie BBU/process.aaad.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.aaad.memory)<=0'
name: 'aaad 内存泄漏'
priority: WARNING
-
uuid: 7345d5354c484978ae8b4d747b9b98b9
name: 'cli_server 内存'
key: process.cli_server.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: cfed7369384d4bdf80430e8c94ff6895
expression: 'change(/Ruijie BBU/process.cli_server.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.cli_server.memory)<=0'
name: 'cli_server 内存泄漏'
priority: WARNING
-
uuid: 99cb54d9261e442986eb86271693b395
name: 'cu_oam_core 内存'
key: process.cu_oam_core.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: ad3e75bef4304daba62ef19af2a4f21e
expression: 'change(/Ruijie BBU/process.cu_oam_core.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.cu_oam_core.memory)<=0'
name: 'cu_oam_core 内存泄漏'
priority: WARNING
-
uuid: 44d52168f986426ba0db38390eb12e45
name: 'cwmp 内存'
key: process.cwmp.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: 3186a9c7598045eab99a76a07bafad44
expression: 'change(/Ruijie BBU/process.cwmp.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.cwmp.memory)<=0'
name: 'cwmp 内存泄漏'
priority: WARNING
-
uuid: c0da1b0470a140039841e8d73402a4b0
name: 'cwmp_gsoap 内存'
key: process.cwmp_gsoap.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: e1c27fdcad8f4fc998c995647071c3df
expression: 'change(/Ruijie BBU/process.cwmp_gsoap.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.cwmp_gsoap.memory)<=0'
name: 'cwmp_gsoap 内存泄漏'
priority: WARNING
-
uuid: 22d44335923b4a699b14d44eb42f998d
name: 'dev_mgr 内存'
key: process.dev_mgr.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: ad29f02da0cb4ebdb13f96b3cf524044
expression: 'change(/Ruijie BBU/process.dev_mgr.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.dev_mgr.memory)<=0'
name: 'dev_mgr 内存泄漏'
priority: WARNING
-
uuid: 06bcb511991f40faa97199d527665a44
name: 'dhcpc 内存'
key: process.dhcpc.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: f3873a8afe1940b0a77d50437c4f0045
expression: 'change(/Ruijie BBU/process.dhcpc.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.dhcpc.memory)<=0'
name: 'dhcpc 内存泄漏'
priority: WARNING
-
uuid: 23a5e7c9035a496baca742c144b9b462
name: 'dhcpd 内存'
key: process.dhcpd.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: d4264ff25e5542baad81755def6b499a
expression: 'change(/Ruijie BBU/process.dhcpd.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.dhcpd.memory)<=0'
name: 'dhcpd 内存泄漏'
priority: WARNING
-
uuid: 1a1bd90efc304724913dd8877b5bdd03
name: 'du_oam_core 内存'
key: process.du_oam_core.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: 4c991c9ee246427098b907a1d9750415
expression: 'change(/Ruijie BBU/process.du_oam_core.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.du_oam_core.memory)<=0'
name: 'du_oam_core 内存泄漏'
priority: WARNING
-
uuid: 822d12cc7a79405b8a7ad1a540e1d09a
name: 'fhmp-serverd 内存'
key: process.fhmp-serverd.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: 62fefb71627e4983b53b098928d3229b
expression: 'change(/Ruijie BBU/process.fhmp-serverd.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.fhmp-serverd.memory)<=0'
name: 'fhmp-serverd 内存泄漏'
priority: WARNING
-
uuid: d075f17622314962ac029f34b7ad1d76
name: 'gnb_cu_pdcp 内存'
key: process.gnb_cu_pdcp.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: c6c718fcb9b7430491b707c5ee0d5812
expression: 'change(/Ruijie BBU/process.gnb_cu_pdcp.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.gnb_cu_pdcp.memory)<=0'
name: 'gnb_cu_pdcp 内存泄漏'
priority: WARNING
-
uuid: 3565414abf1545e0b32b970357c68723
name: 'gnb_du_layer2 内存'
key: process.gnb_du_layer2.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: 0d7a79ba97fe4c5ba23bdf3542fea51b
expression: 'change(/Ruijie BBU/process.gnb_du_layer2.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.gnb_du_layer2.memory)<=0'
name: 'gnb_du_layer2 内存泄漏'
priority: WARNING
-
uuid: bd887d33ef45428ea8f29fffcbdccadb
name: 'top1 io进程名'
key: 'process.io.name[1]'
delay: 10s
trends: '0'
value_type: TEXT
-
uuid: b8c4bc7028e44b9ba7067cd87ecfaeb9
name: 'top2 io进程名'
key: 'process.io.name[2]'
delay: 10s
trends: '0'
value_type: TEXT
-
uuid: 0b5d9658590c46a19c2c8a8e51f0d23f
name: 'top1 进程读速率'
key: 'process.io.read[1]'
delay: 10s
value_type: FLOAT
-
uuid: b438c2b82f9140e98f2d08694610d798
name: 'top1 进程写速率'
key: 'process.io.write[1]'
delay: 10s
value_type: FLOAT
-
uuid: 04086306941a40969edfa4a5ddf8c30a
name: 'oam_apps 内存'
key: process.oam_apps.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: 355976cbf5464486a5e0748aa28eb547
expression: 'change(/Ruijie BBU/process.oam_apps.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.oam_apps.memory)<=0'
name: 'oam_apps 内存泄漏'
priority: WARNING
-
uuid: 1506dbfce8814962af7fa3124507d3da
name: 'password_policy 内存'
key: process.password_policy.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: 069d089ab32a42ef818ad021f258324a
expression: 'change(/Ruijie BBU/process.password_policy.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.password_policy.memory)<=0'
name: 'password_policy 内存泄漏'
priority: WARNING
-
uuid: dc77117e3c7048e8930c31461b23bd83
name: 'redis-server 内存'
key: process.redis-server.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: 1a6dec23f9ac4810a6494ca450350191
expression: 'change(/Ruijie BBU/process.redis-server.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.redis-server.memory)<=0'
name: 'redis-server 内存泄漏'
priority: WARNING
-
uuid: 7ee6aa2cec8c469c919ebc2a5cfd357e
name: 'rg-bspinfo 内存'
key: process.rg-bspinfo.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: 4f16e3ec71fd45e6aecaf26225590f60
expression: 'change(/Ruijie BBU/process.rg-bspinfo.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.rg-bspinfo.memory)<=0'
name: 'rg-bspinfo 内存泄漏'
priority: WARNING
-
uuid: f52afa99ae6343bfbe708a3fe5c225d8
name: 'rg-coredump-mon 内存'
key: process.rg-coredump-mon.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: 3ddd82c36e7c4fe9a13d12d943fb5ec1
expression: 'change(/Ruijie BBU/process.rg-coredump-mon.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.rg-coredump-mon.memory)<=0'
name: 'rg-coredump-mon 内存泄漏'
priority: WARNING
-
uuid: 19516f6691f448729a99a88bd62fb6fe
name: 'rg-fsui 内存'
key: process.rg-fsui.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: d64bf92cafe741ba9e051b5ee52cc78b
expression: 'change(/Ruijie BBU/process.rg-fsui.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.rg-fsui.memory)<=0'
name: 'rg-fsui 内存泄漏'
priority: WARNING
-
uuid: 56fa795274f644d0a5a7c4f2aab4a37c
name: 'rg-sysmon 内存'
key: process.rg-sysmon.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: 45a5d17ca6084bd1a33fce95d5f46b80
expression: 'change(/Ruijie BBU/process.rg-sysmon.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.rg-sysmon.memory)<=0'
name: 'rg-sysmon 内存泄漏'
priority: WARNING
-
uuid: 4a08a33ec131499c99048ec01d53b0e6
name: 'rgmomd 内存'
key: process.rgmomd.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: b8235e3c26e648dc8f05ddade78e91fe
expression: 'change(/Ruijie BBU/process.rgmomd.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.rgmomd.memory)<=0'
name: 'rgmomd 内存泄漏'
priority: WARNING
-
uuid: 9bb9941f956047b79b0164f4ee0ff358
name: 'runsh 内存'
key: process.runsh.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: 972b25dd089048e0b2928c76a1d53b9e
expression: 'change(/Ruijie BBU/process.runsh.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.runsh.memory)<=0'
name: 'runsh 内存泄漏'
priority: WARNING
-
uuid: d4833ecf134649e786d88bf566bd8599
name: 'sysha 内存'
key: process.sysha.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: a94f0966bec147b3946eb95c3e982b82
expression: 'change(/Ruijie BBU/process.sysha.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.sysha.memory)<=0'
name: 'sysha 内存泄漏'
priority: WARNING
-
uuid: e9f5d8257b344be7a57f594676010978
name: 'upgrade_mgmt 内存'
key: process.upgrade_mgmt.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: c2e6261ea7584d3681f74c250cf38045
expression: 'change(/Ruijie BBU/process.upgrade_mgmt.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.upgrade_mgmt.memory)<=0'
name: 'upgrade_mgmt 内存泄漏'
priority: WARNING
-
uuid: 6752d517f10e4aa6babaa289a23e4cb6
name: 'upgrade_proc 内存'
key: process.upgrade_proc.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: fadebdcaadc849f7945fd099bc58524b
expression: 'change(/Ruijie BBU/process.upgrade_proc.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.upgrade_proc.memory)<=0'
name: 'upgrade_proc 内存泄漏'
priority: WARNING
-
uuid: b584d9804e674b35b5fcec6a5d53280d
name: 'webagent 内存'
key: process.webagent.memory
delay: 30s
units: kb
tags:
-
tag: Application
value: process
triggers:
-
uuid: 316af4be1ad74c3c91eda604d27ee48e
expression: 'change(/Ruijie BBU/process.webagent.memory)>0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'change(/Ruijie BBU/process.webagent.memory)<=0'
name: 'webagent 内存泄漏'
priority: WARNING
-
uuid: 7358a5ebd3e740dc8293da8982f1b3f7
name: 'process_id[aaad]'
key: 'process_id[aaad]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: 5abe4b61b78945fe97395c13931b3485
expression: '(last(/Ruijie BBU/process_id[aaad],#1)<>last(/Ruijie BBU/process_id[aaad],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[aaad],#1)<>last(/Ruijie BBU/process_id[aaad],#2))=0'
name: aaad进程重启
priority: AVERAGE
-
uuid: 8271798ed30948378dba7d94e5ef3edf
name: 'process_id[cli_server.elf]'
key: 'process_id[cli_server.elf]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: 907be0f3dc984ff8b842534ef0b35bae
expression: '(last(/Ruijie BBU/process_id[cli_server.elf],#1)<>last(/Ruijie BBU/process_id[cli_server.elf],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[cli_server.elf],#1)<>last(/Ruijie BBU/process_id[cli_server.elf],#2))=0'
name: cli_server.elf进程重启
priority: AVERAGE
-
uuid: 828cc0dddd774e0bbb2ba53385e5ae9d
name: 'process_id[cu_oam_core]'
key: 'process_id[cu_oam_core]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: 93be173a535641afabe39abe2b74ca3b
expression: '(last(/Ruijie BBU/process_id[cu_oam_core],#1)<>last(/Ruijie BBU/process_id[cu_oam_core],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[cu_oam_core],#1)<>last(/Ruijie BBU/process_id[cu_oam_core],#2))=0'
name: cu_oam_core进程重启
priority: AVERAGE
-
uuid: d8b3ed28115e43a0aa4da703f13ab892
name: 'process_id[cwmp.elf]'
key: 'process_id[cwmp.elf]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: 610ea867c7834e51b5d048bfcf7173b4
expression: '(last(/Ruijie BBU/process_id[cwmp.elf],#1)<>last(/Ruijie BBU/process_id[cwmp.elf],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[cwmp.elf],#1)<>last(/Ruijie BBU/process_id[cwmp.elf],#2))=0'
name: cwmp.elf进程重启
priority: AVERAGE
-
uuid: bab12d95f15d45679383049dcfb2732d
name: 'process_id[cwmp_gsoap.elf]'
key: 'process_id[cwmp_gsoap.elf]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: 76d885030f084ebe98314291dbdd3f07
expression: '(last(/Ruijie BBU/process_id[cwmp_gsoap.elf],#1)<>last(/Ruijie BBU/process_id[cwmp_gsoap.elf],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[cwmp_gsoap.elf],#1)<>last(/Ruijie BBU/process_id[cwmp_gsoap.elf],#2))=0'
name: cwmp_gsoap.elf进程重启
priority: AVERAGE
-
uuid: c2b7412364c94b40ba84ddf3017a85bf
name: 'process_id[dev_mgr.elf]'
key: 'process_id[dev_mgr.elf]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: 838fca4589994c28b75325701396e2b2
expression: '(last(/Ruijie BBU/process_id[dev_mgr.elf],#1)<>last(/Ruijie BBU/process_id[dev_mgr.elf],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[dev_mgr.elf],#1)<>last(/Ruijie BBU/process_id[dev_mgr.elf],#2))=0'
name: dev_mgr.elf进程重启
priority: AVERAGE
-
uuid: ba01d8a834184129a70b18358d34fa2f
name: 'process_id[dhcpc.elf]'
key: 'process_id[dhcpc.elf]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: c10f276cff2c48c28c983ace9ff63d0c
expression: '(last(/Ruijie BBU/process_id[dhcpc.elf],#1)<>last(/Ruijie BBU/process_id[dhcpc.elf],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[dhcpc.elf],#1)<>last(/Ruijie BBU/process_id[dhcpc.elf],#2))=0'
name: dhcpc.elf进程重启
priority: AVERAGE
-
uuid: d2f4419a2de74c28a4eeae02cb24dba7
name: 'process_id[dhcpd.elf]'
key: 'process_id[dhcpd.elf]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: b943eb42c81143cb86adffc7608b5c47
expression: '(last(/Ruijie BBU/process_id[dhcpd.elf],#1)<>last(/Ruijie BBU/process_id[dhcpd.elf],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[dhcpd.elf],#1)<>last(/Ruijie BBU/process_id[dhcpd.elf],#2))=0'
name: dhcpd.elf进程重启
priority: AVERAGE
-
uuid: 1a3f33bf6cfa44c68ee503c75ced2672
name: 'process_id[du_oam_core]'
key: 'process_id[du_oam_core]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: 36ac4deb5ab64a0f990f78295718c85c
expression: '(last(/Ruijie BBU/process_id[du_oam_core],#1)<>last(/Ruijie BBU/process_id[du_oam_core],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[du_oam_core],#1)<>last(/Ruijie BBU/process_id[du_oam_core],#2))=0'
name: du_oam_core进程重启
priority: AVERAGE
-
uuid: 23e371430afe4d41b9c8d48c35741c46
name: 'process_id[fhmp-serverd.elf]'
key: 'process_id[fhmp-serverd.elf]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: cbfc15f233f34fc49dfd8b013348c39c
expression: '(last(/Ruijie BBU/process_id[fhmp-serverd.elf],#1)<>last(/Ruijie BBU/process_id[fhmp-serverd.elf],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[fhmp-serverd.elf],#1)<>last(/Ruijie BBU/process_id[fhmp-serverd.elf],#2))=0'
name: fhmp-serverd.elf进程重启
priority: AVERAGE
-
uuid: 0f747bfce3bc4884854965c1d6e6a845
name: 'process_id[gnb_cu_pdcp]'
key: 'process_id[gnb_cu_pdcp]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: 631bdd74b3804769a58b0cf292fae570
expression: '(last(/Ruijie BBU/process_id[gnb_cu_pdcp],#1)<>last(/Ruijie BBU/process_id[gnb_cu_pdcp],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[gnb_cu_pdcp],#1)<>last(/Ruijie BBU/process_id[gnb_cu_pdcp],#2))=0'
name: gnb_cu_pdcp进程重启
priority: AVERAGE
-
uuid: 0c5b6a74b8b5408d94ec240a2866dfc0
name: 'process_id[gnb_du_layer2]'
key: 'process_id[gnb_du_layer2]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: d361ee540ce74c30a835353deacf3266
expression: '(last(/Ruijie BBU/process_id[gnb_du_layer2],#1)<>last(/Ruijie BBU/process_id[gnb_du_layer2],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[gnb_du_layer2],#1)<>last(/Ruijie BBU/process_id[gnb_du_layer2],#2))=0'
name: gnb_du_layer2进程重启
priority: AVERAGE
-
uuid: 47a66ce42f994b259cd2aa7c0bfaacdd
name: 'process_id[oam_apps]'
key: 'process_id[oam_apps]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: 9fbf709cc2764c3580c0bf0e7cfda591
expression: '(last(/Ruijie BBU/process_id[oam_apps],#1)<>last(/Ruijie BBU/process_id[oam_apps],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[oam_apps],#1)<>last(/Ruijie BBU/process_id[oam_apps],#2))=0'
name: oam_apps进程重启
priority: AVERAGE
-
uuid: 744054532b204fbeb3004ea8a65d0c87
name: 'process_id[password_policy]'
key: 'process_id[password_policy]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: 9b0ae79788ac4e71b96d2143cdcca82a
expression: '(last(/Ruijie BBU/process_id[password_policy],#1)<>last(/Ruijie BBU/process_id[password_policy],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[password_policy],#1)<>last(/Ruijie BBU/process_id[password_policy],#2))=0'
name: password_policy进程重启
priority: AVERAGE
-
uuid: 903bd9aae72a495b945849f0ba7af1c6
name: 'process_id[redis-server]'
key: 'process_id[redis-server]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: ee7cc5f53df94ce9a32ede367048efee
expression: '(last(/Ruijie BBU/process_id[redis-server],#1)<>last(/Ruijie BBU/process_id[redis-server],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[redis-server],#1)<>last(/Ruijie BBU/process_id[redis-server],#2))=0'
name: redis-server进程重启
priority: AVERAGE
-
uuid: caae5023227f46ce81e359805a3294fb
name: 'process_id[rg-bspinfo]'
key: 'process_id[rg-bspinfo]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: 435f35273bd54bbc964018b27a02d404
expression: '(last(/Ruijie BBU/process_id[rg-bspinfo],#1)<>last(/Ruijie BBU/process_id[rg-bspinfo],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[rg-bspinfo],#1)<>last(/Ruijie BBU/process_id[rg-bspinfo],#2))=0'
name: rg-bspinfo进程重启
priority: AVERAGE
-
uuid: 9d9125c8661045a791ef6239dfd29071
name: 'process_id[rg-coredump-mon]'
key: 'process_id[rg-coredump-mon]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: 3b4ae1827ebd41c18b7fdd2d63a0c379
expression: '(last(/Ruijie BBU/process_id[rg-coredump-mon],#1)<>last(/Ruijie BBU/process_id[rg-coredump-mon],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[rg-coredump-mon],#1)<>last(/Ruijie BBU/process_id[rg-coredump-mon],#2))=0'
name: rg-coredump-mon进程重启
priority: AVERAGE
-
uuid: e647a39a8f65445ababa8e3746b28b7e
name: 'process_id[rg-fsui]'
key: 'process_id[rg-fsui]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: c7f9042817e24227bfa9039b945965b8
expression: '(last(/Ruijie BBU/process_id[rg-fsui],#1)<>last(/Ruijie BBU/process_id[rg-fsui],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[rg-fsui],#1)<>last(/Ruijie BBU/process_id[rg-fsui],#2))=0'
name: rg-fsui进程重启
priority: AVERAGE
-
uuid: 7ef21aab745f4385aba23bedb0372ac7
name: 'process_id[rg-sysmon]'
key: 'process_id[rg-sysmon]'
delay: 30s
tags:
-
tag: Application
value: process
triggers:
-
uuid: 33a93def1a5e42d0a17fef00cb9d7853
expression: '(last(/Ruijie BBU/process_id[rg-sysmon],#1)<>last(/Ruijie BBU/process_id[rg-sysmon],#2))=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: '(last(/Ruijie BBU/process_id[rg-sysmon],#1)<>last(/Ruijie BBU/process_id[rg-sysmon],#2))=0'
name: rg-sysmon进程重启
priority: AVERAGE
-
uuid: 03e20d04553249938a2b2ef99eb0377b
name: 系统Coredump文件
key: system.coredump.files
delay: 10s
trends: '0'
value_type: TEXT
tags:
-
tag: Application
value: system
triggers:
-
uuid: 0402a8bf98674879a3bc0b96300b4edd
expression: '(last(/Ruijie BBU/system.coredump.files,#1)<>last(/Ruijie BBU/system.coredump.files,#2))=0 and find(/Ruijie BBU/system.coredump.files,1s,"iregexp","[a-z]")=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'find(/Ruijie BBU/system.coredump.files,1s,"iregexp","[a-z]")=0'
name: 系统存在Coredump
priority: HIGH
-
uuid: 56d1c15558be4fa7b5300228b0c19444
name: 系统CPU使用率
key: 'system.cpu.util[]'
delay: 30s
value_type: FLOAT
tags:
-
tag: Application
value: system
triggers:
-
uuid: c24174a63f8e43e5809ff7c9368a0fd5
expression: 'last(/Ruijie BBU/system.cpu.util[])>90'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'last(/Ruijie BBU/system.cpu.util[])<=90'
name: 系统CPU高
-
uuid: ecb038bdcd2845d8a4ca475e35ad6271
name: 系统磁盘读速率
key: system.io.read
delay: 10s
value_type: FLOAT
-
uuid: 11ea721a11bb43bfb8069c3e48fabfcb
name: 系统磁盘写速率
key: system.io.write
delay: 10s
value_type: FLOAT
-
uuid: e2aaedeef9fb44b0905e41f618dbacbb
name: 系统剩余内存
key: system.memory.a_free
delay: 30s
value_type: FLOAT
preprocessing:
-
type: MULTIPLIER
parameters:
- '1000'
tags:
-
tag: Application
value: system
triggers:
-
uuid: 341603e6ce3a41a286c6247c604ef02a
expression: 'last(/Ruijie BBU/system.memory.a_free)<=0'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'last(/Ruijie BBU/system.memory.a_free)>0'
name: 系统剩余内存不足
-
uuid: 0a6c4034f97c4554853bf7a3e1d4f02b
name: 系统僵尸进程
key: system.zombie.name
delay: 30s
trends: '0'
value_type: TEXT
tags:
-
tag: Application
value: system
triggers:
-
uuid: 3e89339383c24a99994d199bdce6fe7e
expression: 'find(/Ruijie BBU/system.zombie.name,1s,"iregexp","[a-z]")=1'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'find(/Ruijie BBU/system.zombie.name,1s,"iregexp","[a-z]")=0'
name: 系统存在僵尸进程
priority: HIGH
-
uuid: 337c15541a8f4befabcaeab435b3eda9
name: testio.iotop
key: testio.iotop
delay: 10s
history: 30d
trends: '0'
value_type: TEXT
tags:
-
tag: Application
value: testio
-
uuid: 3cf772e7686d4e89987018472779e86a
name: 系统内存
key: 'vm.memory.size[used]'
delay: 30s
tags:
-
tag: Application
value: system
discovery_rules:
-
uuid: 06ff0ac9e9dd4638bd3242084aff60a4
name: 'cpu multiple discovery'
key: system.cpu.discovery
delay: 30s
filter:
conditions:
-
macro: '{#CPU.NUMBER}'
formulaid: A
item_prototypes:
-
uuid: 422e0af813c94c8da73901c807504eaa
name: 'CPU{#CPU.NUMBER}利用率'
key: 'system.cpu.util[{#CPU.NUMBER},,]'
delay: 10s
value_type: FLOAT
units: '%'
tags:
-
tag: Application
value: system
graph_prototypes:
-
uuid: 18de7b5ced0f4122b17e028aa248c179
name: 'CPU{#CPU.NUMBER}利用率'
graph_items:
-
color: 1A7C11
item:
host: 'Ruijie BBU'
key: 'system.cpu.util[{#CPU.NUMBER},,]'
-
uuid: f194bfbd782245d88def50b30bdc1d36
name: 'UE Discovery'
type: TRAP
key: ue.discovery
delay: '0'
lifetime: 1h
item_prototypes:
-
uuid: 2e00f206783f42f49ea26e29ff384d1f
name: 'UE{#NUMBER} DL MCS'
type: TRAP
key: 'ue.dl.mcs[{#NUMBER}]'
delay: '0'
trends: '0'
value_type: TEXT
tags:
-
tag: Application
value: traffics
-
uuid: 08384d5054eb40aa87afd77b468519a1
name: 'UE{#NUMBER} DL RadioBearer'
type: TRAP