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

template_app_ceph_agent2.yaml « ceph_agent2 « app « templates - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26efd948cc308d18fb79f666d3c9aedd4d5f9b74 (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
zabbix_export:
  version: '6.2'
  date: '2022-06-07T19:33:04Z'
  template_groups:
    -
      uuid: a571c0d144b14fd4a87a9d9b2aa9fcd6
      name: Templates/Applications
  templates:
    -
      uuid: 09fb25d089f7467f860895f6e71d3fa2
      template: 'Ceph by Zabbix agent 2'
      name: 'Ceph by Zabbix agent 2'
      description: |
        You can discuss this template or leave feedback on our forum https://www.zabbix.com/forum/zabbix-suggestions-and-feedback/410059-discussion-thread-for-official-zabbix-template-ceph
        
        Template tooling version used: 0.41
      groups:
        -
          name: Templates/Applications
      items:
        -
          uuid: af3e6faf835f41ef93cbbc44aa57f97e
          name: 'Ceph: Get df'
          key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          history: '0'
          trends: '0'
          value_type: TEXT
          tags:
            -
              tag: component
              value: disk
            -
              tag: component
              value: raw
        -
          uuid: 45c9df734d424e6a8d3fea99c4a66246
          name: 'Ceph: Minimum Mon release version'
          type: DEPENDENT
          key: ceph.min_mon_release_name
          delay: '0'
          history: 7d
          trends: '0'
          value_type: CHAR
          description: min_mon_release_name
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.min_mon_release_name
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1h
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: monitors
          triggers:
            -
              uuid: 716f166b3943443aba70a4faed882ffb
              expression: 'last(/Ceph by Zabbix agent 2/ceph.min_mon_release_name,#1)<>last(/Ceph by Zabbix agent 2/ceph.min_mon_release_name,#2) and length(last(/Ceph by Zabbix agent 2/ceph.min_mon_release_name))>0'
              name: 'Ceph: Minimum monitor release version has changed'
              event_name: 'Ceph: Minimum monitor release version has changed (new version: {ITEM.VALUE})'
              priority: INFO
              description: 'Ceph version has changed. Ack to close.'
              manual_close: 'YES'
              tags:
                -
                  tag: scope
                  value: notice
        -
          uuid: 5d5276504d6c41eebe8e18846edcff45
          name: 'Ceph: Number of Monitors'
          type: DEPENDENT
          key: ceph.num_mon
          delay: '0'
          history: 7d
          description: 'Number of Monitors configured in Ceph cluster'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.num_mon
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 30m
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: monitors
        -
          uuid: 09d7a872f35349c6ba7d4a678bf71652
          name: 'Ceph: Number of OSDs'
          type: DEPENDENT
          key: ceph.num_osd
          delay: '0'
          history: 7d
          description: 'Number of known storage daemons in Ceph cluster'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.num_osd
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 10m
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: osd
        -
          uuid: 795939e16e70475381e917b213bf6f70
          name: 'Ceph: Number of OSDs in state: IN'
          type: DEPENDENT
          key: ceph.num_osd_in
          delay: '0'
          history: 7d
          description: 'Total number of participating storage daemons in Ceph cluster'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.num_osd_in
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 10m
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: osd
        -
          uuid: d2d5caaad2914fb1ba07343956edb5b8
          name: 'Ceph: Number of OSDs in state: UP'
          type: DEPENDENT
          key: ceph.num_osd_up
          delay: '0'
          history: 7d
          description: 'Total number of online storage daemons in Ceph cluster'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.num_osd_up
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 10m
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: osd
        -
          uuid: 46ea920b0951408daa5d678f298b1097
          name: 'Ceph: Number of Placement Groups'
          type: DEPENDENT
          key: ceph.num_pg
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in Ceph cluster'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.num_pg
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 10m
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: placement-groups
        -
          uuid: 97fbecc8ee824e658dd95d8115fec5e9
          name: 'Ceph: Number of Placement Groups in Temporary state'
          type: DEPENDENT
          key: ceph.num_pg_temp
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in pg_temp state'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.num_pg_temp
          master_item:
            key: 'ceph.osd.dump["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: placement-groups
        -
          uuid: b0e36ff76db049ab870fa26c29e5e69c
          name: 'Ceph: Number of Pools'
          type: DEPENDENT
          key: ceph.num_pools
          delay: '0'
          history: 7d
          description: 'Total number of pools in Ceph cluster'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.num_pools
          master_item:
            key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: pools
        -
          uuid: e7eb1f67d81c4e2ba7c57cfbc81d1a00
          name: 'Ceph: Get OSD dump'
          key: 'ceph.osd.dump["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          history: '0'
          trends: '0'
          value_type: TEXT
          tags:
            -
              tag: component
              value: osd
            -
              tag: component
              value: raw
        -
          uuid: 35b63ca6519e4137bb7655e37ed08e51
          name: 'Ceph: Get OSD stats'
          key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          history: '0'
          trends: '0'
          value_type: TEXT
          tags:
            -
              tag: component
              value: osd
            -
              tag: component
              value: raw
        -
          uuid: 0d6cffa1f06748738431524667ea8db0
          name: 'Ceph: Ceph backfill full ratio'
          type: DEPENDENT
          key: ceph.osd_backfillfull_ratio
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Backfill full ratio setting of Ceph cluster as configured on OSDMap'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.osd_backfillfull_ratio
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 10m
          master_item:
            key: 'ceph.osd.dump["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
        -
          uuid: 52c5efe132b8404f8fc4ac995c3d5c2c
          name: 'Ceph: Ceph OSD avg fill'
          type: DEPENDENT
          key: ceph.osd_fill.avg
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: '%'
          description: 'Average fill of OSDs'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.osd_fill.avg
          master_item:
            key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: osd
        -
          uuid: 453cebeed3214153ba4e3a5b224c063d
          name: 'Ceph: Ceph OSD max fill'
          type: DEPENDENT
          key: ceph.osd_fill.max
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: '%'
          description: 'Percentage fill of maximum filled OSD'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.osd_fill.max
          master_item:
            key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: osd
        -
          uuid: f6efbd37e8104272be131d686a700808
          name: 'Ceph: Ceph OSD min fill'
          type: DEPENDENT
          key: ceph.osd_fill.min
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: '%'
          description: 'Percentage fill of minimum filled OSD'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.osd_fill.min
          master_item:
            key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: osd
        -
          uuid: 532891a1d8934211a016524b136cfb1e
          name: 'Ceph: Ceph full ratio'
          type: DEPENDENT
          key: ceph.osd_full_ratio
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Full ratio setting of Ceph cluster as configured on OSDMap'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.osd_full_ratio
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 10m
          master_item:
            key: 'ceph.osd.dump["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
        -
          uuid: 074c0881384446ea90e99d355afe4f4f
          name: 'Ceph: Ceph OSD Apply latency Avg'
          type: DEPENDENT
          key: ceph.osd_latency_apply.avg
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: ms
          description: 'Average apply latency of OSDs'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.osd_latency_apply.avg
          master_item:
            key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: osd
        -
          uuid: ef0a76f0c16147d1a280e00e66d3806f
          name: 'Ceph: Ceph OSD Apply latency Max'
          type: DEPENDENT
          key: ceph.osd_latency_apply.max
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: ms
          description: 'Maximum apply latency of OSDs'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.osd_latency_apply.max
          master_item:
            key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: osd
        -
          uuid: d45ad876b0a04345be347af54211aa69
          name: 'Ceph: Ceph OSD Apply latency Min'
          type: DEPENDENT
          key: ceph.osd_latency_apply.min
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: ms
          description: 'Minimum apply latency of OSDs'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.osd_latency_apply.min
          master_item:
            key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: osd
        -
          uuid: 52e1b146c36e4c2e82acf36f1c7d12eb
          name: 'Ceph: Ceph OSD Commit latency Avg'
          type: DEPENDENT
          key: ceph.osd_latency_commit.avg
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: ms
          description: 'Average commit latency of OSDs'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.osd_latency_commit.avg
          master_item:
            key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: osd
        -
          uuid: 3027a1dbdd8e4f9bbef8927b92eb8e77
          name: 'Ceph: Ceph OSD Commit latency Max'
          type: DEPENDENT
          key: ceph.osd_latency_commit.max
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: ms
          description: 'Maximum commit latency of OSDs'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.osd_latency_commit.max
          master_item:
            key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: osd
        -
          uuid: b9900b84c22843dab4ad335b9642e040
          name: 'Ceph: Ceph OSD Commit latency Min'
          type: DEPENDENT
          key: ceph.osd_latency_commit.min
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: ms
          description: 'Minimum commit latency of OSDs'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.osd_latency_commit.min
          master_item:
            key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: osd
        -
          uuid: 477d94bd838d4273a556537de36bb1f6
          name: 'Ceph: Ceph nearfull ratio'
          type: DEPENDENT
          key: ceph.osd_nearfull_ratio
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Near full ratio setting of Ceph cluster as configured on OSDMap'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.osd_nearfull_ratio
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 10m
          master_item:
            key: 'ceph.osd.dump["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
        -
          uuid: 27ea5688271347bca429d91ace62d4e2
          name: 'Ceph: Ceph OSD avg PGs'
          type: DEPENDENT
          key: ceph.osd_pgs.avg
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Average amount of PGs on OSDs'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.osd_pgs.avg
          master_item:
            key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: osd
            -
              tag: component
              value: placement-groups
        -
          uuid: 4174d7d3190e47ccb55b1e50da4cedc5
          name: 'Ceph: Ceph OSD max PGs'
          type: DEPENDENT
          key: ceph.osd_pgs.max
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Maximum amount of PGs on OSDs'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.osd_pgs.max
          master_item:
            key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: osd
            -
              tag: component
              value: placement-groups
        -
          uuid: 47f56243cd1c430fae217d1a0cbc4a99
          name: 'Ceph: Ceph OSD min PGs'
          type: DEPENDENT
          key: ceph.osd_pgs.min
          delay: '0'
          history: 7d
          value_type: FLOAT
          description: 'Minimum amount of PGs on OSDs'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.osd_pgs.min
          master_item:
            key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: osd
            -
              tag: component
              value: placement-groups
        -
          uuid: 4023ca309692470eab2651f69d49419a
          name: 'Ceph: Overall cluster status'
          type: DEPENDENT
          key: ceph.overall_status
          delay: '0'
          history: 7d
          description: 'Overall Ceph cluster status, eg 0 - HEALTH_OK, 1 - HEALTH_WARN or 2 - HEALTH_ERR'
          valuemap:
            name: 'Ceph cluster status'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.overall_status
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 10m
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: health
          triggers:
            -
              uuid: 6ab06350bd8b426681f1b8bddde76a13
              expression: 'last(/Ceph by Zabbix agent 2/ceph.overall_status)=2'
              name: 'Ceph: Cluster in ERROR state'
              priority: AVERAGE
              manual_close: 'YES'
              tags:
                -
                  tag: scope
                  value: availability
            -
              uuid: 8b6ba1a7ae014e80a5287ffd13b5d8aa
              expression: 'last(/Ceph by Zabbix agent 2/ceph.overall_status)=1'
              recovery_mode: RECOVERY_EXPRESSION
              recovery_expression: 'last(/Ceph by Zabbix agent 2/ceph.overall_status)=0'
              name: 'Ceph: Cluster in WARNING state'
              priority: WARNING
              manual_close: 'YES'
              dependencies:
                -
                  name: 'Ceph: Cluster in ERROR state'
                  expression: 'last(/Ceph by Zabbix agent 2/ceph.overall_status)=2'
              tags:
                -
                  tag: scope
                  value: availability
        -
          uuid: 9b073153d7474b0abfccb1844d0e6981
          name: 'Ceph: Number of Placement Groups in Active state'
          type: DEPENDENT
          key: ceph.pg_states.active
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in active state'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.pg_states.active
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: placement-groups
        -
          uuid: 1471a13aaadc48c7a265835abcb93a03
          name: 'Ceph: Number of Placement Groups in Backfilling state'
          type: DEPENDENT
          key: ceph.pg_states.backfilling
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in backfilling state'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.pg_states.backfilling
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: placement-groups
        -
          uuid: 3b44c79e03d4402ba442331593dbdfa3
          name: 'Ceph: Number of Placement Groups in backfill_toofull state'
          type: DEPENDENT
          key: ceph.pg_states.backfill_toofull
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in backfill_toofull state'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.pg_states.backfill_toofull
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: placement-groups
        -
          uuid: ada3f638ee2e48eeb8889526898aed2f
          name: 'Ceph: Number of Placement Groups in backfill_wait state'
          type: DEPENDENT
          key: ceph.pg_states.backfill_wait
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in backfill_wait state'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.pg_states.backfill_wait
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: placement-groups
        -
          uuid: b1af2b88fe424723b97c9aa4eee12d83
          name: 'Ceph: Number of Placement Groups in Clean state'
          type: DEPENDENT
          key: ceph.pg_states.clean
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in clean state'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.pg_states.clean
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: placement-groups
        -
          uuid: f8acf8f66fbc401799d3515eb3e2ea43
          name: 'Ceph: Number of Placement Groups in degraded state'
          type: DEPENDENT
          key: ceph.pg_states.degraded
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in degraded state'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.pg_states.degraded
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: placement-groups
        -
          uuid: 79e056b9e3af40eabab0f927fb326491
          name: 'Ceph: Number of Placement Groups in inconsistent state'
          type: DEPENDENT
          key: ceph.pg_states.inconsistent
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in inconsistent state'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.pg_states.inconsistent
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: placement-groups
        -
          uuid: 9ddef3d2e7df43eda7d2835ceac19d32
          name: 'Ceph: Number of Placement Groups in Peering state'
          type: DEPENDENT
          key: ceph.pg_states.peering
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in peering state'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.pg_states.peering
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: placement-groups
        -
          uuid: 573461fc94e84f96b8ae6f6d89916424
          name: 'Ceph: Number of Placement Groups in recovering state'
          type: DEPENDENT
          key: ceph.pg_states.recovering
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in recovering state'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.pg_states.recovering
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: placement-groups
        -
          uuid: c150a9414fee40acaa65d532fd110c4e
          name: 'Ceph: Number of Placement Groups in recovery_wait state'
          type: DEPENDENT
          key: ceph.pg_states.recovery_wait
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in recovery_wait state'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.pg_states.recovery_wait
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: placement-groups
        -
          uuid: bac3270faf854267a466eaa6a4acad91
          name: 'Ceph: Number of Placement Groups in remapped state'
          type: DEPENDENT
          key: ceph.pg_states.remapped
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in remapped state'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.pg_states.remapped
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: placement-groups
        -
          uuid: 8a0117845436492d951e96b46eb67e1c
          name: 'Ceph: Number of Placement Groups in Scrubbing state'
          type: DEPENDENT
          key: ceph.pg_states.scrubbing
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in scrubbing state'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.pg_states.scrubbing
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: placement-groups
        -
          uuid: 4998e4542ed746f08f82ecf53b553c36
          name: 'Ceph: Number of Placement Groups in Undersized state'
          type: DEPENDENT
          key: ceph.pg_states.undersized
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in undersized state'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.pg_states.undersized
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: placement-groups
        -
          uuid: c922613c5ffb4f689c01f13143633ec3
          name: 'Ceph: Number of Placement Groups in Unknown state'
          type: DEPENDENT
          key: ceph.pg_states.unknown
          delay: '0'
          history: 7d
          description: 'Total number of Placement Groups in unknown state'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.pg_states.unknown
          master_item:
            key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: placement-groups
        -
          uuid: 911e8a654ca44e7ca56b8010ac7381c8
          name: 'Ceph: Ping'
          key: 'ceph.ping["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          history: 7d
          valuemap:
            name: 'Service state'
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 30m
          tags:
            -
              tag: component
              value: application
            -
              tag: component
              value: health
          triggers:
            -
              uuid: 9ffc9a5c3d1c47d288c665c8be7d2fbb
              expression: 'last(/Ceph by Zabbix agent 2/ceph.ping["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"])=0'
              name: 'Ceph: Can not connect to cluster'
              priority: AVERAGE
              description: 'Connection to Ceph RESTful module is broken (if there is any error presented including AUTH and configuration issues).'
              tags:
                -
                  tag: scope
                  value: availability
        -
          uuid: 89d7df2ebfbc4aa88b4ff4de44dc4b8b
          name: 'Ceph: Ceph Read bandwidth'
          type: DEPENDENT
          key: ceph.rd_bytes.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: Bps
          description: 'Global read Bytes per second'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.rd_bytes
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          master_item:
            key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: disk
        -
          uuid: 8a35a37de63746498291993d4f3fc1cc
          name: 'Ceph: Ceph Read operations per sec'
          type: DEPENDENT
          key: ceph.rd_ops.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: ops
          description: 'Global read operations per second'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.rd_ops
          master_item:
            key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: disk
        -
          uuid: 8b43d105f9d64a3a94196f3f3bc7eac3
          name: 'Ceph: Get overall cluster status'
          key: 'ceph.status["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          history: '0'
          trends: '0'
          value_type: TEXT
          tags:
            -
              tag: component
              value: raw
        -
          uuid: 5e400c932acf4ad498e17daca0ad4943
          name: 'Ceph: Total bytes available'
          type: DEPENDENT
          key: ceph.total_avail_bytes
          delay: '0'
          history: 7d
          units: B
          description: 'Total bytes available in Ceph cluster'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.total_avail_bytes
          master_item:
            key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: disk
        -
          uuid: c4b1a31efb5f47518cc5dd6082f3a42b
          name: 'Ceph: Total bytes'
          type: DEPENDENT
          key: ceph.total_bytes
          delay: '0'
          history: 7d
          units: B
          description: 'Total (RAW) capacity of Ceph cluster in bytes'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.total_bytes
          master_item:
            key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: disk
        -
          uuid: d3910275462b43dba1fa8022a398ed1c
          name: 'Ceph: Total number of objects'
          type: DEPENDENT
          key: ceph.total_objects
          delay: '0'
          history: 7d
          description: 'Total number of objects in Ceph cluster'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.total_objects
          master_item:
            key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
        -
          uuid: 6ad8e289eef349ab8ebfd4cc92a35c18
          name: 'Ceph: Total bytes used'
          type: DEPENDENT
          key: ceph.total_used_bytes
          delay: '0'
          history: 7d
          units: B
          description: 'Total bytes used in Ceph cluster'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.total_used_bytes
          master_item:
            key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: disk
        -
          uuid: 51e100668e5344d29afd50dc9b9eabc9
          name: 'Ceph: Ceph Write bandwidth'
          type: DEPENDENT
          key: ceph.wr_bytes.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: Bps
          description: 'Global write Bytes per second'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.wr_bytes
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          master_item:
            key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: disk
        -
          uuid: 0a7203defa7147f7b975b404e6706b60
          name: 'Ceph: Ceph Write operations per sec'
          type: DEPENDENT
          key: ceph.wr_ops.rate
          delay: '0'
          history: 7d
          value_type: FLOAT
          units: ops
          description: 'Global write operations per second'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - $.wr_ops
            -
              type: CHANGE_PER_SECOND
              parameters:
                - ''
          master_item:
            key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          tags:
            -
              tag: component
              value: cluster
            -
              tag: component
              value: disk
      discovery_rules:
        -
          uuid: 374557a43a824d938e9a8e656151e0c9
          name: OSD
          key: 'ceph.osd.discovery["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          delay: 1h
          item_prototypes:
            -
              uuid: 4f7a72a5c4c14b9da63ddbae9e2ebf5f
              name: 'Ceph: [osd.{#OSDNAME}] OSD fill'
              type: DEPENDENT
              key: 'ceph.osd[{#OSDNAME},fill]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: '%'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.osds.{#OSDNAME}.osd_fill'
                  error_handler: DISCARD_VALUE
              master_item:
                key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
              tags:
                -
                  tag: class
                  value: '{#CLASS}'
                -
                  tag: component
                  value: osd
                -
                  tag: host
                  value: '{#HOST}'
                -
                  tag: osd
                  value: '{#OSDNAME}'
            -
              uuid: fc2518ca8b9341d8befc6f9b1cbd4b79
              name: 'Ceph: [osd.{#OSDNAME}] OSD in'
              type: DEPENDENT
              key: 'ceph.osd[{#OSDNAME},in]'
              delay: '0'
              history: 7d
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.osds.{#OSDNAME}.in'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 10m
              master_item:
                key: 'ceph.osd.dump["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
              tags:
                -
                  tag: class
                  value: '{#CLASS}'
                -
                  tag: component
                  value: osd
                -
                  tag: host
                  value: '{#HOST}'
                -
                  tag: osd
                  value: '{#OSDNAME}'
            -
              uuid: 2eb6a0d999d14906a4737ed32834ccc7
              name: 'Ceph: [osd.{#OSDNAME}] OSD latency apply'
              type: DEPENDENT
              key: 'ceph.osd[{#OSDNAME},latency_apply]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: ms
              description: 'Time taken to flush an update to disks.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.osds.{#OSDNAME}.osd_latency_apply'
                  error_handler: DISCARD_VALUE
              master_item:
                key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
              tags:
                -
                  tag: class
                  value: '{#CLASS}'
                -
                  tag: component
                  value: osd
                -
                  tag: host
                  value: '{#HOST}'
                -
                  tag: osd
                  value: '{#OSDNAME}'
            -
              uuid: 14f392b369504f10b7e068522ac4a086
              name: 'Ceph: [osd.{#OSDNAME}] OSD latency commit'
              type: DEPENDENT
              key: 'ceph.osd[{#OSDNAME},latency_commit]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: ms
              description: 'Time taken to commit an operation to the journal.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.osds.{#OSDNAME}.osd_latency_commit'
                  error_handler: DISCARD_VALUE
              master_item:
                key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
              tags:
                -
                  tag: class
                  value: '{#CLASS}'
                -
                  tag: component
                  value: osd
                -
                  tag: host
                  value: '{#HOST}'
                -
                  tag: osd
                  value: '{#OSDNAME}'
            -
              uuid: 63234342c0bd49e6b1f8737bf595851f
              name: 'Ceph: [osd.{#OSDNAME}] OSD PGs'
              type: DEPENDENT
              key: 'ceph.osd[{#OSDNAME},num_pgs]'
              delay: '0'
              history: 7d
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.osds.{#OSDNAME}.num_pgs'
                  error_handler: DISCARD_VALUE
              master_item:
                key: 'ceph.osd.stats["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
              tags:
                -
                  tag: class
                  value: '{#CLASS}'
                -
                  tag: component
                  value: osd
                -
                  tag: host
                  value: '{#HOST}'
                -
                  tag: osd
                  value: '{#OSDNAME}'
            -
              uuid: 12c20b2fbf10466bba7e1097c014e968
              name: 'Ceph: [osd.{#OSDNAME}] OSD up'
              type: DEPENDENT
              key: 'ceph.osd[{#OSDNAME},up]'
              delay: '0'
              history: 7d
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.osds.{#OSDNAME}.up'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 10m
              master_item:
                key: 'ceph.osd.dump["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
              tags:
                -
                  tag: class
                  value: '{#CLASS}'
                -
                  tag: component
                  value: osd
                -
                  tag: host
                  value: '{#HOST}'
                -
                  tag: osd
                  value: '{#OSDNAME}'
              trigger_prototypes:
                -
                  uuid: 21535bb935b44b3aa073542db3cc7827
                  expression: 'last(/Ceph by Zabbix agent 2/ceph.osd[{#OSDNAME},up]) = 0'
                  name: 'Ceph: OSD osd.{#OSDNAME} is down'
                  priority: AVERAGE
                  description: |
                    OSD osd.{#OSDNAME} is marked "down" in the osdmap.
                    The OSD daemon may have been stopped, or peer OSDs may be unable to reach the OSD over the network.
                  tags:
                    -
                      tag: scope
                      value: availability
          trigger_prototypes:
            -
              uuid: cd04e8d542a04bdf89abad7ee4719e75
              expression: 'min(/Ceph by Zabbix agent 2/ceph.osd[{#OSDNAME},fill],15m) > last(/Ceph by Zabbix agent 2/ceph.osd_nearfull_ratio)*100'
              name: 'Ceph: Ceph OSD osd.{#OSDNAME} is near full'
              priority: WARNING
              dependencies:
                -
                  name: 'Ceph: OSD osd.{#OSDNAME} is full'
                  expression: 'min(/Ceph by Zabbix agent 2/ceph.osd[{#OSDNAME},fill],15m) > last(/Ceph by Zabbix agent 2/ceph.osd_full_ratio)*100'
              tags:
                -
                  tag: scope
                  value: capacity
            -
              uuid: 5d7a028166584c29b959914ce904a713
              expression: 'min(/Ceph by Zabbix agent 2/ceph.osd[{#OSDNAME},fill],15m) > last(/Ceph by Zabbix agent 2/ceph.osd_full_ratio)*100'
              name: 'Ceph: OSD osd.{#OSDNAME} is full'
              priority: AVERAGE
              tags:
                -
                  tag: scope
                  value: capacity
          graph_prototypes:
            -
              uuid: c88d53bfa7b8456aa70b4d7a2cb63ef5
              name: 'Ceph: [osd.{#OSDNAME}] OSD latency'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'Ceph by Zabbix agent 2'
                    key: 'ceph.osd[{#OSDNAME},latency_apply]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'Ceph by Zabbix agent 2'
                    key: 'ceph.osd[{#OSDNAME},latency_commit]'
        -
          uuid: fb6b4d27f46e4160ad978244aa845d0e
          name: Pool
          key: 'ceph.pool.discovery["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
          delay: 1h
          item_prototypes:
            -
              uuid: 1090dc09ce79458e9471863fcb973460
              name: 'Ceph: [{#POOLNAME}] Pool Used'
              type: DEPENDENT
              key: 'ceph.pool["{#POOLNAME}",bytes_used]'
              delay: '0'
              history: 7d
              units: B
              description: 'Total bytes used in pool.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.pools["{#POOLNAME}"].bytes_used'
              master_item:
                key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
              tags:
                -
                  tag: component
                  value: pools
                -
                  tag: crushrule
                  value: '{#CRUSHRULE}'
                -
                  tag: pool
                  value: '{#POOLNAME}'
            -
              uuid: 4e49ce8a11084dd287f89b076cc70535
              name: 'Ceph: [{#POOLNAME}] Max available'
              type: DEPENDENT
              key: 'ceph.pool["{#POOLNAME}",max_avail]'
              delay: '0'
              history: 7d
              units: B
              description: 'The maximum available space in the given pool.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.pools["{#POOLNAME}"].max_avail'
              master_item:
                key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
              tags:
                -
                  tag: component
                  value: pools
                -
                  tag: crushrule
                  value: '{#CRUSHRULE}'
                -
                  tag: pool
                  value: '{#POOLNAME}'
            -
              uuid: 5c7bd85f9d944215acaced87b0eb216f
              name: 'Ceph: [{#POOLNAME}] Pool objects'
              type: DEPENDENT
              key: 'ceph.pool["{#POOLNAME}",objects]'
              delay: '0'
              history: 7d
              description: 'Number of objects in the pool.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.pools["{#POOLNAME}"].objects'
              master_item:
                key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
              tags:
                -
                  tag: component
                  value: pools
                -
                  tag: crushrule
                  value: '{#CRUSHRULE}'
                -
                  tag: pool
                  value: '{#POOLNAME}'
            -
              uuid: eda166ae6c4c46cf8c01c2b928f07ec5
              name: 'Ceph: [{#POOLNAME}] Pool Percent Used'
              type: DEPENDENT
              key: 'ceph.pool["{#POOLNAME}",percent_used]'
              delay: '0'
              history: 7d
              units: '%'
              description: 'Percentage of storage used per pool'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.pools["{#POOLNAME}"].percent_used'
              master_item:
                key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
              tags:
                -
                  tag: component
                  value: pools
                -
                  tag: crushrule
                  value: '{#CRUSHRULE}'
                -
                  tag: pool
                  value: '{#POOLNAME}'
            -
              uuid: 5311f1a539284c5483458e1820496be3
              name: 'Ceph: [{#POOLNAME}] Pool Read bandwidth'
              type: DEPENDENT
              key: 'ceph.pool["{#POOLNAME}",rd_bytes.rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: Bps
              description: 'Per-pool read Bytes/second'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.pools["{#POOLNAME}"].rd_bytes'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
              tags:
                -
                  tag: component
                  value: pools
                -
                  tag: crushrule
                  value: '{#CRUSHRULE}'
                -
                  tag: pool
                  value: '{#POOLNAME}'
            -
              uuid: 76871b86d66d4307a83e813a8d9fc1b0
              name: 'Ceph: [{#POOLNAME}] Pool Read operations'
              type: DEPENDENT
              key: 'ceph.pool["{#POOLNAME}",rd_ops.rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: ops
              description: 'Per-pool read operations/second'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.pools["{#POOLNAME}"].rd_ops'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
              tags:
                -
                  tag: component
                  value: pools
                -
                  tag: crushrule
                  value: '{#CRUSHRULE}'
                -
                  tag: pool
                  value: '{#POOLNAME}'
            -
              uuid: 4c053bbaaf6946bcaf5288cc154d6fdd
              name: 'Ceph: [{#POOLNAME}] Pool RAW Used'
              type: DEPENDENT
              key: 'ceph.pool["{#POOLNAME}",stored_raw]'
              delay: '0'
              history: 7d
              units: B
              description: 'Bytes used in pool including copies made.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.pools["{#POOLNAME}"].stored_raw'
              master_item:
                key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
              tags:
                -
                  tag: component
                  value: pools
                -
                  tag: crushrule
                  value: '{#CRUSHRULE}'
                -
                  tag: pool
                  value: '{#POOLNAME}'
            -
              uuid: 955353da182243e29d326b3b2807286a
              name: 'Ceph: [{#POOLNAME}] Pool Write bandwidth'
              type: DEPENDENT
              key: 'ceph.pool["{#POOLNAME}",wr_bytes.rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: Bps
              description: 'Per-pool write Bytes/second'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.pools["{#POOLNAME}"].wr_bytes'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
              tags:
                -
                  tag: component
                  value: pools
                -
                  tag: crushrule
                  value: '{#CRUSHRULE}'
                -
                  tag: pool
                  value: '{#POOLNAME}'
            -
              uuid: acb3081d772444dab060a055fb3f4304
              name: 'Ceph: [{#POOLNAME}] Pool Write operations'
              type: DEPENDENT
              key: 'ceph.pool["{#POOLNAME}",wr_ops.rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: ops
              description: 'Per-pool write operations/second'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.pools["{#POOLNAME}"].wr_ops'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: 'ceph.df.details["{$CEPH.CONNSTRING}","{$CEPH.USER}","{$CEPH.API.KEY}"]'
              tags:
                -
                  tag: component
                  value: pools
                -
                  tag: crushrule
                  value: '{#CRUSHRULE}'
                -
                  tag: pool
                  value: '{#POOLNAME}'
          graph_prototypes:
            -
              uuid: 1a469f2c99214b1ba7fe3a7520e43439
              name: 'Ceph: [{#POOLNAME}] Pool bandwidth'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'Ceph by Zabbix agent 2'
                    key: 'ceph.pool["{#POOLNAME}",rd_bytes.rate]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'Ceph by Zabbix agent 2'
                    key: 'ceph.pool["{#POOLNAME}",wr_bytes.rate]'
            -
              uuid: 7870932ea335481db1c23224dfb33f60
              name: 'Ceph: [{#POOLNAME}] Pool I/O'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'Ceph by Zabbix agent 2'
                    key: 'ceph.pool["{#POOLNAME}",rd_ops.rate]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'Ceph by Zabbix agent 2'
                    key: 'ceph.pool["{#POOLNAME}",wr_ops.rate]'
            -
              uuid: 3da48042fdaa4c01825c3eea7ab5af6b
              name: 'Ceph: [{#POOLNAME}] Pool Usage'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'Ceph by Zabbix agent 2'
                    key: 'ceph.pool["{#POOLNAME}",bytes_used]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'Ceph by Zabbix agent 2'
                    key: 'ceph.pool["{#POOLNAME}",max_avail]'
                -
                  sortorder: '2'
                  color: F63100
                  item:
                    host: 'Ceph by Zabbix agent 2'
                    key: 'ceph.pool["{#POOLNAME}",stored_raw]'
      tags:
        -
          tag: class
          value: application
        -
          tag: target
          value: ceph
      macros:
        -
          macro: '{$CEPH.API.KEY}'
          value: zabbix_pass
        -
          macro: '{$CEPH.CONNSTRING}'
          value: 'https://localhost:8003'
        -
          macro: '{$CEPH.USER}'
          value: zabbix
      valuemaps:
        -
          uuid: 2a4b2a8c55ba48b2a815e4123c9ea7fa
          name: 'Ceph cluster status'
          mappings:
            -
              value: '0'
              newvalue: HEALTH_OK
            -
              value: '1'
              newvalue: HEALTH_WARN
            -
              value: '2'
              newvalue: HEALTH_ERR
        -
          uuid: 22fe6d6c74454775994f07fc05d7bafd
          name: 'Service state'
          mappings:
            -
              value: '0'
              newvalue: Down
            -
              value: '1'
              newvalue: Up
  graphs:
    -
      uuid: fac43ab599344f1da374bd091f6b618b
      name: 'Ceph: Cluster bandwidth'
      graph_items:
        -
          color: 1A7C11
          item:
            host: 'Ceph by Zabbix agent 2'
            key: ceph.rd_bytes.rate
        -
          sortorder: '1'
          color: 2774A4
          item:
            host: 'Ceph by Zabbix agent 2'
            key: ceph.wr_bytes.rate
    -
      uuid: 4191a30a9a7c4e5aa48d96238ca8f20c
      name: 'Ceph: Cluster I/O'
      graph_items:
        -
          color: 1A7C11
          item:
            host: 'Ceph by Zabbix agent 2'
            key: ceph.wr_ops.rate
        -
          sortorder: '1'
          color: 2774A4
          item:
            host: 'Ceph by Zabbix agent 2'
            key: ceph.rd_ops.rate
    -
      uuid: 515e2c5239f94ee7a52ecdb834079e06
      name: 'Ceph: Free space'
      type: STACKED
      graph_items:
        -
          drawtype: FILLED_REGION
          color: 1A7C11
          item:
            host: 'Ceph by Zabbix agent 2'
            key: ceph.total_used_bytes
        -
          sortorder: '1'
          drawtype: FILLED_REGION
          color: 2774A4
          item:
            host: 'Ceph by Zabbix agent 2'
            key: ceph.total_avail_bytes
    -
      uuid: 8714a8cf50bd43c2b54e410a439d320b
      name: 'Ceph: Overall OSD latency'
      graph_items:
        -
          drawtype: BOLD_LINE
          color: 1A7C11
          item:
            host: 'Ceph by Zabbix agent 2'
            key: ceph.osd_latency_commit.avg
        -
          sortorder: '1'
          color: 2774A4
          item:
            host: 'Ceph by Zabbix agent 2'
            key: ceph.osd_latency_commit.max
        -
          sortorder: '2'
          color: F63100
          item:
            host: 'Ceph by Zabbix agent 2'
            key: ceph.osd_latency_commit.min
        -
          sortorder: '3'
          drawtype: BOLD_LINE
          color: A54F10
          item:
            host: 'Ceph by Zabbix agent 2'
            key: ceph.osd_latency_apply.avg
        -
          sortorder: '4'
          color: FC6EA3
          item:
            host: 'Ceph by Zabbix agent 2'
            key: ceph.osd_latency_apply.max
        -
          sortorder: '5'
          color: 6C59DC
          item:
            host: 'Ceph by Zabbix agent 2'
            key: ceph.osd_latency_apply.min
    -
      uuid: 716d959b255a47779b9aaf376be8ba03
      name: 'Ceph: Overall OSD utilization'
      graph_items:
        -
          drawtype: BOLD_LINE
          color: 1A7C11
          item:
            host: 'Ceph by Zabbix agent 2'
            key: ceph.osd_fill.avg
        -
          sortorder: '1'
          color: 2774A4
          item:
            host: 'Ceph by Zabbix agent 2'
            key: ceph.osd_fill.max
        -
          sortorder: '2'
          color: F63100
          item:
            host: 'Ceph by Zabbix agent 2'
            key: ceph.osd_fill.min