Welcome to mirror list, hosted at ThFree Co, Russian Federation.

template_app_zabbix_proxy.yaml « classic « templates - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bda921860f10f47c99eda03c6c586c794962f9d1 (plain)
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
zabbix_export:
  version: '5.4'
  date: '2021-05-10T19:41:47Z'
  groups:
    -
      uuid: a571c0d144b14fd4a87a9d9b2aa9fcd6
      name: Templates/Applications
  templates:
    -
      uuid: dd114bf0fb2f46bc84840f1bb24e2b23
      template: 'Zabbix Proxy'
      name: 'Zabbix Proxy'
      groups:
        -
          name: Templates/Applications
      items:
        -
          uuid: 0230306272c24858b49243ef1c61e2ec
          name: 'Zabbix preprocessing queue'
          type: INTERNAL
          key: 'zabbix[preprocessing_queue]'
          history: 1w
          description: 'Count of values enqueued in the preprocessing queue.'
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
        -
          uuid: 5131f979c17a4346a95f8ba77e7133a4
          name: 'Utilization of availability manager internal processes, in %'
          type: INTERNAL
          key: 'zabbix[process,availability manager,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: c830b78ac66142b888211d8c58b32296
              expression: 'avg(/Zabbix Proxy/zabbix[process,availability manager,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,availability manager,avg,busy],10m)<65'
              name: 'Zabbix availability manager processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 3d1bfa64a447427da0b463c3617b212e
          name: 'Utilization of configuration syncer internal processes, in %'
          type: INTERNAL
          key: 'zabbix[process,configuration syncer,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 5b76da8a907e44a0b09b8adbbdb42a1b
              expression: 'avg(/Zabbix Proxy/zabbix[process,configuration syncer,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,configuration syncer,avg,busy],10m)<65'
              name: 'Zabbix configuration syncer processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 69eefd6aba164d71b0a2b8d2df06e9a3
          name: 'Utilization of data sender internal processes, in %'
          type: INTERNAL
          key: 'zabbix[process,data sender,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 99225fe1a734436ca28a7bb7c55b3084
              expression: 'avg(/Zabbix Proxy/zabbix[process,data sender,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,data sender,avg,busy],10m)<65'
              name: 'Zabbix data sender processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 1d00c5ef345f4827a921ff3e3617d316
          name: 'Utilization of discoverer data collector processes, in %'
          type: INTERNAL
          key: 'zabbix[process,discoverer,avg,busy]'
          history: 1w
          value_type: FLOAT
          allowed_hosts: localhost
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 64d5716c725a41cda0b252f7cc956acd
              expression: 'avg(/Zabbix Proxy/zabbix[process,discoverer,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,discoverer,avg,busy],10m)<65'
              name: 'Zabbix discoverer processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: a1a7b0f3c34248a0993c305cd76fea5a
          name: 'Utilization of heartbeat sender internal processes, in %'
          type: INTERNAL
          key: 'zabbix[process,heartbeat sender,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 96d1dc274a134deb981ae80291182cb9
              expression: 'avg(/Zabbix Proxy/zabbix[process,heartbeat sender,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,heartbeat sender,avg,busy],10m)<65'
              name: 'Zabbix heartbeat sender processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: d34bb8623fff4fb99f87167534299654
          name: 'Utilization of history poller data collector processes, in %'
          type: INTERNAL
          key: 'zabbix[process,history poller,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 1c0b3aa064f742c6bee254919c5b38c8
              expression: 'avg(/Zabbix Proxy/zabbix[process,history poller,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,history poller,avg,busy],10m)<65'
              name: 'Zabbix history poller processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 7dde8cd03e5043a2bd484f7213a5f112
          name: 'Utilization of history syncer internal processes, in %'
          type: INTERNAL
          key: 'zabbix[process,history syncer,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 8660648da27c477a804c118e1b7242bd
              expression: 'avg(/Zabbix Proxy/zabbix[process,history syncer,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,history syncer,avg,busy],10m)<65'
              name: 'Zabbix history syncer processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 31f0355f4d7c4de6b0d6f206d1ca9fa3
          name: 'Utilization of housekeeper internal processes, in %'
          type: INTERNAL
          key: 'zabbix[process,housekeeper,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 75707981311e426c9bcc9c3196079e50
              expression: 'avg(/Zabbix Proxy/zabbix[process,housekeeper,avg,busy],30m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,housekeeper,avg,busy],30m)<65'
              name: 'Zabbix housekeeper processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 782b11dbe3ce47e3b9098c43d83057ad
          name: 'Utilization of http poller data collector processes, in %'
          type: INTERNAL
          key: 'zabbix[process,http poller,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 18c434fb246745c78a62f2e4b346821a
              expression: 'avg(/Zabbix Proxy/zabbix[process,http poller,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,http poller,avg,busy],10m)<65'
              name: 'Zabbix http poller processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 9b899ab317b447d1a82d1136e0a2ff6f
          name: 'Utilization of icmp pinger data collector processes, in %'
          type: INTERNAL
          key: 'zabbix[process,icmp pinger,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: e8dfd7be9a534c3085347d8e1e9ec2f5
              expression: 'avg(/Zabbix Proxy/zabbix[process,icmp pinger,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,icmp pinger,avg,busy],10m)<65'
              name: 'Zabbix icmp pinger processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 52b3123dfef94d8bba1b1a13314a9d4f
          name: 'Utilization of ipmi manager internal processes, in %'
          type: INTERNAL
          key: 'zabbix[process,ipmi manager,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: aad8c451fc4c485cbf99f71ba1d26b23
              expression: 'avg(/Zabbix Proxy/zabbix[process,ipmi manager,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,ipmi manager,avg,busy],10m)<65'
              name: 'Zabbix ipmi manager processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 7cfb2f1504dd4b0aaac804b132d49bc5
          name: 'Utilization of ipmi poller data collector processes, in %'
          type: INTERNAL
          key: 'zabbix[process,ipmi poller,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 0d9e8ea7bea241e8b778f6ca1433c5ed
              expression: 'avg(/Zabbix Proxy/zabbix[process,ipmi poller,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,ipmi poller,avg,busy],10m)<65'
              name: 'Zabbix ipmi poller processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 02214c0c38394bef8d648369584ae30b
          name: 'Utilization of java poller data collector processes, in %'
          type: INTERNAL
          key: 'zabbix[process,java poller,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 762ad70d81e345d283c94e66f870d53a
              expression: 'avg(/Zabbix Proxy/zabbix[process,java poller,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,java poller,avg,busy],10m)<65'
              name: 'Zabbix java poller processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 334398ad893e4146bc1b9370eef9df59
          name: 'Utilization of poller data collector processes, in %'
          type: INTERNAL
          key: 'zabbix[process,poller,avg,busy]'
          history: 1w
          value_type: FLOAT
          allowed_hosts: localhost
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 0c77fae4b18441f988b74f14ed86912c
              expression: 'avg(/Zabbix Proxy/zabbix[process,poller,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,poller,avg,busy],10m)<65'
              name: 'Zabbix poller processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 20705fe12d4c40a4a27306b66ec9a69d
          name: 'Utilization of preprocessing manager internal processes, in %'
          type: INTERNAL
          key: 'zabbix[process,preprocessing manager,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 1df6d6bcac064beb97175636e0e79ba8
              expression: 'avg(/Zabbix Proxy/zabbix[process,preprocessing manager,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,preprocessing manager,avg,busy],10m)<65'
              name: 'Zabbix preprocessing manager processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 9c7916375cf841fb8edaf383b93a0522
          name: 'Utilization of preprocessing worker internal processes, in %'
          type: INTERNAL
          key: 'zabbix[process,preprocessing worker,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: ced67fddced246cf8365145cddf5c621
              expression: 'avg(/Zabbix Proxy/zabbix[process,preprocessing worker,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,preprocessing worker,avg,busy],10m)<65'
              name: 'Zabbix preprocessing worker processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 1fd488bbb4af450cb2b5e8c81b739f29
          name: 'Utilization of self-monitoring internal processes, in %'
          type: INTERNAL
          key: 'zabbix[process,self-monitoring,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: c1bee413487f40ddb2d52bce97971488
              expression: 'avg(/Zabbix Proxy/zabbix[process,self-monitoring,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,self-monitoring,avg,busy],10m)<65'
              name: 'Zabbix self-monitoring processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 77ab21500d734deea86938a1a90035e0
          name: 'Utilization of snmp trapper data collector processes, in %'
          type: INTERNAL
          key: 'zabbix[process,snmp trapper,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: a78c24ae8cc845f29a7ab975f5b71e93
              expression: 'avg(/Zabbix Proxy/zabbix[process,snmp trapper,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,snmp trapper,avg,busy],10m)<65'
              name: 'Zabbix snmp trapper processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 94d1aa1bff2d499f9e29dd9cafd04b9e
          name: 'Utilization of task manager internal processes, in %'
          type: INTERNAL
          key: 'zabbix[process,task manager,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 8a26b90b341444adbf44efd9591e6c9f
              expression: 'avg(/Zabbix Proxy/zabbix[process,task manager,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,task manager,avg,busy],10m)<65'
              name: 'Zabbix task manager processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 8d99635291d14ae8a5ba7d794540bde2
          name: 'Utilization of trapper data collector processes, in %'
          type: INTERNAL
          key: 'zabbix[process,trapper,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 72c7da07883d48c4941e52c550b7c8a9
              expression: 'avg(/Zabbix Proxy/zabbix[process,trapper,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,trapper,avg,busy],10m)<65'
              name: 'Zabbix trapper processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 7b0f5b75d4854b84a7e1f51975732e25
          name: 'Utilization of unreachable poller data collector processes, in %'
          type: INTERNAL
          key: 'zabbix[process,unreachable poller,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 9c3d466b55ef4378bb2f0d0453c84a79
              expression: 'avg(/Zabbix Proxy/zabbix[process,unreachable poller,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,unreachable poller,avg,busy],10m)<65'
              name: 'Zabbix unreachable poller processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: a5a7076a175c400f866a4d873d12e1e4
          name: 'Utilization of vmware data collector processes, in %'
          type: INTERNAL
          key: 'zabbix[process,vmware collector,avg,busy]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 986950e94af84a37982f26ea4107f868
              expression: 'avg(/Zabbix Proxy/zabbix[process,vmware collector,avg,busy],10m)>75'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'avg(/Zabbix Proxy/zabbix[process,vmware collector,avg,busy],10m)<65'
              name: 'Zabbix vmware collector processes more than 75% busy'
              priority: AVERAGE
        -
          uuid: 2fa1c8d8fcb94d4c83cf4e291420a690
          name: 'Zabbix queue over 10 minutes'
          type: INTERNAL
          key: 'zabbix[queue,10m]'
          delay: 10m
          history: 1w
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: f5807fdb12b74603bf269f9976f7c357
              expression: 'min(/Zabbix Proxy/zabbix[queue,10m],10m)>100'
              name: 'More than 100 items having missing data for more than 10 minutes'
              priority: WARNING
              description: 'zabbix[queue,10m] item is collecting data about how many items are missing data for more than 10 minutes'
        -
          uuid: cfbb623cca754fd49d4f606ab52f658d
          name: 'Zabbix queue'
          type: INTERNAL
          key: 'zabbix[queue]'
          history: 1w
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
        -
          uuid: 606d1d43812341db8260a233295a4a4e
          name: 'Zabbix configuration cache, % used'
          type: INTERNAL
          key: 'zabbix[rcache,buffer,pused]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: dd47ef43c5cc4cb89a2df9a4146cd214
              expression: 'max(/Zabbix Proxy/zabbix[rcache,buffer,pused],10m)>75'
              name: 'More than 75% used in the configuration cache'
              priority: AVERAGE
              description: 'Consider increasing CacheSize in the zabbix_proxy.conf configuration file'
        -
          uuid: fc7412c1a02240b7931d3511743a2662
          name: 'Zabbix vmware cache, % used'
          type: INTERNAL
          key: 'zabbix[vmware,buffer,pused]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: f40a21aa5b524150a56190de7d3d4407
              expression: 'max(/Zabbix Proxy/zabbix[vmware,buffer,pused],10m)>75'
              name: 'More than 75% used in the vmware cache'
              priority: AVERAGE
              description: 'Consider increasing VMwareCacheSize in the zabbix_proxy.conf configuration file'
        -
          uuid: aec73d2a7e444702b352c75998bf636e
          name: 'Zabbix history write cache, % used'
          type: INTERNAL
          key: 'zabbix[wcache,history,pused]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: eb6ebdc7069042949b8fd955b31c055c
              expression: 'max(/Zabbix Proxy/zabbix[wcache,history,pused],10m)>75'
              name: 'More than 75% used in the history cache'
              priority: AVERAGE
              description: 'Consider increasing HistoryCacheSize in the zabbix_proxy.conf configuration file'
        -
          uuid: 8c4c7802497d4de4988278edc29f8eb1
          name: 'Zabbix history index cache, % used'
          type: INTERNAL
          key: 'zabbix[wcache,index,pused]'
          history: 1w
          value_type: FLOAT
          units: '%'
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
          triggers:
            -
              uuid: 2afaf0ef349145038ab068bcd9bf2bf6
              expression: 'max(/Zabbix Proxy/zabbix[wcache,index,pused],10m)>75'
              name: 'More than 75% used in the history index cache'
              priority: AVERAGE
              description: 'Consider increasing HistoryIndexCacheSize in the zabbix_proxy.conf configuration file'
        -
          uuid: ba5efd0ed21d4ac39e1375788b7198de
          name: 'Number of processed numeric (float) values per second'
          type: INTERNAL
          key: 'zabbix[wcache,values,float]'
          history: 1w
          value_type: FLOAT
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
        -
          uuid: 47cdd6ef01734ec1ab15b0ab43d147ca
          name: 'Number of processed log values per second'
          type: INTERNAL
          key: 'zabbix[wcache,values,log]'
          history: 1w
          value_type: FLOAT
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
        -
          uuid: 46574db1d70545f6af89e8607d22f5bb
          name: 'Number of processed not supported values per second'
          type: INTERNAL
          key: 'zabbix[wcache,values,not supported]'
          history: 1w
          value_type: FLOAT
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
        -
          uuid: 5f0c3ed0998e499aaa1e4a30726928fc
          name: 'Number of processed character values per second'
          type: INTERNAL
          key: 'zabbix[wcache,values,str]'
          history: 1w
          value_type: FLOAT
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
        -
          uuid: 1c259b08b3ff445f9b2f24a02c07c5db
          name: 'Number of processed text values per second'
          type: INTERNAL
          key: 'zabbix[wcache,values,text]'
          history: 1w
          value_type: FLOAT
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
        -
          uuid: 8e4b9641b173415c8608ee4863bcd547
          name: 'Number of processed numeric (unsigned) values per second'
          type: INTERNAL
          key: 'zabbix[wcache,values,uint]'
          history: 1w
          value_type: FLOAT
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
        -
          uuid: 5229b786efc84f01bb31f2819c47d9f4
          name: 'Number of processed values per second'
          type: INTERNAL
          key: 'zabbix[wcache,values]'
          history: 1w
          value_type: FLOAT
          preprocessing:
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          request_method: POST
          tags:
            -
              tag: Application
              value: 'Zabbix proxy'
      dashboards:
        -
          uuid: c12bdb602db645a292d0cbba39d58e9f
          name: 'Zabbix proxy health'
          pages:
            -
              widgets:
                -
                  type: GRAPH_CLASSIC
                  width: '12'
                  height: '6'
                  fields:
                    -
                      type: INTEGER
                      name: source_type
                      value: '0'
                    -
                      type: GRAPH
                      name: graphid
                      value:
                        name: 'Zabbix proxy performance'
                        host: 'Zabbix Proxy'
                -
                  type: GRAPH_CLASSIC
                  x: '12'
                  width: '12'
                  height: '6'
                  fields:
                    -
                      type: INTEGER
                      name: source_type
                      value: '0'
                    -
                      type: GRAPH
                      name: graphid
                      value:
                        name: 'Zabbix data gathering process busy %'
                        host: 'Zabbix Proxy'
                -
                  type: GRAPH_CLASSIC
                  'y': '6'
                  width: '12'
                  height: '5'
                  fields:
                    -
                      type: INTEGER
                      name: source_type
                      value: '0'
                    -
                      type: GRAPH
                      name: graphid
                      value:
                        name: 'Zabbix internal process busy %'
                        host: 'Zabbix Proxy'
                -
                  type: GRAPH_CLASSIC
                  x: '12'
                  'y': '6'
                  width: '12'
                  height: '5'
                  fields:
                    -
                      type: INTEGER
                      name: source_type
                      value: '0'
                    -
                      type: GRAPH
                      name: graphid
                      value:
                        name: 'Zabbix cache usage, % used'
                        host: 'Zabbix Proxy'
  graphs:
    -
      uuid: 40b649050cb8420888abcae129eafe27
      name: 'Zabbix cache usage, % used'
      ymin_type_1: FIXED
      ymax_type_1: FIXED
      graph_items:
        -
          color: DD0000
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[rcache,buffer,pused]'
        -
          sortorder: '1'
          color: 00DDDD
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[wcache,index,pused]'
        -
          sortorder: '2'
          color: 3333FF
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[wcache,history,pused]'
        -
          sortorder: '3'
          color: 00FF00
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[vmware,buffer,pused]'
    -
      uuid: 7635642bf94249e39d420a6eba1f6649
      name: 'Zabbix data gathering process busy %'
      ymin_type_1: FIXED
      ymax_type_1: FIXED
      graph_items:
        -
          sortorder: '1'
          color: '990099'
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,trapper,avg,busy]'
        -
          sortorder: '2'
          color: '990000'
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,poller,avg,busy]'
        -
          sortorder: '3'
          color: 0000EE
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,ipmi poller,avg,busy]'
        -
          sortorder: '4'
          color: FF33FF
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,discoverer,avg,busy]'
        -
          sortorder: '5'
          color: '007700'
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,icmp pinger,avg,busy]'
        -
          sortorder: '6'
          color: '003300'
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,http poller,avg,busy]'
        -
          sortorder: '7'
          color: 33FFFF
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,unreachable poller,avg,busy]'
        -
          sortorder: '8'
          color: DD0000
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,java poller,avg,busy]'
        -
          sortorder: '9'
          color: '000099'
          calc_fnc: ALL
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,snmp trapper,avg,busy]'
        -
          sortorder: '10'
          color: 00FF00
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,vmware collector,avg,busy]'
        -
          sortorder: '11'
          color: BB2A02
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,history poller,avg,busy]'
    -
      uuid: 60a3dcc84e494c17b656395d78d9b9e9
      name: 'Zabbix internal process busy %'
      ymin_type_1: FIXED
      ymax_type_1: FIXED
      graph_items:
        -
          sortorder: '1'
          color: FFAA00
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,housekeeper,avg,busy]'
        -
          sortorder: '2'
          color: '990099'
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,configuration syncer,avg,busy]'
        -
          sortorder: '3'
          color: EE0000
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,history syncer,avg,busy]'
        -
          sortorder: '4'
          color: FF66FF
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,self-monitoring,avg,busy]'
        -
          sortorder: '5'
          color: 0000EE
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,heartbeat sender,avg,busy]'
        -
          sortorder: '6'
          color: 00EE00
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,data sender,avg,busy]'
        -
          sortorder: '7'
          color: '009999'
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,task manager,avg,busy]'
        -
          sortorder: '8'
          color: BBBB00
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,ipmi manager,avg,busy]'
        -
          sortorder: '9'
          color: '990000'
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,preprocessing manager,avg,busy]'
        -
          sortorder: '10'
          color: '008800'
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,preprocessing worker,avg,busy]'
        -
          sortorder: '11'
          color: BB2A02
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[process,availability manager,avg,busy]'
    -
      uuid: 787ad6ca2967415c8a1daa4a4400c12d
      name: 'Zabbix internal queues'
      graph_items:
        -
          color: '008800'
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[preprocessing_queue]'
    -
      uuid: d03bdc914520474084d6809312cdf097
      name: 'Zabbix proxy performance'
      graph_items:
        -
          drawtype: GRADIENT_LINE
          color: 00C800
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[wcache,values]'
        -
          sortorder: '1'
          drawtype: GRADIENT_LINE
          color: C80000
          yaxisside: RIGHT
          item:
            host: 'Zabbix Proxy'
            key: 'zabbix[queue]'