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

template_app_envoy_proxy_http.yaml « envoy_proxy_http « app « templates - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63c626555d1b8452e06d466f9604744df5aa3971 (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
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
zabbix_export:
  version: '6.2'
  date: '2022-06-07T19:33:18Z'
  template_groups:
    -
      uuid: a571c0d144b14fd4a87a9d9b2aa9fcd6
      name: Templates/Applications
  templates:
    -
      uuid: 0368ca599bbb49729587b9c43ac83084
      template: 'Envoy Proxy by HTTP'
      name: 'Envoy Proxy by HTTP'
      description: |
        Get Envoy Proxy metrics by HTTP agent from metrics endpoint.
        https://www.envoyproxy.io/docs/envoy/v1.20.0/operations/stats_overview
        
        Don't forget to change macros {$ENVOY.URL}, {$ENVOY.METRICS.PATH}.
        Some metrics may not be collected depending on your Envoy Proxy instance version and configuration.
        
        You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback
        
        Template tooling version used: 0.41
      groups:
        -
          name: Templates/Applications
      items:
        -
          uuid: c5c90eeb0c424cc8ade0b795f2c1bb45
          name: 'Envoy Proxy: Clusters, active'
          type: DEPENDENT
          key: envoy.cluster_manager.active_clusters
          delay: '0'
          history: 7d
          description: 'Number of currently active (warmed) clusters.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_cluster_manager_active_clusters
                - value
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: cluster
        -
          uuid: f994b20217444723b6a1aad5b9a07cd0
          name: 'Envoy Proxy: Clusters, added rate'
          type: DEPENDENT
          key: envoy.cluster_manager.cluster_added.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Total clusters added (either via static config or CDS) per second.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_cluster_manager_cluster_added
                - value
                - ''
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: cluster
        -
          uuid: 0286c5deba924ce8b79e3b1f6c9e033c
          name: 'Envoy Proxy: Clusters, modified rate'
          type: DEPENDENT
          key: envoy.cluster_manager.cluster_modified.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Total clusters modified (via CDS) per second.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_cluster_manager_cluster_modified
                - value
                - ''
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: cluster
        -
          uuid: 5c3475b88a044d0bb779a3ee455d2618
          name: 'Envoy Proxy: Clusters, removed rate'
          type: DEPENDENT
          key: envoy.cluster_manager.cluster_removed.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Total clusters removed (via CDS) per second.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_cluster_manager_cluster_removed
                - value
                - ''
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: cluster
        -
          uuid: 9bb29e3b322e40c3aaa14f2e0911cc68
          name: 'Envoy Proxy: Clusters, updates rate'
          type: DEPENDENT
          key: envoy.cluster_manager.cluster_updated.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Total cluster updates per second.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_cluster_manager_cluster_updated
                - value
                - ''
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: cluster
        -
          uuid: 9c3503fc553a409ab897f287b882f055
          name: 'Envoy Proxy: Clusters, warming'
          type: DEPENDENT
          key: envoy.cluster_manager.warming_clusters
          delay: '0'
          history: 7d
          description: 'Number of currently warming (not active) clusters.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_cluster_manager_warming_clusters
                - value
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: cluster
        -
          uuid: cc10052300624df3bf869279dd5e7b49
          name: 'Envoy Proxy: Filesystem, flushed by timer rate'
          type: DEPENDENT
          key: envoy.filesystem.flushed_by_timer.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Total number of times internal flush buffers are written to a file due to flush timeout per second.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_filesystem_flushed_by_timer
                - value
                - ''
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: filesystem
        -
          uuid: b3c050dd60d44c0599bc44c9a21621d9
          name: 'Envoy Proxy: Filesystem, reopen failed rate'
          type: DEPENDENT
          key: envoy.filesystem.reopen_failed.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Total number of times a file was failed to be opened per second.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_filesystem_reopen_failed
                - value
                - ''
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: filesystem
        -
          uuid: 2f400ee513c841f6b7a4fa48834f4a9c
          name: 'Envoy Proxy: Filesystem, write completed rate'
          type: DEPENDENT
          key: envoy.filesystem.write_completed.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Total number of times a file was written per second.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_filesystem_write_completed
                - value
                - ''
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: filesystem
        -
          uuid: ae48575f37494e0e9ccfa2c390f5bf68
          name: 'Envoy Proxy: Filesystem, write failed rate'
          type: DEPENDENT
          key: envoy.filesystem.write_failed.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Total number of times an error occurred during a file write operation per second.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_filesystem_write_failed
                - value
                - ''
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: filesystem
        -
          uuid: c6baf4c4e99f4516a23f87c089252a82
          name: 'Envoy Proxy: Get node metrics'
          type: HTTP_AGENT
          key: envoy.get_metrics
          history: '0'
          trends: '0'
          value_type: TEXT
          description: 'Get server metrics.'
          preprocessing:
            -
              type: CHECK_NOT_SUPPORTED
              parameters:
                - ''
          url: '{$ENVOY.URL}{$ENVOY.METRICS.PATH}'
          tags:
            -
              tag: component
              value: raw
        -
          uuid: 579f47037749460e974433ef6cfe3202
          name: 'Envoy Proxy: Listeners, added'
          type: DEPENDENT
          key: envoy.listener_manager.listener_added.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Total listeners added (either via static config or LDS) per second.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_listener_manager_listener_added
                - value
                - ''
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: listener
        -
          uuid: a259d191fcce48458a9f671a1a2dd6aa
          name: 'Envoy Proxy: Listeners, create failure'
          type: DEPENDENT
          key: envoy.listener_manager.listener_create_failure.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Total failed listener object additions to workers per second.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_listener_manager_listener_create_failure
                - value
                - ''
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: listener
        -
          uuid: c036b55d5aea45f9b0e9c44ea279e2ed
          name: 'Envoy Proxy: Listeners, create success'
          type: DEPENDENT
          key: envoy.listener_manager.listener_create_success.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Total listener objects successfully added to workers per second.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_listener_manager_listener_create_success
                - value
                - ''
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: listener
        -
          uuid: b217c7aaa415495089d079a2f81ead2d
          name: 'Envoy Proxy: Listeners, stopped'
          type: DEPENDENT
          key: envoy.listener_manager.listener_stopped.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Total listeners stopped per second.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_listener_manager_listener_stopped
                - value
                - ''
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: listener
        -
          uuid: 7ba3e4be89514d53b8ebaad8e9ba58d0
          name: 'Envoy Proxy: Listeners, active'
          type: DEPENDENT
          key: envoy.listener_manager.total_listeners_active
          delay: '0'
          history: 7d
          description: 'Number of currently active listeners.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_listener_manager_total_listeners_active
                - function
                - sum
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: listener
        -
          uuid: f01f1236cd1a4661b67633836a61537e
          name: 'Envoy Proxy: Listeners, draining'
          type: DEPENDENT
          key: envoy.listener_manager.total_listeners_draining
          delay: '0'
          history: 7d
          description: 'Number of currently draining listeners.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_listener_manager_total_listeners_draining
                - function
                - sum
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: listener
        -
          uuid: a1a01a7df5364a098fdf96b9de20558d
          name: 'Envoy Proxy: Listener, warming'
          type: DEPENDENT
          key: envoy.listener_manager.total_listeners_warming
          delay: '0'
          history: 7d
          description: 'Number of currently warming listeners.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_listener_manager_total_listeners_warming
                - function
                - sum
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: listener
        -
          uuid: feeab802ed9a44559ded48ea67aba23e
          name: 'Envoy Proxy: Listener manager, initialized'
          type: DEPENDENT
          key: envoy.listener_manager.workers_started
          delay: '0'
          history: 7d
          description: 'A boolean (1 if started and 0 otherwise) that indicates whether listeners have been initialized on workers.'
          valuemap:
            name: 'Envoy listener manager'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_listener_manager_workers_started
                - value
                - ''
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 3h
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: listener-manager
        -
          uuid: b8e3b2a5614e4460abe10be443641621
          name: 'Envoy Proxy: Server concurrency'
          type: DEPENDENT
          key: envoy.server.concurrency
          delay: '0'
          history: 7d
          description: 'Number of worker threads.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_server_concurrency
                - value
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: application
        -
          uuid: 91cbea325a634d8a8fc256782a7e004d
          name: 'Envoy Proxy: Certificate expiration, day before'
          type: DEPENDENT
          key: envoy.server.days_until_first_cert_expiring
          delay: '0'
          history: 7d
          units: '!Days'
          description: 'Number of days until the next certificate being managed will expire.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_server_days_until_first_cert_expiring
                - value
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: certificate
          triggers:
            -
              uuid: d025e1c521ee4f53acd896d96609beec
              expression: 'last(/Envoy Proxy by HTTP/envoy.server.days_until_first_cert_expiring)<{$ENVOY.CERT.MIN}'
              name: 'Envoy Proxy: SSL certificate expires soon'
              event_name: 'Envoy Proxy: SSL certificate expires soon (less than {$CERT.EXPIRY.MIN} days)'
              opdata: 'Expires: {ITEM.VALUE}'
              priority: WARNING
              description: 'Please check certificate. Less than {$ENVOY.CERT.MIN} days left until the next certificate being managed will expire.'
              tags:
                -
                  tag: scope
                  value: security
        -
          uuid: d8fc1e89c2e14f5e86ea1378fee22a0b
          name: 'Envoy Proxy: Server live'
          type: DEPENDENT
          key: envoy.server.live
          delay: '0'
          history: 7d
          description: '1 if the server is not currently draining, 0 otherwise.'
          valuemap:
            name: 'Envoy server live'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_server_live
                - value
                - ''
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 3h
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: health
        -
          uuid: 4b50974e6b7444c8a47da589239247a9
          name: 'Envoy Proxy: Memory allocated'
          type: DEPENDENT
          key: envoy.server.memory_allocated
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: B
          description: 'Current amount of allocated memory in bytes. Total of both new and old Envoy processes on hot restart.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_server_memory_allocated
                - value
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: memory
        -
          uuid: 05b2fe80bbc54b58b19166c921ba244a
          name: 'Envoy Proxy: Memory heap size'
          type: DEPENDENT
          key: envoy.server.memory_heap_size
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: B
          description: 'Current reserved heap size in bytes. New Envoy process heap size on hot restart.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_server_memory_heap_size
                - value
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: memory
        -
          uuid: a1842c747e5b44a39746037b3f844f4f
          name: 'Envoy Proxy: Memory physical size'
          type: DEPENDENT
          key: envoy.server.memory_physical_size
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: B
          description: 'Current estimate of total bytes of the physical memory. New Envoy process physical memory size on hot restart.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_server_memory_physical_size
                - value
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: memory
        -
          uuid: a13b35ef1e9f4697953a935239b146d9
          name: 'Envoy Proxy: Connections, parent'
          type: DEPENDENT
          key: envoy.server.parent_connections
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Total connections of the old Envoy process on hot restart.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_server_parent_connections
                - value
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: connections
        -
          uuid: 701e69bdd408408c8b516e130ed31725
          name: 'Envoy Proxy: Server state'
          type: DEPENDENT
          key: envoy.server.state
          delay: '0'
          history: 7d
          description: |
            State of the server.
            Live - (default) ⁣Server is live and serving traffic.
            Draining - ⁣Server is draining listeners in response to external health checks failing.
            Pre initializing - ⁣Server has not yet completed cluster manager initialization.
            Initializing - Server is running the cluster manager initialization callbacks (e.g., RDS).
          valuemap:
            name: 'Envoy server state'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_server_state
                - value
                - ''
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 3h
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: health
          triggers:
            -
              uuid: b90a6241e1294fdc8502426b7582c1c2
              expression: 'last(/Envoy Proxy by HTTP/envoy.server.state) > 0'
              name: 'Envoy Proxy: Server state is not live'
              opdata: 'Current state: {ITEM.LASTVALUE1}'
              priority: AVERAGE
              tags:
                -
                  tag: scope
                  value: availability
        -
          uuid: 8b2f3702af20404aa1c75498098aff02
          name: 'Envoy Proxy: Connections, total'
          type: DEPENDENT
          key: envoy.server.total_connections
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Total connections of both new and old Envoy processes.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_server_total_connections
                - value
                - ''
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: connections
        -
          uuid: ee3c3a89aed34257999e6106fddbc8a4
          name: 'Envoy Proxy: Uptime'
          type: DEPENDENT
          key: envoy.server.uptime
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: s
          description: 'Current server uptime in seconds.'
          preprocessing:
            -
              type: PROMETHEUS_PATTERN
              parameters:
                - envoy_server_uptime
                - value
                - ''
              error_handler: DISCARD_VALUE
          master_item:
            key: envoy.get_metrics
          tags:
            -
              tag: component
              value: application
          triggers:
            -
              uuid: 173c90200dd1451db10b8ea8b018bc54
              expression: 'nodata(/Envoy Proxy by HTTP/envoy.server.uptime,10m)=1'
              name: 'Envoy Proxy: Failed to fetch metrics data'
              event_name: 'Envoy Proxy: Failed to fetch metrics data (or no data for 10m)'
              priority: WARNING
              description: 'Zabbix has not received data for items for the last 10 minutes.'
              manual_close: 'YES'
              tags:
                -
                  tag: scope
                  value: availability
            -
              uuid: 01e29535e00143c9a64fe844f637f17e
              expression: 'last(/Envoy Proxy by HTTP/envoy.server.uptime)<10m'
              name: 'Envoy Proxy: Service has been restarted'
              event_name: 'Envoy Proxy: Service has been restarted (uptime < 10m)'
              priority: INFO
              description: 'Uptime is less than 10 minutes.'
              manual_close: 'YES'
              tags:
                -
                  tag: scope
                  value: notice
      discovery_rules:
        -
          uuid: e5e43b5959744fdd94f103df8d33f635
          name: 'Cluster metrics discovery'
          type: DEPENDENT
          key: envoy.lld.cluster
          delay: '0'
          item_prototypes:
            -
              uuid: 6040df76d67048aaa4217dc14a2db3ed
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Membership, degraded'
              type: DEPENDENT
              key: 'envoy.cluster.membership_degraded["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              description: 'Current cluster degraded total.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_membership_degraded{envoy_cluster_name = "{#CLUSTER_NAME}"}'
                    - function
                    - sum
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
            -
              uuid: 0368ecc40bc54a70bae3c81509bad062
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Membership, healthy'
              type: DEPENDENT
              key: 'envoy.cluster.membership_healthy["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              description: 'Current cluster healthy total (inclusive of both health checking and outlier detection).'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_membership_healthy{envoy_cluster_name = "{#CLUSTER_NAME}"}'
                    - function
                    - sum
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
            -
              uuid: a4cd74b439e3483499e30ffefdb36976
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Membership, total'
              type: DEPENDENT
              key: 'envoy.cluster.membership_total["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              description: 'Current cluster membership total.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_membership_total{envoy_cluster_name = "{#CLUSTER_NAME}"}'
                    - function
                    - sum
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
            -
              uuid: d453ade473ae4beaab06afa117814a1b
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Membership, unhealthy'
              type: CALCULATED
              key: 'envoy.cluster.membership_unhealthy["{#CLUSTER_NAME}"]'
              history: 7d
              params: 'last(//envoy.cluster.membership_total["{#CLUSTER_NAME}"]) - last(//envoy.cluster.membership_healthy["{#CLUSTER_NAME}"])'
              description: 'Current cluster unhealthy.'
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
              trigger_prototypes:
                -
                  uuid: 7542707fd247445cb9eaa51d01e76d5e
                  expression: 'last(/Envoy Proxy by HTTP/envoy.cluster.membership_unhealthy["{#CLUSTER_NAME}"]) > 0'
                  name: 'Envoy Proxy: There are unhealthy clusters'
                  opdata: 'Current number: {ITEM.LASTVALUE1}'
                  priority: AVERAGE
                  tags:
                    -
                      tag: scope
                      value: availability
            -
              uuid: b5c802ae97a0449cbbb7f43a2510fd56
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Connections, active'
              type: DEPENDENT
              key: 'envoy.cluster.upstream_cx_active["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              description: 'Current cluster total active connections.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_upstream_cx_active{envoy_cluster_name = "{#CLUSTER_NAME}"}'
                    - function
                    - sum
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
                -
                  tag: component
                  value: connections
            -
              uuid: c7106f0670764bc297920a5e62768c55
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Upstream bytes in, rate'
              type: DEPENDENT
              key: 'envoy.cluster.upstream_cx_rx_bytes_total.rate["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: Bps
              description: 'Total received connection bytes per second.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_upstream_cx_rx_bytes_total{envoy_cluster_name = "{#CLUSTER_NAME}"}'
                    - function
                    - sum
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
                -
                  tag: component
                  value: network
            -
              uuid: d180e76ccb3a456b8100c4669173c0f7
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Connections, total'
              type: DEPENDENT
              key: 'envoy.cluster.upstream_cx_total["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              description: 'Current cluster total connections.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_upstream_cx_total{envoy_cluster_name = "{#CLUSTER_NAME}"}'
                    - function
                    - sum
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
                -
                  tag: component
                  value: connections
            -
              uuid: d024405b571946939fa20d495ef6c7d8
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Upstream bytes out, rate'
              type: DEPENDENT
              key: 'envoy.cluster.upstream_cx_tx_bytes_total.rate["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: Bps
              description: 'Total sent connection bytes per second.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_upstream_cx_tx_bytes_total{envoy_cluster_name = "{#CLUSTER_NAME}"}'
                    - function
                    - sum
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
                -
                  tag: component
                  value: network
            -
              uuid: f6724ac1954e4c71a95a01a441d46e5d
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests 2xx, rate'
              type: DEPENDENT
              key: 'envoy.cluster.upstream_rq_2x.rate["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              description: 'Aggregate HTTP response codes per second.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_upstream_rq_xx{envoy_cluster_name = "{#CLUSTER_NAME}", envoy_response_code_class="2"}'
                    - function
                    - sum
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
                -
                  tag: component
                  value: requests
            -
              uuid: 248d268966ed4999916d77b340f82fa1
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests 3xx, rate'
              type: DEPENDENT
              key: 'envoy.cluster.upstream_rq_3x.rate["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              description: 'Aggregate HTTP response codes per second.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_upstream_rq_xx{envoy_cluster_name = "{#CLUSTER_NAME}", envoy_response_code_class="3"}'
                    - function
                    - sum
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
                -
                  tag: component
                  value: requests
            -
              uuid: 65e956c129e2436896f1a3d46a1f9090
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests 4xx, rate'
              type: DEPENDENT
              key: 'envoy.cluster.upstream_rq_4x.rate["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              description: 'Aggregate HTTP response codes per second.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_upstream_rq_xx{envoy_cluster_name = "{#CLUSTER_NAME}", envoy_response_code_class="4"}'
                    - function
                    - sum
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
                -
                  tag: component
                  value: requests
            -
              uuid: a85872e72792460e97d8fd322e0919a1
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests 5xx, rate'
              type: DEPENDENT
              key: 'envoy.cluster.upstream_rq_5x.rate["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              description: 'Aggregate HTTP response codes per second.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_upstream_rq_xx{envoy_cluster_name = "{#CLUSTER_NAME}", envoy_response_code_class="5"}'
                    - function
                    - sum
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
                -
                  tag: component
                  value: requests
            -
              uuid: a06b43daf8e2493eb61d27cea8baba79
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests active'
              type: DEPENDENT
              key: 'envoy.cluster.upstream_rq_active["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              description: 'Total active requests.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_upstream_rq_active{envoy_cluster_name = "{#CLUSTER_NAME}"}'
                    - function
                    - sum
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
                -
                  tag: component
                  value: requests
            -
              uuid: bd1c6766c9e047f1a40f6b1f22f00623
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests completed, rate'
              type: DEPENDENT
              key: 'envoy.cluster.upstream_rq_completed.rate["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              description: 'Total upstream requests completed per second.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_upstream_rq_completed{envoy_cluster_name = "{#CLUSTER_NAME}"}'
                    - function
                    - sum
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
                -
                  tag: component
                  value: requests
            -
              uuid: 267c3d01aa614dbdb0f0dcbe3ab2e11b
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests pending'
              type: DEPENDENT
              key: 'envoy.cluster.upstream_rq_pending_active["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              description: 'Total active requests pending a connection pool connection.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_upstream_rq_pending_active{envoy_cluster_name = "{#CLUSTER_NAME}"}'
                    - function
                    - sum
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
                -
                  tag: component
                  value: requests
            -
              uuid: 2489b20b43044020a3ace164f6049af6
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests timeout, rate'
              type: DEPENDENT
              key: 'envoy.cluster.upstream_rq_timeout.rate["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              description: 'Current cluster requests that timed out waiting for a response per second.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_upstream_rq_timeout{envoy_cluster_name = "{#CLUSTER_NAME}"}'
                    - function
                    - sum
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
                -
                  tag: component
                  value: requests
            -
              uuid: b807e34a608042419d69eae46aa4338c
              name: 'Envoy Proxy: Cluster ["{#CLUSTER_NAME}"]: Requests total, rate'
              type: DEPENDENT
              key: 'envoy.cluster.upstream_rq_total.rate["{#CLUSTER_NAME}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              description: 'Current cluster request total per second.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_cluster_upstream_rq_total{envoy_cluster_name = "{#CLUSTER_NAME}"}'
                    - function
                    - sum
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: cluster
                  value: '{#CLUSTER_NAME}'
                -
                  tag: component
                  value: cluster
                -
                  tag: component
                  value: requests
          graph_prototypes:
            -
              uuid: a1ecd91cb0a44c39923d4b806aae4039
              name: 'Envoy Proxy: [{#CLUSTER_NAME}] HTTP requests'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'Envoy Proxy by HTTP'
                    key: 'envoy.cluster.upstream_rq_2x.rate["{#CLUSTER_NAME}"]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'Envoy Proxy by HTTP'
                    key: 'envoy.cluster.upstream_rq_3x.rate["{#CLUSTER_NAME}"]'
                -
                  sortorder: '2'
                  color: F63100
                  item:
                    host: 'Envoy Proxy by HTTP'
                    key: 'envoy.cluster.upstream_rq_4x.rate["{#CLUSTER_NAME}"]'
                -
                  sortorder: '3'
                  color: A54F10
                  item:
                    host: 'Envoy Proxy by HTTP'
                    key: 'envoy.cluster.upstream_rq_5x.rate["{#CLUSTER_NAME}"]'
                -
                  sortorder: '4'
                  color: FC6EA3
                  item:
                    host: 'Envoy Proxy by HTTP'
                    key: 'envoy.cluster.upstream_rq_total.rate["{#CLUSTER_NAME}"]'
            -
              uuid: 46f4d9b835274a7dafdda64563f482a9
              name: 'Envoy Proxy: [{#CLUSTER_NAME}] Upstream traffic'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'Envoy Proxy by HTTP'
                    key: 'envoy.cluster.upstream_cx_rx_bytes_total.rate["{#CLUSTER_NAME}"]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'Envoy Proxy by HTTP'
                    key: 'envoy.cluster.upstream_cx_tx_bytes_total.rate["{#CLUSTER_NAME}"]'
          master_item:
            key: envoy.get_metrics
          preprocessing:
            -
              type: PROMETHEUS_TO_JSON
              parameters:
                - envoy_cluster_membership_total
            -
              type: JAVASCRIPT
              parameters:
                - |
                  var lookup = {},
                      result = [];
                  
                  JSON.parse(value).forEach(function (item) {
                          var envoy_cluster_name = item.labels.envoy_cluster_name;
                  
                          if (lookup[envoy_cluster_name]) {
                              return;
                          }
                          lookup[envoy_cluster_name] = 1;
                          result.push({
                              '{#CLUSTER_NAME}': envoy_cluster_name
                          });
                  });
                  
                  return JSON.stringify(result);
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 3h
        -
          uuid: ea40e02e3b4e40ea989612949a1a8bef
          name: 'HTTP metrics discovery'
          type: DEPENDENT
          key: envoy.lld.http
          delay: '0'
          item_prototypes:
            -
              uuid: f4106316b7a44555bd2fcb98ed291a23
              name: 'Envoy Proxy: HTTP ["{#CONN_MANAGER}"]: Connections, active'
              type: DEPENDENT
              key: 'envoy.http.downstream_cx_active["{#CONN_MANAGER}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              description: 'Total active connections.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_http_downstream_cx_active{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"}'
                    - function
                    - sum
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: component
                  value: http
                -
                  tag: connection-manager
                  value: '{#CONN_MANAGER}'
            -
              uuid: d5f88107012a4a41a86cb9a76bf8ebc5
              name: 'Envoy Proxy: HTTP ["{#CONN_MANAGER}"]: Bytes in, rate'
              type: DEPENDENT
              key: 'envoy.http.downstream_cx_rx_bytes_total.rate["{#CONN_MANAGER}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              description: 'Total bytes received per second.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_http_downstream_cx_rx_bytes_total{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"}'
                    - function
                    - sum
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: component
                  value: http
                -
                  tag: connection-manager
                  value: '{#CONN_MANAGER}'
            -
              uuid: cff73e6c597d4103bdf6445b0910a434
              name: 'Envoy Proxy: HTTP ["{#CONN_MANAGER}"]: Connections, rate'
              type: DEPENDENT
              key: 'envoy.http.downstream_cx_total["{#CONN_MANAGER}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: Rps
              description: 'Total connections per second.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_http_downstream_cx_total{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"}'
                    - function
                    - sum
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: component
                  value: http
                -
                  tag: connection-manager
                  value: '{#CONN_MANAGER}'
            -
              uuid: a0bc5e6a55af4fa29869f05c1c0943f6
              name: 'Envoy Proxy: HTTP ["{#CONN_MANAGER}"]: Bytes out, rate'
              type: DEPENDENT
              key: 'envoy.http.downstream_cx_tx_bytes_tota.rate["{#CONN_MANAGER}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              description: 'Total bytes sent per second.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_http_downstream_cx_tx_bytes_total{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"}'
                    - function
                    - sum
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: component
                  value: http
                -
                  tag: connection-manager
                  value: '{#CONN_MANAGER}'
            -
              uuid: 19ce2a7cc34c4b49ad0117c62241eabf
              name: 'Envoy Proxy: HTTP ["{#CONN_MANAGER}"]: Requests, active'
              type: DEPENDENT
              key: 'envoy.http.downstream_rq_active["{#CONN_MANAGER}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              description: 'Total active requests.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_http_downstream_rq_active{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"}'
                    - function
                    - sum
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: component
                  value: http
                -
                  tag: connection-manager
                  value: '{#CONN_MANAGER}'
            -
              uuid: df31ba8ca0db4b2daade17a9a54273cf
              name: 'Envoy Proxy: HTTP ["{#CONN_MANAGER}"]: Requests timeout, rate'
              type: DEPENDENT
              key: 'envoy.http.downstream_rq_timeout["{#CONN_MANAGER}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              description: 'Total requests closed due to a timeout on the request path per second.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_http_downstream_rq_timeout{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"}'
                    - function
                    - sum
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: component
                  value: http
                -
                  tag: connection-manager
                  value: '{#CONN_MANAGER}'
            -
              uuid: 87cc859a403348a2b7bcfa398b3150c8
              name: 'Envoy Proxy: HTTP ["{#CONN_MANAGER}"]: Requests, rate'
              type: DEPENDENT
              key: 'envoy.http.downstream_rq_total.rate["{#CONN_MANAGER}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: Rps
              description: 'Total active connections per second.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_http_downstream_rq_total{envoy_http_conn_manager_prefix = "{#CONN_MANAGER}"}'
                    - function
                    - sum
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: component
                  value: http
                -
                  tag: connection-manager
                  value: '{#CONN_MANAGER}'
          graph_prototypes:
            -
              uuid: 71b114ee64d34d74a32b18e2f7d25d8c
              name: 'Envoy Proxy: [{#CLUSTER_NAME}] Downstream traffic'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'Envoy Proxy by HTTP'
                    key: 'envoy.http.downstream_cx_rx_bytes_total.rate["{#CONN_MANAGER}"]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'Envoy Proxy by HTTP'
                    key: 'envoy.http.downstream_cx_tx_bytes_tota.rate["{#CONN_MANAGER}"]'
          master_item:
            key: envoy.get_metrics
          preprocessing:
            -
              type: PROMETHEUS_TO_JSON
              parameters:
                - envoy_http_downstream_rq_total
            -
              type: JAVASCRIPT
              parameters:
                - |
                  var lookup = {},
                      result = [];
                  
                  JSON.parse(value).forEach(function (item) {
                          var envoy_http_conn_manager_prefix = item.labels.envoy_http_conn_manager_prefix;
                  
                          if (lookup[envoy_http_conn_manager_prefix]) {
                              return;
                          }
                          lookup[envoy_http_conn_manager_prefix] = 1;
                          result.push({
                              '{#CONN_MANAGER}': envoy_http_conn_manager_prefix
                          });
                  });
                  
                  return JSON.stringify(result);
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 3h
        -
          uuid: 953541f62c8c461795c2ebed7f4f52cf
          name: 'Listeners metrics discovery'
          type: DEPENDENT
          key: envoy.lld.listeners
          delay: '0'
          item_prototypes:
            -
              uuid: 3ecae47c57984a6ab5ff854ce2e5415e
              name: 'Envoy Proxy: Listener ["{#LISTENER_ADDRESS}"]: Connections, active'
              type: DEPENDENT
              key: 'envoy.listener.downstream_cx_active["{#LISTENER_ADDRESS}"]'
              delay: '0'
              history: 7d
              description: 'Total active connections.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_listener_downstream_cx_active{envoy_listener_address = "{#LISTENER_ADDRESS}"}'
                    - function
                    - sum
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: component
                  value: listener
                -
                  tag: listener-address
                  value: '{#LISTENER_ADDRESS}'
            -
              uuid: 7cc50e3001ac4a8ca433529c52a56e83
              name: 'Envoy Proxy: Listener ["{#LISTENER_ADDRESS}"]: Connections, rate'
              type: DEPENDENT
              key: 'envoy.listener.downstream_cx_total.rate["{#LISTENER_ADDRESS}"]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              description: 'Total connections per second.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_listener_downstream_cx_total{envoy_listener_address = "{#LISTENER_ADDRESS}"}'
                    - function
                    - sum
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: component
                  value: listener
                -
                  tag: listener-address
                  value: '{#LISTENER_ADDRESS}'
            -
              uuid: 5c155a0d2fd14623ba51670e4083ecee
              name: 'Envoy Proxy: Listener ["{#LISTENER_ADDRESS}"]: Sockets, undergoing'
              type: DEPENDENT
              key: 'envoy.listener.downstream_pre_cx_active["{#LISTENER_ADDRESS}"]'
              delay: '0'
              history: 7d
              description: 'Sockets currently undergoing listener filter processing.'
              preprocessing:
                -
                  type: PROMETHEUS_PATTERN
                  parameters:
                    - 'envoy_listener_downstream_pre_cx_active{envoy_listener_address = "{#LISTENER_ADDRESS}"}'
                    - function
                    - sum
              master_item:
                key: envoy.get_metrics
              tags:
                -
                  tag: component
                  value: listener
                -
                  tag: listener-address
                  value: '{#LISTENER_ADDRESS}'
          master_item:
            key: envoy.get_metrics
          preprocessing:
            -
              type: PROMETHEUS_TO_JSON
              parameters:
                - envoy_listener_downstream_cx_active
            -
              type: JAVASCRIPT
              parameters:
                - |
                  var lookup = {},
                      result = [];
                  
                  JSON.parse(value).forEach(function (item) {
                          var envoy_listener_address = item.labels.envoy_listener_address;
                  
                          if (lookup[envoy_listener_address]) {
                              return;
                          }
                          lookup[envoy_listener_address] = 1;
                          result.push({
                              '{#LISTENER_ADDRESS}': envoy_listener_address
                          });
                  });
                  
                  return JSON.stringify(result);
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 3h
      tags:
        -
          tag: class
          value: software
        -
          tag: target
          value: envoy-proxy
      macros:
        -
          macro: '{$ENVOY.CERT.MIN}'
          value: '7'
          description: 'Minimum number of days before certificate expiration used for trigger expression.'
        -
          macro: '{$ENVOY.METRICS.PATH}'
          value: /stats/prometheus
          description: 'The path Zabbix will scrape metrics in prometheus format from.'
        -
          macro: '{$ENVOY.URL}'
          value: 'http://localhost:9901'
          description: 'Instance URL.'
      valuemaps:
        -
          uuid: 2152e7a114f3489eb6ea80b948c0db5c
          name: 'Envoy listener manager'
          mappings:
            -
              value: '0'
              newvalue: 'Not started'
            -
              value: '1'
              newvalue: Started
        -
          uuid: c05c038099d74d11b6fef057518a1fc9
          name: 'Envoy server live'
          mappings:
            -
              value: '0'
              newvalue: 'Not Live'
            -
              value: '1'
              newvalue: Live
        -
          uuid: f467d440b03e4dab8cc4b15f87185eb5
          name: 'Envoy server state'
          mappings:
            -
              value: '0'
              newvalue: Live
            -
              value: '1'
              newvalue: Draining
            -
              value: '2'
              newvalue: 'Pre initializing'
            -
              value: '3'
              newvalue: Initializing
  graphs:
    -
      uuid: 9cf06c8169944ee2974499a4f2764903
      name: 'Envoy Proxy: Clusters'
      graph_items:
        -
          color: 1A7C11
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.cluster_manager.active_clusters
        -
          sortorder: '1'
          color: 2774A4
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.cluster_manager.warming_clusters
    -
      uuid: 6453eec1ce9141b0a505d278f842ea1c
      name: 'Envoy Proxy: Clusters operations'
      graph_items:
        -
          color: 1A7C11
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.cluster_manager.cluster_removed.rate
        -
          sortorder: '1'
          color: 2774A4
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.cluster_manager.cluster_updated.rate
        -
          sortorder: '2'
          color: F63100
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.cluster_manager.cluster_modified.rate
        -
          sortorder: '3'
          color: A54F10
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.cluster_manager.cluster_added.rate
    -
      uuid: 0ac65256c79e4eb992afae8fdb7035c9
      name: 'Envoy Proxy: Connections'
      graph_items:
        -
          color: 1A7C11
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.server.parent_connections
        -
          sortorder: '1'
          color: 2774A4
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.server.memory_heap_size
    -
      uuid: d06a958289aa4c7a84851f5c9333e746
      name: 'Envoy Proxy: Filesystem operations'
      graph_items:
        -
          color: 1A7C11
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.filesystem.reopen_failed.rate
        -
          sortorder: '1'
          color: 2774A4
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.filesystem.flushed_by_timer.rate
        -
          sortorder: '2'
          color: F63100
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.filesystem.write_completed.rate
        -
          sortorder: '3'
          color: A54F10
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.filesystem.write_failed.rate
    -
      uuid: d3d8733f333942849eadabb86049b5bf
      name: 'Envoy Proxy: Listener manager'
      graph_items:
        -
          color: 1A7C11
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.listener_manager.total_listeners_warming
        -
          sortorder: '1'
          color: 2774A4
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.listener_manager.total_listeners_draining
        -
          sortorder: '2'
          color: F63100
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.listener_manager.total_listeners_active
    -
      uuid: 90ef97d5dfd44349bc08c89acc0b7ec3
      name: 'Envoy Proxy: Listeners operations'
      graph_items:
        -
          color: 1A7C11
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.listener_manager.listener_create_failure.rate
        -
          sortorder: '1'
          color: 2774A4
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.listener_manager.listener_create_success.rate
        -
          sortorder: '2'
          color: F63100
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.listener_manager.listener_added.rate
        -
          sortorder: '3'
          color: A54F10
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.listener_manager.listener_stopped.rate
    -
      uuid: ca3646c18e79468d884af478afab7b0e
      name: 'Envoy Proxy: Memory usage'
      graph_items:
        -
          color: 1A7C11
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.server.memory_physical_size
        -
          sortorder: '1'
          color: 2774A4
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.server.memory_heap_size
        -
          sortorder: '2'
          color: F63100
          item:
            host: 'Envoy Proxy by HTTP'
            key: envoy.server.memory_allocated