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

template_san_hpe_msa2060_http.yaml « hpe_msa2060_http « san « templates - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dd6be9efd60520aee9e6bdf926fecbc08a6862a1 (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
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
zabbix_export:
  version: '6.2'
  date: '2022-06-07T19:33:26Z'
  template_groups:
    -
      uuid: 7c2cb727f85b492d88cd56e17127c64d
      name: Templates/SAN
  templates:
    -
      uuid: 10537641cfa3416ab0f1451cdb61d804
      template: 'HPE MSA 2060 Storage by HTTP'
      name: 'HPE MSA 2060 Storage by HTTP'
      description: |
        The template to monitor HPE MSA 2060 by HTTP.
        It works without any external scripts and uses the script items.
        
        Setup:
        1. Create user zabbix on the storage with monitor role.
        2. Link template to the host.
        3. Configure {$HPE.MSA.API.PASSWORD} and an interface with address through which one API is accessible if not specified.
        4. Change {$HPE.MSA.API.SCHEME} and {$HPE.MSA.API.PORT} macros if needed.
        
        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/SAN
      items:
        -
          uuid: 078dd015f25d4778af429f9b5e391bc5
          name: 'Get method errors'
          type: DEPENDENT
          key: hpe.msa.data.errors
          delay: '0'
          history: 7d
          trends: '0'
          value_type: TEXT
          description: 'A list of method errors from API requests.'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.[''errors'']'
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1d
          master_item:
            key: hpe.msa.data.get
          tags:
            -
              tag: component
              value: errors
          triggers:
            -
              uuid: 2133ddf10a3641d78e609948d6842687
              expression: 'length(last(/HPE MSA 2060 Storage by HTTP/hpe.msa.data.errors))>0'
              name: 'There are errors in method requests to API'
              priority: AVERAGE
              description: 'There are errors in method requests to API.'
              dependencies:
                -
                  name: 'Service is down or unavailable'
                  expression: 'max(/HPE MSA 2060 Storage by HTTP/net.tcp.service["{$HPE.MSA.API.SCHEME}","{HOST.CONN}","{$HPE.MSA.API.PORT}"],5m)=0'
              tags:
                -
                  tag: scope
                  value: availability
        -
          uuid: bafec666b170480f941fe25cb3cf903d
          name: 'HPE MSA: Get data'
          type: SCRIPT
          key: hpe.msa.data.get
          history: '0'
          trends: '0'
          value_type: TEXT
          params: |
            var params = JSON.parse(value),
                fields = ['username', 'password', 'base_url'],
                methods = [
                    'system',
                    'controllers',
                    'controller-statistics',
                    'frus',
                    'disk-groups',
                    'disk-group-statistics',
                    'disks',
                    'enclosures',
                    'fans',
                    'pools',
                    'ports',
                    'power-supplies',
                    'volumes',
                    'volume-statistics'
                ],
                result = {},
                data = {};
            
            fields.forEach(function (field) {
                if (typeof params !== 'object' || typeof params[field] === 'undefined' || params[field] === '' ) {
                    throw 'Required param is not set: "' + field + '".';
                }
            });
            
            if (!params.base_url.endsWith('/')) {
                params.base_url += '/';
            }
            
            var response, request = new HttpRequest();
            request.addHeader('datatype: json');
            
            auth_string = sha256(params.username + '_' + params.password);
            
            response = request.get(params.base_url + 'api/login/' + auth_string);
            
            if (request.getStatus() < 200 || request.getStatus() >= 300) {
                throw 'Authentication request has failed with status code ' + request.getStatus() + ': ' + response;
            }
            
            if (response !== null) {
                try {
                    auth_data = JSON.parse(response);
                }
                catch (error) {
                   throw 'Failed to parse authentication response received from device API.';
                }
            }
            
            session_key = auth_data['status'][0]['response'];
            
            request.addHeader('sessionKey: ' + session_key);
            
            data.errors = [];
            
            methods.forEach(function (method) {
                response = request.get(params.base_url + 'api/show/' + method);
                method_error = '';
                
                if (request.getStatus() < 200 || request.getStatus() >= 300) {
                    method_error = 'Method: ' + method + '. Request has failed with status code ' + request.getStatus() + ': ' + response;
                    data.errors.push(method_error);
                    return;
                }
            
                if (response !== null) {
                    try {
                        result = JSON.parse(response);
                        switch (method) {
                            case 'controller-statistics':
                                var stats_array = result['controller-statistics'] || [];
                                for (var i = 0; i < stats_array.length; i++) {
                                    result['controller-statistics'][i]['durable-id'] = result['controller-statistics'][i]['durable-id'].toLowerCase();
                                }
                                data[method] = result[method];
                                break;
                            case 'frus':
                                data[method] = result['enclosure-fru'];
                                break;
                            case 'disks':
                                data[method] = result['drives'];
                                break;
                            case 'fans':
                                data[method] = result['fan'];
                                break;
                            case 'ports':
                                data[method] = result['port'];
                                break;
                            default:
                                data[method] = result[method];
                        }
                    }
                    catch (error) {
                        method_error = 'Method: ' + method + '. Failed to parse response received from device API.';
                    }
                }
                else {
                    method_error = 'Method: ' + method + '. No data received by request.';
                }
            
                if (method_error.length > 0) {
                    data.errors.push(method_error);
                }
            });
            
            if (data.errors.length == 0) {
                data.errors = '';
            }
            
            return JSON.stringify(data);
          description: 'The JSON with result of API requests.'
          timeout: '{$HPE.MSA.DATA.TIMEOUT}'
          parameters:
            -
              name: base_url
              value: '{$HPE.MSA.API.SCHEME}://{HOST.CONN}:{$HPE.MSA.API.PORT}/'
            -
              name: username
              value: '{$HPE.MSA.API.USERNAME}'
            -
              name: password
              value: '{$HPE.MSA.API.PASSWORD}'
          tags:
            -
              tag: component
              value: raw
        -
          uuid: 4c8b2c72135a4af781c0f31730366abe
          name: 'System contact'
          type: DEPENDENT
          key: hpe.msa.system.contact
          delay: '0'
          history: 7d
          trends: '0'
          value_type: CHAR
          description: 'The name of the person who administers the system.'
          inventory_link: CONTACT
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.system[0].[''system-contact'']'
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1d
          master_item:
            key: hpe.msa.data.get
          tags:
            -
              tag: component
              value: system
        -
          uuid: dc310d8c55a74a00bed9c004ba33d1fa
          name: 'System health'
          type: DEPENDENT
          key: hpe.msa.system.health
          delay: '0'
          history: 7d
          description: 'System health status.'
          valuemap:
            name: Health
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.system[0].[''health-numeric'']'
              error_handler: CUSTOM_VALUE
              error_handler_params: '4'
          master_item:
            key: hpe.msa.data.get
          tags:
            -
              tag: component
              value: health
            -
              tag: component
              value: system
          triggers:
            -
              uuid: 49e8c1d8a14f40b5acb2723e370ccccb
              expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.system.health)=1'
              name: 'System health is in degraded state'
              priority: WARNING
              description: 'System health is in degraded state.'
              tags:
                -
                  tag: scope
                  value: performance
            -
              uuid: 2709a971f2ce417d8e269a0e5ebdd964
              expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.system.health)=2'
              name: 'System health is in fault state'
              priority: AVERAGE
              description: 'System health is in fault state.'
              tags:
                -
                  tag: scope
                  value: availability
            -
              uuid: fa35428a4f41453984bd0bfa566e0674
              expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.system.health)=3'
              name: 'System health is in unknown state'
              priority: INFO
              description: 'System health is in unknown state.'
              tags:
                -
                  tag: scope
                  value: notice
        -
          uuid: c4aae4a5f218472698751d9de8d1087d
          name: 'System information'
          type: DEPENDENT
          key: hpe.msa.system.info
          delay: '0'
          history: 7d
          trends: '0'
          value_type: CHAR
          description: 'A brief description of what the system is used for or how it is configured.'
          inventory_link: NOTES
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.system[0].[''system-information'']'
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1d
          master_item:
            key: hpe.msa.data.get
          tags:
            -
              tag: component
              value: system
        -
          uuid: 3768f170e5ef44bca39e89b1f8973e6d
          name: 'System location'
          type: DEPENDENT
          key: hpe.msa.system.location
          delay: '0'
          history: 7d
          trends: '0'
          value_type: CHAR
          description: 'The location of the system.'
          inventory_link: LOCATION
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.system[0].[''system-location'']'
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1d
          master_item:
            key: hpe.msa.data.get
          tags:
            -
              tag: component
              value: system
        -
          uuid: 00c58217d52e4cd5852bdd9c71c4375f
          name: 'System name'
          type: DEPENDENT
          key: hpe.msa.system.name
          delay: '0'
          history: 7d
          trends: '0'
          value_type: CHAR
          description: 'The name of the storage system.'
          inventory_link: NAME
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.system[0].[''system-name'']'
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1d
          master_item:
            key: hpe.msa.data.get
          tags:
            -
              tag: component
              value: system
        -
          uuid: 103e58d547284e68b079e92074950ff9
          name: 'Product ID'
          type: DEPENDENT
          key: hpe.msa.system.product_id
          delay: '0'
          history: 7d
          trends: '0'
          value_type: CHAR
          description: 'The product model identifier.'
          inventory_link: MODEL
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.system[0].[''product-id'']'
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1d
          master_item:
            key: hpe.msa.data.get
          tags:
            -
              tag: component
              value: system
        -
          uuid: 7865d8ae697c40c5b5855c47bb82ccc4
          name: 'Vendor name'
          type: DEPENDENT
          key: hpe.msa.system.vendor_name
          delay: '0'
          history: 7d
          trends: '0'
          value_type: CHAR
          description: 'The vendor name.'
          inventory_link: VENDOR
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.system[0].[''vendor-name'']'
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1d
          master_item:
            key: hpe.msa.data.get
          tags:
            -
              tag: component
              value: system
        -
          uuid: 3831060089ff497993088472e922df38
          name: 'HPE MSA: Service ping'
          type: SIMPLE
          key: 'net.tcp.service["{$HPE.MSA.API.SCHEME}","{HOST.CONN}","{$HPE.MSA.API.PORT}"]'
          history: 7d
          description: 'Check if HTTP/HTTPS service accepts TCP connections.'
          preprocessing:
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 1h
          tags:
            -
              tag: component
              value: health
            -
              tag: component
              value: network
          triggers:
            -
              uuid: 9c1bf26f95d946f386bbf613d3d55779
              expression: 'max(/HPE MSA 2060 Storage by HTTP/net.tcp.service["{$HPE.MSA.API.SCHEME}","{HOST.CONN}","{$HPE.MSA.API.PORT}"],5m)=0'
              name: 'Service is down or unavailable'
              priority: HIGH
              description: 'HTTP/HTTPS service is down or unable to establish TCP connection.'
              tags:
                -
                  tag: scope
                  value: availability
      discovery_rules:
        -
          uuid: 91c30dd0509843898601ce6d489fab03
          name: 'Controllers discovery'
          type: DEPENDENT
          key: hpe.msa.controllers.discovery
          delay: '0'
          description: 'Discover controllers.'
          item_prototypes:
            -
              uuid: 73bc16fc631f4386abbc78897db07e13
              name: 'Controller [{#CONTROLLER.ID}]: Cache: Read hits, rate'
              type: DEPENDENT
              key: 'hpe.msa.controllers.cache.read.hits["{#CONTROLLER.ID}",rate]'
              delay: '0'
              history: 7d
              description: 'For the controller that owns the volume, the number of times the block to be read is found in cache per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controller-statistics''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''read-cache-hits''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 04e14fe4d8ba4693b954ebcac1671649
              name: 'Controller [{#CONTROLLER.ID}]: Cache: Read misses, rate'
              type: DEPENDENT
              key: 'hpe.msa.controllers.cache.read.misses["{#CONTROLLER.ID}",rate]'
              delay: '0'
              history: 7d
              description: 'For the controller that owns the volume, the number of times the block to be read is not found in cache per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controller-statistics''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''read-cache-misses''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 5cb9f7eb42d2413a90161ac192629073
              name: 'Controller [{#CONTROLLER.ID}]: Cache: Write hits, rate'
              type: DEPENDENT
              key: 'hpe.msa.controllers.cache.write.hits["{#CONTROLLER.ID}",rate]'
              delay: '0'
              history: 7d
              description: 'For the controller that owns the volume, the number of times the block written to is found in cache per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controller-statistics''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''write-cache-hits''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 61aa7235c6c44cfababd1b2390cc0443
              name: 'Controller [{#CONTROLLER.ID}]: Cache: Write misses, rate'
              type: DEPENDENT
              key: 'hpe.msa.controllers.cache.write.misses["{#CONTROLLER.ID}",rate]'
              delay: '0'
              history: 7d
              description: 'For the controller that owns the volume, the number of times the block written to is not found in cache per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controller-statistics''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''write-cache-misses''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 0d754544c18143ff98114e1ed316ad1e
              name: 'Controller [{#CONTROLLER.ID}]: Cache: Write utilization'
              type: DEPENDENT
              key: 'hpe.msa.controllers.cache.write["{#CONTROLLER.ID}",util]'
              delay: '0'
              history: 7d
              units: '%'
              description: 'Percentage of write cache in use, from 0 to 100.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controller-statistics''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''write-cache-used''].first()'
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 482c5af99fe740278c4663ba300dee04
              name: 'Controller [{#CONTROLLER.ID}]: Cache memory size'
              type: DEPENDENT
              key: 'hpe.msa.controllers.cache["{#CONTROLLER.ID}",total]'
              delay: '0'
              history: 7d
              units: B
              description: 'Controller cache memory size.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controllers''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''cache-memory-size''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
                -
                  type: MULTIPLIER
                  parameters:
                    - '1048576'
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 80d6ae014e354f6c844c3b88ea66c530
              name: 'Controller [{#CONTROLLER.ID}]: CPU utilization'
              type: DEPENDENT
              key: 'hpe.msa.controllers.cpu["{#CONTROLLER.ID}",util]'
              delay: '0'
              history: 7d
              units: '%'
              description: 'Percentage of time the CPU is busy, from 0 to 100.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controller-statistics''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''cpu-load''].first()'
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
              trigger_prototypes:
                -
                  uuid: 0bf68b46b7644ad5ad0123df49c1da35
                  expression: 'min(/HPE MSA 2060 Storage by HTTP/hpe.msa.controllers.cpu["{#CONTROLLER.ID}",util],5m)>{$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}'
                  name: 'Controller [{#CONTROLLER.ID}]: High CPU utilization'
                  event_name: 'Controller [{#CONTROLLER.ID}]: High CPU utilization (over {$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}% for 5m)'
                  priority: WARNING
                  description: 'Controller CPU utilization is too high. The system might be slow to respond.'
                  tags:
                    -
                      tag: scope
                      value: performance
            -
              uuid: c8fbfd459fce4149b1459e366b61981a
              name: 'Controller [{#CONTROLLER.ID}]: Data transfer rate: Reads'
              type: DEPENDENT
              key: 'hpe.msa.controllers.data_transfer.reads["{#CONTROLLER.ID}",rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: Bps
              description: 'The data read rate, in bytes per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controller-statistics''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''data-read-numeric''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 9c5c23273f5b43ad9e300d2c7b90bc3f
              name: 'Controller [{#CONTROLLER.ID}]: Data transfer rate: Total'
              type: DEPENDENT
              key: 'hpe.msa.controllers.data_transfer.total["{#CONTROLLER.ID}",rate]'
              delay: '0'
              history: 7d
              units: Bps
              description: 'The data transfer rate, in bytes per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controller-statistics''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''bytes-per-second-numeric''].first()'
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 94f0b7f7d397453f9227c1b473a77a4e
              name: 'Controller [{#CONTROLLER.ID}]: Data transfer rate: Writes'
              type: DEPENDENT
              key: 'hpe.msa.controllers.data_transfer.writes["{#CONTROLLER.ID}",rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: Bps
              description: 'The data write rate, in bytes per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controller-statistics''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''data-written-numeric''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 8b0f014d1ed5470d919357f204b704ca
              name: 'Controller [{#CONTROLLER.ID}]: IOPS, read rate'
              type: DEPENDENT
              key: 'hpe.msa.controllers.iops.read["{#CONTROLLER.ID}",rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: '!r/s'
              description: 'Number of read operations per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controller-statistics''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''number-of-reads''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 16f2fd5bd9d244daa09aef3f79a5d450
              name: 'Controller [{#CONTROLLER.ID}]: IOPS, total rate'
              type: DEPENDENT
              key: 'hpe.msa.controllers.iops.total["{#CONTROLLER.ID}",rate]'
              delay: '0'
              history: 7d
              units: '!iops'
              description: 'Input/output operations per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controller-statistics''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''iops''].first()'
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 9b8366ac60304c3c98dedc278ad18418
              name: 'Controller [{#CONTROLLER.ID}]: IOPS, write rate'
              type: DEPENDENT
              key: 'hpe.msa.controllers.iops.write["{#CONTROLLER.ID}",rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: '!w/s'
              description: 'Number of write operations per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controller-statistics''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''number-of-writes''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 5f6c124f1aef41499ee52616ede02de9
              name: 'Controller [{#CONTROLLER.ID}]: Disks'
              type: DEPENDENT
              key: 'hpe.msa.controllers["{#CONTROLLER.ID}",disks]'
              delay: '0'
              history: 7d
              description: 'Number of disks in the storage system.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controllers''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''disks''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: c70f280c9c494b769b442f3a22a3c173
              name: 'Controller [{#CONTROLLER.ID}]: Disk groups'
              type: DEPENDENT
              key: 'hpe.msa.controllers["{#CONTROLLER.ID}",disk_groups]'
              delay: '0'
              history: 7d
              description: 'Number of disk groups in the storage system.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controllers''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''virtual-disks''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: ba1bb9818a9a487c8742d619316b087e
              name: 'Controller [{#CONTROLLER.ID}]: Firmware version'
              type: DEPENDENT
              key: 'hpe.msa.controllers["{#CONTROLLER.ID}",firmware]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: 'Storage controller firmware version.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controllers''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''sc-fw''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 5f5307f2904a4792af1906a2b03a2a9b
              name: 'Controller [{#CONTROLLER.ID}]: Health'
              type: DEPENDENT
              key: 'hpe.msa.controllers["{#CONTROLLER.ID}",health]'
              delay: '0'
              history: 7d
              description: 'Controller health status.'
              valuemap:
                name: Health
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controllers''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''health-numeric''].first()'
                  error_handler: CUSTOM_VALUE
                  error_handler_params: '4'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: component
                  value: health
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
              trigger_prototypes:
                -
                  uuid: 3988a5b897a34c84952fa573d7019879
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.controllers["{#CONTROLLER.ID}",health])=1'
                  name: 'Controller [{#CONTROLLER.ID}]: Controller health is in degraded state'
                  priority: WARNING
                  description: 'Controller health is in degraded state.'
                  dependencies:
                    -
                      name: 'Controller [{#CONTROLLER.ID}]: Controller is down'
                      expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.controllers["{#CONTROLLER.ID}",status])=1'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: 7256e023ac82427bb6ee923d4ff07786
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.controllers["{#CONTROLLER.ID}",health])=2'
                  name: 'Controller [{#CONTROLLER.ID}]: Controller health is in fault state'
                  priority: AVERAGE
                  description: 'Controller health is in fault state.'
                  dependencies:
                    -
                      name: 'Controller [{#CONTROLLER.ID}]: Controller is down'
                      expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.controllers["{#CONTROLLER.ID}",status])=1'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: 15bc89e6c61549caaf5a66c85446ea9d
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.controllers["{#CONTROLLER.ID}",health])=3'
                  name: 'Controller [{#CONTROLLER.ID}]: Controller health is in unknown state'
                  priority: INFO
                  description: 'Controller health is in unknown state.'
                  dependencies:
                    -
                      name: 'Controller [{#CONTROLLER.ID}]: Controller is down'
                      expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.controllers["{#CONTROLLER.ID}",status])=1'
                  tags:
                    -
                      tag: scope
                      value: notice
            -
              uuid: 2c9c2636aeb543ec8e70102c555fe776
              name: 'Controller [{#CONTROLLER.ID}]: IP address'
              type: DEPENDENT
              key: 'hpe.msa.controllers["{#CONTROLLER.ID}",ip_address]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: 'Controller network port IP address.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controllers''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''ip-address''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 3405ef21e2cb40729e16c5b8aaf35996
              name: 'Controller [{#CONTROLLER.ID}]: Part number'
              type: DEPENDENT
              key: 'hpe.msa.controllers["{#CONTROLLER.ID}",part_number]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: 'Part number of the controller.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controllers''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''part-number''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 9b4ee1a634c3462f8fb48eb0e79984df
              name: 'Controller [{#CONTROLLER.ID}]: Pools'
              type: DEPENDENT
              key: 'hpe.msa.controllers["{#CONTROLLER.ID}",pools]'
              delay: '0'
              history: 7d
              description: 'Number of pools in the storage system.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controllers''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''number-of-storage-pools''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: 6980d1841bc04c79868d6f05bf59921e
              name: 'Controller [{#CONTROLLER.ID}]: Serial number'
              type: DEPENDENT
              key: 'hpe.msa.controllers["{#CONTROLLER.ID}",serial_number]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: 'Storage controller serial number.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controllers''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''serial-number''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
            -
              uuid: c0c2034fc848400c9b1f09f0c54790b3
              name: 'Controller [{#CONTROLLER.ID}]: Status'
              type: DEPENDENT
              key: 'hpe.msa.controllers["{#CONTROLLER.ID}",status]'
              delay: '0'
              history: 7d
              description: 'Storage controller status.'
              valuemap:
                name: 'Controller status'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controllers''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''status-numeric''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: component
                  value: health
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
              trigger_prototypes:
                -
                  uuid: 99de4f8de416485db5c3844d1c8d654b
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.controllers["{#CONTROLLER.ID}",status])=1'
                  name: 'Controller [{#CONTROLLER.ID}]: Controller is down'
                  priority: HIGH
                  description: 'The controller is down.'
                  tags:
                    -
                      tag: scope
                      value: availability
            -
              uuid: 7a9b3ba8dd5446d0961a6eea595c2b49
              name: 'Controller [{#CONTROLLER.ID}]: Uptime'
              type: DEPENDENT
              key: 'hpe.msa.controllers["{#CONTROLLER.ID}",uptime]'
              delay: '0'
              history: 7d
              units: uptime
              description: 'Number of seconds since the controller was restarted.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''controller-statistics''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''power-on-time''].first()'
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: controller
                -
                  tag: controller
                  value: '{#CONTROLLER.ID}'
              trigger_prototypes:
                -
                  uuid: 255250aa4b75465a989bf8f3fd805667
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.controllers["{#CONTROLLER.ID}",uptime])<10m'
                  name: 'Controller [{#CONTROLLER.ID}]: Controller has been restarted'
                  event_name: 'Controller [{#CONTROLLER.ID}]: Controller has been restarted (uptime < 10m)'
                  priority: WARNING
                  description: 'The controller uptime is less than 10 minutes.'
                  tags:
                    -
                      tag: scope
                      value: availability
          graph_prototypes:
            -
              uuid: a0bac1256ecf42fb9e980a49e52f008e
              name: 'Controller [{#CONTROLLER.ID}]: Cache: Write utilization'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.controllers.cache.write["{#CONTROLLER.ID}",util]'
            -
              uuid: 2b3343a641304872a82c84e1b918f8b3
              name: 'Controller [{#CONTROLLER.ID}]: Cache usage'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.controllers.cache.read.hits["{#CONTROLLER.ID}",rate]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.controllers.cache.read.misses["{#CONTROLLER.ID}",rate]'
                -
                  sortorder: '2'
                  color: F63100
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.controllers.cache.write.hits["{#CONTROLLER.ID}",rate]'
                -
                  sortorder: '3'
                  color: A54F10
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.controllers.cache.write.misses["{#CONTROLLER.ID}",rate]'
            -
              uuid: ed2117af47d94be9bed0632a0b662a25
              name: 'Controller [{#CONTROLLER.ID}]: Controller CPU utilization'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.controllers.cpu["{#CONTROLLER.ID}",util]'
            -
              uuid: 27b53c540cae45da9b2e13cbbb1ab821
              name: 'Controller [{#CONTROLLER.ID}]: Data transfer rate'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.controllers.data_transfer.reads["{#CONTROLLER.ID}",rate]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.controllers.data_transfer.writes["{#CONTROLLER.ID}",rate]'
            -
              uuid: ce3c794ac9424be5a104b812680cc77b
              name: 'Controller [{#CONTROLLER.ID}]: Disk operations rate'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.controllers.iops.read["{#CONTROLLER.ID}",rate]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.controllers.iops.write["{#CONTROLLER.ID}",rate]'
          master_item:
            key: hpe.msa.data.get
          lld_macro_paths:
            -
              lld_macro: '{#CONTROLLER.ID}'
              path: '$.[''controller-id'']'
            -
              lld_macro: '{#DURABLE.ID}'
              path: '$.[''durable-id'']'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.[''controllers'']'
              error_handler: DISCARD_VALUE
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 6h
        -
          uuid: 46478b42c76348d7824c715fd6d20f74
          name: 'Disks discovery'
          type: DEPENDENT
          key: hpe.msa.disks.discovery
          delay: '0'
          description: 'Discover disks.'
          item_prototypes:
            -
              uuid: 4fedb88c1bb74c2cb5a0f72fdfcff104
              name: 'Disk [{#DURABLE.ID}]: Blocks size'
              type: DEPENDENT
              key: 'hpe.msa.disks.blocks["{#DURABLE.ID}",size]'
              delay: '0'
              history: 7d
              units: B
              description: 'The size of a block, in bytes.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disks''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''blocksize''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk
                -
                  tag: disk
                  value: '{#DURABLE.ID}'
            -
              uuid: a491cb03df9c4e3ead70e0a74d9337b2
              name: 'Disk [{#DURABLE.ID}]: Blocks total'
              type: DEPENDENT
              key: 'hpe.msa.disks.blocks["{#DURABLE.ID}",total]'
              delay: '0'
              history: 7d
              description: 'Total space in blocks.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disks''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''blocks''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk
                -
                  tag: disk
                  value: '{#DURABLE.ID}'
            -
              uuid: 6c20cf4e84b0427fbe797fc209d78785
              name: 'Disk [{#DURABLE.ID}]: Space total'
              type: CALCULATED
              key: 'hpe.msa.disks.space["{#DURABLE.ID}",total]'
              delay: 1h
              history: 7d
              units: B
              params: 'last(//hpe.msa.disks.blocks["{#DURABLE.ID}",size])*last(//hpe.msa.disks.blocks["{#DURABLE.ID}",total])'
              description: 'Total size of the disk.'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              tags:
                -
                  tag: component
                  value: disk
                -
                  tag: disk
                  value: '{#DURABLE.ID}'
            -
              uuid: 80ea0929a1bf43f4bdeba80e675c52bd
              name: 'Disk [{#DURABLE.ID}]: SSD life left'
              type: DEPENDENT
              key: 'hpe.msa.disks.ssd["{#DURABLE.ID}",life_left]'
              delay: '0'
              history: 7d
              discover: NO_DISCOVER
              units: '%'
              description: 'The percantage of disk life remaining.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disks''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''ssd-life-left-numeric''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk
                -
                  tag: disk
                  value: '{#DURABLE.ID}'
            -
              uuid: f5bb9b7f437f434d83ca0542e41b2673
              name: 'Disk [{#DURABLE.ID}]: Disk group'
              type: DEPENDENT
              key: 'hpe.msa.disks["{#DURABLE.ID}",group]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: 'If the disk is in a disk group, the disk group name.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disks''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''disk-group''].first()'
                  error_handler: DISCARD_VALUE
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk
                -
                  tag: disk
                  value: '{#DURABLE.ID}'
            -
              uuid: 86fca5ad02af49c8a1d48f4a260a0dbf
              name: 'Disk [{#DURABLE.ID}]: Health'
              type: DEPENDENT
              key: 'hpe.msa.disks["{#DURABLE.ID}",health]'
              delay: '0'
              history: 7d
              description: 'Disk health status.'
              valuemap:
                name: Health
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disks''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''health-numeric''].first()'
                  error_handler: CUSTOM_VALUE
                  error_handler_params: '4'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk
                -
                  tag: component
                  value: health
                -
                  tag: disk
                  value: '{#DURABLE.ID}'
              trigger_prototypes:
                -
                  uuid: f76f8eec05a94e2db9d4cd3bcbb43aa4
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks["{#DURABLE.ID}",health])=1'
                  name: 'Disk [{#DURABLE.ID}]: Disk health is in degraded state'
                  priority: WARNING
                  description: 'Disk health is in degraded state.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: 383181e44a114334ab28ff09f49b2d51
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks["{#DURABLE.ID}",health])=2'
                  name: 'Disk [{#DURABLE.ID}]: Disk health is in fault state'
                  priority: AVERAGE
                  description: 'Disk health is in fault state.'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: 2b2d78c6c29f4bd58eff632809dee978
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks["{#DURABLE.ID}",health])=3'
                  name: 'Disk [{#DURABLE.ID}]: Disk health is in unknown state'
                  priority: INFO
                  description: 'Disk health is in unknown state.'
                  tags:
                    -
                      tag: scope
                      value: notice
            -
              uuid: 8f8ad679881c4693acfed363e5498b34
              name: 'Disk [{#DURABLE.ID}]: Model'
              type: DEPENDENT
              key: 'hpe.msa.disks["{#DURABLE.ID}",model]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: 'Disk model.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disks''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''model''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk
                -
                  tag: disk
                  value: '{#DURABLE.ID}'
            -
              uuid: 7fffecbf1ede4a5e9da5efc4311fc62e
              name: 'Disk [{#DURABLE.ID}]: Storage pool'
              type: DEPENDENT
              key: 'hpe.msa.disks["{#DURABLE.ID}",pool]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: 'If the disk is in a pool, the pool name.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disks''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''storage-pool-name''].first()'
                  error_handler: DISCARD_VALUE
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk
                -
                  tag: disk
                  value: '{#DURABLE.ID}'
            -
              uuid: 9a43a148ad4742e1a1df0038b36a171f
              name: 'Disk [{#DURABLE.ID}]: Serial number'
              type: DEPENDENT
              key: 'hpe.msa.disks["{#DURABLE.ID}",serial_number]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: 'Disk serial number.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disks''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''serial-number''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk
                -
                  tag: disk
                  value: '{#DURABLE.ID}'
            -
              uuid: 119dc5c43fb741028ccd599d25ad032c
              name: 'Disk [{#DURABLE.ID}]: Temperature'
              type: DEPENDENT
              key: 'hpe.msa.disks["{#DURABLE.ID}",temperature]'
              delay: '0'
              history: 7d
              units: '!°C'
              description: 'Temperature of the disk.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disks''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''temperature-numeric''].first()'
                  error_handler: DISCARD_VALUE
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk
                -
                  tag: disk
                  value: '{#DURABLE.ID}'
            -
              uuid: 0a0cf4600214443aa504d5c55d1f4015
              name: 'Disk [{#DURABLE.ID}]: Temperature status'
              type: DEPENDENT
              key: 'hpe.msa.disks["{#DURABLE.ID}",temperature_status]'
              delay: '0'
              history: 7d
              description: 'Disk temperature status.'
              valuemap:
                name: 'Disk temperature status'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disks''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''temperature-status-numeric''].first()'
                  error_handler: DISCARD_VALUE
                -
                  type: IN_RANGE
                  parameters:
                    - '1'
                    - '3'
                  error_handler: CUSTOM_VALUE
                  error_handler_params: '4'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk
                -
                  tag: component
                  value: health
                -
                  tag: disk
                  value: '{#DURABLE.ID}'
              trigger_prototypes:
                -
                  uuid: d4b8f77421d744918e087f696b3f0fff
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks["{#DURABLE.ID}",temperature_status])=2'
                  name: 'Disk [{#DURABLE.ID}]: Disk temperature is critically high'
                  priority: AVERAGE
                  description: 'Disk temperature is critically high.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: fbbac4048fda477a99f00566624b6bdb
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks["{#DURABLE.ID}",temperature_status])=3'
                  name: 'Disk [{#DURABLE.ID}]: Disk temperature is high'
                  priority: WARNING
                  description: 'Disk temperature is high.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: 41e4f00446304206804da350a88ce3b9
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks["{#DURABLE.ID}",temperature_status])=4'
                  name: 'Disk [{#DURABLE.ID}]: Disk temperature is unknown'
                  priority: INFO
                  description: 'Disk temperature is unknown.'
                  tags:
                    -
                      tag: scope
                      value: notice
            -
              uuid: 1a23ef68bb484fd5baeba2b352b970db
              name: 'Disk [{#DURABLE.ID}]: Type'
              type: DEPENDENT
              key: 'hpe.msa.disks["{#DURABLE.ID}",type]'
              delay: '0'
              history: 7d
              description: |
                Disk type:
                SAS: Enterprise SAS spinning disk.
                SAS MDL: Midline SAS spinning disk.
                SSD SAS: SAS solit-state disk.
              valuemap:
                name: 'Disk type'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disks''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''description-numeric''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk
                -
                  tag: disk
                  value: '{#DURABLE.ID}'
            -
              uuid: d8e35779834640c8afdc5874f72fe8af
              name: 'Disk [{#DURABLE.ID}]: Vendor'
              type: DEPENDENT
              key: 'hpe.msa.disks["{#DURABLE.ID}",vendor]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: 'Disk vendor.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disks''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''vendor''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk
                -
                  tag: disk
                  value: '{#DURABLE.ID}'
          master_item:
            key: hpe.msa.data.get
          lld_macro_paths:
            -
              lld_macro: '{#DURABLE.ID}'
              path: '$.[''durable-id'']'
            -
              lld_macro: '{#TYPE}'
              path: '$.[''description-numeric'']'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.[''disks'']'
              error_handler: DISCARD_VALUE
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 6h
          overrides:
            -
              name: 'SSD life left'
              step: '1'
              filter:
                conditions:
                  -
                    macro: '{#TYPE}'
                    value: '8'
                    formulaid: A
              operations:
                -
                  operationobject: ITEM_PROTOTYPE
                  operator: REGEXP
                  value: 'SSD life left'
                  status: ENABLED
                  discover: DISCOVER
        -
          uuid: 88aaea8c16a247559c68783ad0cd5c4d
          name: 'Disk groups discovery'
          type: DEPENDENT
          key: hpe.msa.disks.groups.discovery
          delay: '0'
          description: 'Discover disk groups.'
          item_prototypes:
            -
              uuid: 8f68ad1b814d4287a6fd72d5bd03f7da
              name: 'Disk group [{#NAME}]: Average response time: Read'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups.avg_rsp_time["{#NAME}",read]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: s
              description: 'Average response time for all read operations, calculated over the interval since these statistics were last requested or reset.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-group-statistics''][?(@[''name''] == "{#NAME}")].[''avg-read-rsp-time''].first()'
                -
                  type: MULTIPLIER
                  parameters:
                    - '0.000001'
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: 2ae8acbcd0b9442c9adc8086fa36fa40
              name: 'Disk group [{#NAME}]: Average response time: Total'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups.avg_rsp_time["{#NAME}",total]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: s
              description: 'Average response time for read and write operations, calculated over the interval since these statistics were last requested or reset.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-group-statistics''][?(@[''name''] == "{#NAME}")].[''avg-rsp-time''].first()'
                -
                  type: MULTIPLIER
                  parameters:
                    - '0.000001'
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: f99ce5e6e31140c298ee447d3a2b8c4d
              name: 'Disk group [{#NAME}]: Average response time: Write'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups.avg_rsp_time["{#NAME}",write]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: s
              description: 'Average response time for all write operations, calculated over the interval since these statistics were last requested or reset.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-group-statistics''][?(@[''name''] == "{#NAME}")].[''avg-write-rsp-time''].first()'
                -
                  type: MULTIPLIER
                  parameters:
                    - '0.000001'
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: 705fce660a944a47ad7ff0e9c9b1d37e
              name: 'Disk group [{#NAME}]: Blocks free'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups.blocks["{#NAME}",free]'
              delay: '0'
              history: 7d
              description: 'Free space in blocks.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-groups''][?(@[''name''] == "{#NAME}")].[''freespace-numeric''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: 27e3fc79212e407ca1ae5fb06557440d
              name: 'Disk group [{#NAME}]: Blocks size'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups.blocks["{#NAME}",size]'
              delay: '0'
              history: 7d
              units: B
              description: 'The size of a block, in bytes.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-groups''][?(@[''name''] == "{#NAME}")].[''blocksize''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: f14e651fd9dc4b03bb00e5db780f0114
              name: 'Disk group [{#NAME}]: Blocks total'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups.blocks["{#NAME}",total]'
              delay: '0'
              history: 7d
              description: 'Total space in blocks.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-groups''][?(@[''name''] == "{#NAME}")].[''blocks''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: ecd3de6d32e94d2ab50111659147c97e
              name: 'Disk group [{#NAME}]: Data transfer rate: Reads'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups.data_transfer.reads["{#NAME}",rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: Bps
              description: 'The data read rate, in bytes per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-group-statistics''][?(@[''name''] == "{#NAME}")].[''data-read-numeric''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: 28b236ea619f4130a3271459e9fce06b
              name: 'Disk group [{#NAME}]: Data transfer rate: Total'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups.data_transfer.total["{#NAME}",rate]'
              delay: '0'
              history: 7d
              units: Bps
              description: 'The data transfer rate, in bytes per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-group-statistics''][?(@[''name''] == "{#NAME}")].[''bytes-per-second-numeric''].first()'
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: 51ef802067c149bea1d5d976df6e3a6f
              name: 'Disk group [{#NAME}]: Data transfer rate: Writes'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups.data_transfer.writes["{#NAME}",rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: Bps
              description: 'The data write rate, in bytes per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-group-statistics''][?(@[''name''] == "{#NAME}")].[''data-written-numeric''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: 95925d6d4af94964b388208ff185642d
              name: 'Disk group [{#NAME}]: IOPS, read rate'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups.iops.read["{#NAME}",rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: '!r/s'
              description: 'Number of read operations per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-group-statistics''][?(@[''name''] == "{#NAME}")].[''number-of-reads''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: c9fdf59576554063b404d190ad90db18
              name: 'Disk group [{#NAME}]: IOPS, total rate'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups.iops.total["{#NAME}",rate]'
              delay: '0'
              history: 7d
              units: '!iops'
              description: 'Input/output operations per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-group-statistics''][?(@[''name''] == "{#NAME}")].[''iops''].first()'
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: 31f5b13a56704e438b600df70c37a1fd
              name: 'Disk group [{#NAME}]: IOPS, write rate'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups.iops.write["{#NAME}",rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: '!w/s'
              description: 'Number of write operations per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-group-statistics''][?(@[''name''] == "{#NAME}")].[''number-of-writes''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: 7359b1d550734d30bb83612538b36e95
              name: 'Disk group [{#NAME}]: RAID type'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups.raid["{#NAME}",type]'
              delay: '0'
              history: 7d
              description: 'The RAID level of the disk group.'
              valuemap:
                name: 'RAID type'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-groups''][?(@[''name''] == "{#NAME}")].[''raidtype-numeric''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: b0d49d3da6b14b9cb8eeb95a3665a26e
              name: 'Disk group [{#NAME}]: Space free'
              type: CALCULATED
              key: 'hpe.msa.disks.groups.space["{#NAME}",free]'
              history: 7d
              units: B
              params: 'last(//hpe.msa.disks.groups.blocks["{#NAME}",size])*last(//hpe.msa.disks.groups.blocks["{#NAME}",free])'
              description: 'The free space in the disk group.'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: bc8e6e0fb286466593186708cddf3b2a
              name: 'Disk group [{#NAME}]: Pool space used'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups.space["{#NAME}",pool_util]'
              delay: '0'
              history: 7d
              units: '%'
              description: 'The percentage of pool capacity that the disk group occupies.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-groups''][?(@[''name''] == "{#NAME}")].[''pool-percentage''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: fb3dd5308c97446693932206be17ace3
              name: 'Disk group [{#NAME}]: Space total'
              type: CALCULATED
              key: 'hpe.msa.disks.groups.space["{#NAME}",total]'
              history: 7d
              units: B
              params: 'last(//hpe.msa.disks.groups.blocks["{#NAME}",size])*last(//hpe.msa.disks.groups.blocks["{#NAME}",total])'
              description: 'The capacity of the disk group.'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: 2a9c7f901f494b8bb7d2c74cd7c3030c
              name: 'Disk group [{#NAME}]: Space utilization'
              type: CALCULATED
              key: 'hpe.msa.disks.groups.space["{#NAME}",util]'
              history: 7d
              value_type: FLOAT
              units: '%'
              params: 'last(//hpe.msa.disks.groups.space["{#NAME}",free])/last(//hpe.msa.disks.groups.space["{#NAME}",total])*100'
              description: 'The space utilization percentage in the disk group.'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
              trigger_prototypes:
                -
                  uuid: df1af9dad6444821a86a26158469d0cb
                  expression: 'min(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups.space["{#NAME}",util],5m)>{$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}'
                  name: 'Disk group [{#NAME}]: Disk group space is critically low'
                  event_name: 'Disk group [{#NAME}]: Disk group space is critically low (used > {$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}%)'
                  priority: AVERAGE
                  description: 'Disk group is running low on free space (less than {$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}% available).'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: 713960711c324dc780998f8f263344a2
                  expression: 'min(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups.space["{#NAME}",util],5m)>{$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:"{#NAME}"}'
                  name: 'Disk group [{#NAME}]: Disk group space is low'
                  event_name: 'Disk group [{#NAME}]: Disk group space is low (used > {$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:"{#NAME}"}%)'
                  priority: WARNING
                  description: 'Disk group is running low on free space (less than {$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN:"{#NAME}"}% available).'
                  dependencies:
                    -
                      name: 'Disk group [{#NAME}]: Disk group space is critically low'
                      expression: 'min(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups.space["{#NAME}",util],5m)>{$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT:"{#NAME}"}'
                  tags:
                    -
                      tag: scope
                      value: performance
            -
              uuid: 4c6bbdcdb05d45e0af52548aef4e8716
              name: 'Disk group [{#NAME}]: Disks count'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups["{#NAME}",disk_count]'
              delay: '0'
              history: 7d
              description: 'Number of disks in the disk group.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-groups''][?(@[''name''] == "{#NAME}")].[''diskcount''].first()'
                  error_handler: DISCARD_VALUE
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: disk-group
                  value: '{#NAME}'
            -
              uuid: 97b6e0e2ec844636be64931fca6e2c6c
              name: 'Disk group [{#NAME}]: Health'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups["{#NAME}",health]'
              delay: '0'
              history: 7d
              description: 'Disk group health.'
              valuemap:
                name: Health
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-groups''][?(@[''name''] == "{#NAME}")].[''health-numeric''].first()'
                  error_handler: CUSTOM_VALUE
                  error_handler_params: '4'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: component
                  value: health
                -
                  tag: disk-group
                  value: '{#NAME}'
              trigger_prototypes:
                -
                  uuid: 7899b8a15b5042f3a4467a7cdee4c6ae
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups["{#NAME}",health])=1'
                  name: 'Disk group [{#NAME}]: Disk group health is in degraded state'
                  priority: WARNING
                  description: 'Disk group health is in degraded state.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: e7c6a3b20c424196854a5437aba4c3ec
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups["{#NAME}",health])=2'
                  name: 'Disk group [{#NAME}]: Disk group health is in fault state'
                  priority: AVERAGE
                  description: 'Disk group health is in fault state.'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: 177dd9d1cfa54b3e8c9e6479cb96af03
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups["{#NAME}",health])=3'
                  name: 'Disk group [{#NAME}]: Disk group health is in unknown state'
                  priority: INFO
                  description: 'Disk group health is in unknown state.'
                  tags:
                    -
                      tag: scope
                      value: notice
            -
              uuid: 6755c1253e83442780eeb31d67062980
              name: 'Disk group [{#NAME}]: Status'
              type: DEPENDENT
              key: 'hpe.msa.disks.groups["{#NAME}",status]'
              delay: '0'
              history: 7d
              description: |
                The status of the disk group:
                
                - CRIT: Critical. The disk group is online but isn't fault tolerant because some of it's disks are down.
                - DMGD: Damaged. The disk group is online and fault tolerant, but some of it's disks are damaged.
                - FTDN: Fault tolerant with a down disk.The disk group is online and fault tolerant, but some of it's disks are down.
                - FTOL: Fault tolerant.
                - MSNG: Missing. The disk group is online and fault tolerant, but some of it's disks are missing.
                - OFFL: Offline. Either the disk group is using offline initialization, or it's disks are down and data may be lost.
                - QTCR: Quarantined critical. The disk group is critical with at least one inaccessible disk. For example, two disks are inaccessible in a RAID 6 disk group or one disk is inaccessible for other fault-tolerant RAID levels. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.
                - QTDN: Quarantined with a down disk. The RAID6 disk group has one inaccessible disk. The disk group is fault tolerant but degraded. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.
                - QTOF: Quarantined offline. The disk group is offline with multiple inaccessible disks causing user data to be incomplete, or is an NRAID or RAID 0 disk group.
                - QTUN: Quarantined unsupported. The disk group contains data in a format that is not supported by this system. For example, this system does not support linear disk groups.
                - STOP: The disk group is stopped.
                - UNKN: Unknown.
                - UP: Up. The disk group is online and does not have fault-tolerant attributes.
              valuemap:
                name: 'Disk group status'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''disk-groups''][?(@[''name''] == "{#NAME}")].[''status-numeric''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: disk-group
                -
                  tag: component
                  value: health
                -
                  tag: disk-group
                  value: '{#NAME}'
              trigger_prototypes:
                -
                  uuid: 8deee88d964846598d5574d197694b17
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups["{#NAME}",status])=9'
                  name: 'Disk group [{#NAME}]: Disk group has damaged disks'
                  priority: AVERAGE
                  description: 'The disk group is online and fault tolerant, but some of it''s disks are damaged.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: c615e1bb1c824e7ba109b8a6580eb9b9
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups["{#NAME}",status])=8'
                  name: 'Disk group [{#NAME}]: Disk group has missing disks'
                  priority: AVERAGE
                  description: 'The disk group is online and fault tolerant, but some of it''s disks are missing.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: bead3a0bb95342b3b3ceae7becff99b8
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups["{#NAME}",status])=1'
                  name: 'Disk group [{#NAME}]: Disk group is fault tolerant with a down disk'
                  priority: AVERAGE
                  description: 'The disk group is online and fault tolerant, but some of it''s disks are down.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: c89466e00c2b40c1933fde60332a428a
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups["{#NAME}",status])=3'
                  name: 'Disk group [{#NAME}]: Disk group is offline'
                  priority: AVERAGE
                  description: 'Either the disk group is using offline initialization, or it''s disks are down and data may be lost.'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: 3dc5b3bc1128451491217639cf4e5115
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups["{#NAME}",status])=4'
                  name: 'Disk group [{#NAME}]: Disk group is quarantined critical'
                  priority: AVERAGE
                  description: 'The disk group is critical with at least one inaccessible disk. For example, two disks are inaccessible in a RAID 6 disk group or one disk is inaccessible for other fault-tolerant RAID levels. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: 6892c8c05331497ab37db2b2fe3673a1
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups["{#NAME}",status])=5'
                  name: 'Disk group [{#NAME}]: Disk group is quarantined offline'
                  priority: AVERAGE
                  description: 'The disk group is offline with multiple inaccessible disks causing user data to be incomplete, or is an NRAID or RAID 0 disk group.'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: 8a8bda977e11462a906fd200f1b67a72
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups["{#NAME}",status])=5'
                  name: 'Disk group [{#NAME}]: Disk group is quarantined unsupported'
                  priority: AVERAGE
                  description: 'The disk group contains data in a format that is not supported by this system. For example, this system does not support linear disk groups.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: 21f06dd8f8de49f58a64a638d24ff905
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups["{#NAME}",status])=6'
                  name: 'Disk group [{#NAME}]: Disk group is quarantined with an inaccessible disk'
                  priority: AVERAGE
                  description: 'The RAID6 disk group has one inaccessible disk. The disk group is fault tolerant but degraded. If the inaccessible disks come online or if after 60 seconds from being quarantined the disk group is QTCRor QTDN, the disk group is automatically dequarantined.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: 1914fede726744829b2e41392b957857
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups["{#NAME}",status])=7'
                  name: 'Disk group [{#NAME}]: Disk group is stopped'
                  priority: AVERAGE
                  description: 'The disk group is stopped.'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: a79a6cf86bd44f55a7859808f632bf48
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.disks.groups["{#NAME}",status])=2'
                  name: 'Disk group [{#NAME}]: Disk group status is critical'
                  priority: AVERAGE
                  description: 'The disk group is online but isn''t fault tolerant because some of its disks are down.'
                  tags:
                    -
                      tag: scope
                      value: performance
          graph_prototypes:
            -
              uuid: e1f7331965524670b8c44c0b0d8eb99b
              name: 'Disk group [{#NAME}]: Average response time'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.disks.groups.avg_rsp_time["{#NAME}",read]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.disks.groups.avg_rsp_time["{#NAME}",write]'
            -
              uuid: 1354b947316a46be8dc696c29f408a6b
              name: 'Disk group [{#NAME}]: Data transfer rate'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.disks.groups.data_transfer.reads["{#NAME}",rate]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.disks.groups.data_transfer.writes["{#NAME}",rate]'
            -
              uuid: f7f556011add4cd6b0fe8e4545c607a0
              name: 'Disk group [{#NAME}]: Disk operations rate'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.disks.groups.iops.read["{#NAME}",rate]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.disks.groups.iops.write["{#NAME}",rate]'
            -
              uuid: 495a941dc4ef45e8b60d6a94bb1fbdcd
              name: 'Disk group [{#NAME}]: Space utilization'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.disks.groups.space["{#NAME}",free]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.disks.groups.space["{#NAME}",total]'
          master_item:
            key: hpe.msa.data.get
          lld_macro_paths:
            -
              lld_macro: '{#NAME}'
              path: '$.[''name'']'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.[''disk-groups'']'
              error_handler: DISCARD_VALUE
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 6h
        -
          uuid: 5a97871f702348dca7a5378885087ea8
          name: 'Enclosures discovery'
          type: DEPENDENT
          key: hpe.msa.enclosures.discovery
          delay: '0'
          description: 'Discover enclosures.'
          item_prototypes:
            -
              uuid: 2e70432b3c324ecdb78ab77e5f9bbaf3
              name: 'Enclosure [{#DURABLE.ID}]: Health'
              type: DEPENDENT
              key: 'hpe.msa.enclosures["{#DURABLE.ID}",health]'
              delay: '0'
              history: 7d
              description: 'Enclosure health.'
              valuemap:
                name: Health
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''enclosures''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''health-numeric''].first()'
                  error_handler: CUSTOM_VALUE
                  error_handler_params: '4'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: enclosure
                -
                  tag: component
                  value: health
                -
                  tag: enclosure
                  value: '{#DURABLE.ID}'
              trigger_prototypes:
                -
                  uuid: d15d460b8c924f609f5cdd055060f8ce
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.enclosures["{#DURABLE.ID}",health])=1'
                  name: 'Enclosure [{#DURABLE.ID}]: Enclosure health is in degraded state'
                  priority: WARNING
                  description: 'Enclosure health is in degraded state.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: 7c2f6a7efbf245298c3ee0b137718dc8
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.enclosures["{#DURABLE.ID}",health])=2'
                  name: 'Enclosure [{#DURABLE.ID}]: Enclosure health is in fault state'
                  priority: AVERAGE
                  description: 'Enclosure health is in fault state.'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: 6732ced099d748daa5cbdf6d97580efd
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.enclosures["{#DURABLE.ID}",health])=3'
                  name: 'Enclosure [{#DURABLE.ID}]: Enclosure health is in unknown state'
                  priority: INFO
                  description: 'Enclosure health is in unknown state.'
                  tags:
                    -
                      tag: scope
                      value: notice
            -
              uuid: e3a1c5f6dee545a8a7d4b68768d060ab
              name: 'Enclosure [{#DURABLE.ID}]: Midplane serial number'
              type: DEPENDENT
              key: 'hpe.msa.enclosures["{#DURABLE.ID}",midplane_serial_number]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: 'Midplane serial number.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''enclosures''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''midplane-serial-number''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: enclosure
                -
                  tag: enclosure
                  value: '{#DURABLE.ID}'
            -
              uuid: 1dcecf03b9814aac9749badf800e4717
              name: 'Enclosure [{#DURABLE.ID}]: Model'
              type: DEPENDENT
              key: 'hpe.msa.enclosures["{#DURABLE.ID}",model]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: 'Enclosure model.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''enclosures''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''model''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: enclosure
                -
                  tag: enclosure
                  value: '{#DURABLE.ID}'
            -
              uuid: 89f11d7bf0e24a92bf4d4b4b1d86af58
              name: 'Enclosure [{#DURABLE.ID}]: Part number'
              type: DEPENDENT
              key: 'hpe.msa.enclosures["{#DURABLE.ID}",part_number]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: 'Enclosure part number.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''enclosures''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''part-number''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: enclosure
                -
                  tag: enclosure
                  value: '{#DURABLE.ID}'
            -
              uuid: b426baf09f1445eda59abd0e2ee6dd2c
              name: 'Enclosure [{#DURABLE.ID}]: Power'
              type: DEPENDENT
              key: 'hpe.msa.enclosures["{#DURABLE.ID}",power]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: W
              description: 'Enclosure power in watts.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''enclosures''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''enclosure-power''].first()'
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: enclosure
                -
                  tag: enclosure
                  value: '{#DURABLE.ID}'
            -
              uuid: 602b941548ab417bbe59f3f298bf6da9
              name: 'Enclosure [{#DURABLE.ID}]: Status'
              type: DEPENDENT
              key: 'hpe.msa.enclosures["{#DURABLE.ID}",status]'
              delay: '0'
              history: 7d
              description: 'Enclosure status.'
              valuemap:
                name: 'Enclosure status'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''enclosures''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''status-numeric''].first()'
                  error_handler: CUSTOM_VALUE
                  error_handler_params: '6'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: enclosure
                -
                  tag: component
                  value: health
                -
                  tag: enclosure
                  value: '{#DURABLE.ID}'
              trigger_prototypes:
                -
                  uuid: ef763c350b2e4d20bdecbe50703ec8dd
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.enclosures["{#DURABLE.ID}",status])=2'
                  name: 'Enclosure [{#DURABLE.ID}]: Enclosure has critical status'
                  priority: HIGH
                  description: 'Enclosure has critical status.'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: e3a7198f287e4600a0abfa929ee183de
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.enclosures["{#DURABLE.ID}",status])=6'
                  name: 'Enclosure [{#DURABLE.ID}]: Enclosure has unknown status'
                  priority: INFO
                  description: 'Enclosure has unknown status.'
                  tags:
                    -
                      tag: scope
                      value: notice
                -
                  uuid: 27ba4d2474604caaa2712222cf621294
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.enclosures["{#DURABLE.ID}",status])=3'
                  name: 'Enclosure [{#DURABLE.ID}]: Enclosure has warning status'
                  priority: WARNING
                  description: 'Enclosure has warning status.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: 53b61c7521d94161b063a5ea506b5466
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.enclosures["{#DURABLE.ID}",status])=7'
                  name: 'Enclosure [{#DURABLE.ID}]: Enclosure is unavailable'
                  priority: HIGH
                  description: 'Enclosure is unavailable.'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: 2218d1bf55aa4db0968dab804c0687e3
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.enclosures["{#DURABLE.ID}",status])=4'
                  name: 'Enclosure [{#DURABLE.ID}]: Enclosure is unrecoverable'
                  priority: HIGH
                  description: 'Enclosure is unrecoverable.'
                  tags:
                    -
                      tag: scope
                      value: availability
          master_item:
            key: hpe.msa.data.get
          lld_macro_paths:
            -
              lld_macro: '{#DURABLE.ID}'
              path: '$.[''durable-id'']'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.[''enclosures'']'
              error_handler: DISCARD_VALUE
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 6h
        -
          uuid: 9043169f17de44baa174459b560de4f5
          name: 'Fans discovery'
          type: DEPENDENT
          key: hpe.msa.fans.discovery
          delay: '0'
          description: 'Discover fans.'
          item_prototypes:
            -
              uuid: f9be9af4ff9047f1af946313df3e7165
              name: 'Fan [{#DURABLE.ID}]: Health'
              type: DEPENDENT
              key: 'hpe.msa.fans["{#DURABLE.ID}",health]'
              delay: '0'
              history: 7d
              description: 'Fan health status.'
              valuemap:
                name: Health
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''fans''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''health-numeric''].first()'
                  error_handler: CUSTOM_VALUE
                  error_handler_params: '4'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: fan
                -
                  tag: component
                  value: health
                -
                  tag: fan
                  value: '{#DURABLE.ID}'
              trigger_prototypes:
                -
                  uuid: 3ee1b1d0d6b34c8eba02480e9e4d5be2
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.fans["{#DURABLE.ID}",health])=1'
                  name: 'Fan [{#DURABLE.ID}]: Fan health is in degraded state'
                  priority: WARNING
                  description: 'Fan health is in degraded state.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: 3e3785f9915d46068ebe2eff21bac813
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.fans["{#DURABLE.ID}",health])=2'
                  name: 'Fan [{#DURABLE.ID}]: Fan health is in fault state'
                  priority: AVERAGE
                  description: 'Fan health is in fault state.'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: 4bf2e519b5484d338f997ea5dac462e0
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.fans["{#DURABLE.ID}",health])=3'
                  name: 'Fan [{#DURABLE.ID}]: Fan health is in unknown state'
                  priority: INFO
                  description: 'Fan health is in unknown state.'
                  tags:
                    -
                      tag: scope
                      value: notice
            -
              uuid: f028a919d56b45129f9ead200519adaa
              name: 'Fan [{#DURABLE.ID}]: Speed'
              type: DEPENDENT
              key: 'hpe.msa.fans["{#DURABLE.ID}",speed]'
              delay: '0'
              history: 7d
              units: '!RPM'
              description: 'Fan speed (revolutions per minute).'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''fans''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''speed''].first()'
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: fan
                -
                  tag: fan
                  value: '{#DURABLE.ID}'
            -
              uuid: df1d8af5df104afc829b403aec6efc96
              name: 'Fan [{#DURABLE.ID}]: Status'
              type: DEPENDENT
              key: 'hpe.msa.fans["{#DURABLE.ID}",status]'
              delay: '0'
              history: 7d
              description: 'Fan status.'
              valuemap:
                name: 'Fan status'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''fans''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''status-numeric''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: fan
                -
                  tag: component
                  value: health
                -
                  tag: fan
                  value: '{#DURABLE.ID}'
              trigger_prototypes:
                -
                  uuid: 183a1e1c4d444c9a8189035a2af22dc1
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.fans["{#DURABLE.ID}",status])=1'
                  name: 'Fan [{#DURABLE.ID}]: Fan has error status'
                  priority: AVERAGE
                  description: 'Fan has error status.'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: 4d9e3d1bb22444f981295df07f0d9c24
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.fans["{#DURABLE.ID}",status])=3'
                  name: 'Fan [{#DURABLE.ID}]: Fan is missing'
                  priority: INFO
                  description: 'Fan is missing.'
                  tags:
                    -
                      tag: scope
                      value: notice
                -
                  uuid: a6e4ea796b98432284a9fd9fff1d82f9
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.fans["{#DURABLE.ID}",status])=2'
                  name: 'Fan [{#DURABLE.ID}]: Fan is off'
                  priority: WARNING
                  description: 'Fan is off.'
                  tags:
                    -
                      tag: scope
                      value: availability
          graph_prototypes:
            -
              uuid: 1def9fd4627d4552bf34e8ce35f3cd46
              name: 'Fan [{#DURABLE.ID}]: Speed'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.fans["{#DURABLE.ID}",speed]'
          master_item:
            key: hpe.msa.data.get
          lld_macro_paths:
            -
              lld_macro: '{#DURABLE.ID}'
              path: '$.[''durable-id'']'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.[''fans'']'
              error_handler: DISCARD_VALUE
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 6h
        -
          uuid: 30f91e8f7fba489aa649759219efa67c
          name: 'FRU discovery'
          type: DEPENDENT
          key: hpe.msa.frus.discovery
          delay: '0'
          filter:
            conditions:
              -
                macro: '{#TYPE}'
                value: ^(POWER_SUPPLY|RAID_IOM|CHASSIS_MIDPLANE)$
                operator: NOT_MATCHES_REGEX
                formulaid: A
          description: 'Discover FRU.'
          item_prototypes:
            -
              uuid: 8cbf62d188084ea4a72eaa37987d8d8e
              name: 'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Part number'
              type: DEPENDENT
              key: 'hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",part_number]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: '{#DESCRIPTION}. Part number of the FRU.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''frus''][?(@[''name''] == "{#TYPE}" && @[''fru-location''] == "{#LOCATION}")].[''part-number''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: fru
                -
                  tag: fru
                  value: 'Enclosure {#ENCLOSURE.ID}: {#LOCATION}'
            -
              uuid: 49c52c2c5b174c78a60756eb7a9e34f1
              name: 'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Serial number'
              type: DEPENDENT
              key: 'hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",serial_number]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: '{#DESCRIPTION}. FRU serial number.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''frus''][?(@[''name''] == "{#TYPE}" && @[''fru-location''] == "{#LOCATION}")].[''serial-number''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: fru
                -
                  tag: fru
                  value: 'Enclosure {#ENCLOSURE.ID}: {#LOCATION}'
            -
              uuid: d72f7be111ae4335b92d6a1d0ad9e3ee
              name: 'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: Status'
              type: DEPENDENT
              key: 'hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",status]'
              delay: '0'
              history: 7d
              description: |
                {#DESCRIPTION}. FRU status:
                
                Absent: The FRU is not present.
                Fault: The FRU's health is Degraded or Fault.
                Invalid data: The FRU ID data is invalid. The FRU's EEPROM is improperly programmed.
                OK: The FRU is operating normally.
                Power off: The FRU is powered off.
              valuemap:
                name: 'FRU status'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''frus''][?(@[''name''] == "{#TYPE}" && @[''fru-location''] == "{#LOCATION}")].[''fru-status-numeric''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: fru
                -
                  tag: component
                  value: health
                -
                  tag: fru
                  value: 'Enclosure {#ENCLOSURE.ID}: {#LOCATION}'
              trigger_prototypes:
                -
                  uuid: 2533eb2e4344494d9ec72629dab7b1a8
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",status])=0'
                  name: 'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: FRU ID data is invalid'
                  priority: WARNING
                  description: 'The FRU ID data is invalid. The FRU''s EEPROM is improperly programmed.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: 7a994469e45f467c8582c24258d0eb75
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.frus["{#ENCLOSURE.ID}:{#LOCATION}",status])=1'
                  name: 'FRU [{#ENCLOSURE.ID}: {#LOCATION}]: FRU status is Degraded or Fault'
                  priority: AVERAGE
                  description: 'FRU status is Degraded or Fault.'
                  tags:
                    -
                      tag: scope
                      value: availability
          master_item:
            key: hpe.msa.data.get
          lld_macro_paths:
            -
              lld_macro: '{#DESCRIPTION}'
              path: '$.[''description'']'
            -
              lld_macro: '{#ENCLOSURE.ID}'
              path: '$.[''enclosure-id'']'
            -
              lld_macro: '{#LOCATION}'
              path: '$.[''fru-location'']'
            -
              lld_macro: '{#TYPE}'
              path: '$.[''name'']'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.[''frus'']'
              error_handler: DISCARD_VALUE
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 6h
        -
          uuid: 178b94ddcab947ffb1614622c2b7e08e
          name: 'Pools discovery'
          type: DEPENDENT
          key: hpe.msa.pools.discovery
          delay: '0'
          description: 'Discover pools.'
          item_prototypes:
            -
              uuid: 09d67b3577af4e21a7bbd09078d705cd
              name: 'Pool [{#NAME}]: Blocks available'
              type: DEPENDENT
              key: 'hpe.msa.pools.blocks["{#NAME}",available]'
              delay: '0'
              history: 7d
              description: 'Available space in blocks.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''pools''][?(@[''name''] == "{#NAME}")].[''total-avail-numeric''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: pool
                -
                  tag: pool
                  value: '{#NAME}'
            -
              uuid: 076921fcd93941b09b79c7d44873417d
              name: 'Pool [{#NAME}]: Blocks size'
              type: DEPENDENT
              key: 'hpe.msa.pools.blocks["{#NAME}",size]'
              delay: '0'
              history: 7d
              units: B
              description: 'The size of a block, in bytes.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''pools''][?(@[''name''] == "{#NAME}")].[''blocksize''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: pool
                -
                  tag: pool
                  value: '{#NAME}'
            -
              uuid: fd29559e5bb3455b8b4cfe56f75f54b2
              name: 'Pool [{#NAME}]: Blocks total'
              type: DEPENDENT
              key: 'hpe.msa.pools.blocks["{#NAME}",total]'
              delay: '0'
              history: 7d
              description: 'Total space in blocks.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''pools''][?(@[''name''] == "{#NAME}")].[''total-size-numeric''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: pool
                -
                  tag: pool
                  value: '{#NAME}'
            -
              uuid: d99eeba76b354e73b0118b46402d93bf
              name: 'Pool [{#NAME}]: Space free'
              type: CALCULATED
              key: 'hpe.msa.pools.space["{#NAME}",free]'
              history: 7d
              units: B
              params: 'last(//hpe.msa.pools.blocks["{#NAME}",size])*last(//hpe.msa.pools.blocks["{#NAME}",available])'
              description: 'The free space in the pool.'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              tags:
                -
                  tag: component
                  value: pool
                -
                  tag: pool
                  value: '{#NAME}'
            -
              uuid: 9fce545fbe724da28a13b8ca8759c37d
              name: 'Pool [{#NAME}]: Space total'
              type: CALCULATED
              key: 'hpe.msa.pools.space["{#NAME}",total]'
              history: 7d
              units: B
              params: 'last(//hpe.msa.pools.blocks["{#NAME}",size])*last(//hpe.msa.pools.blocks["{#NAME}",total])'
              description: 'The capacity of the pool.'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              tags:
                -
                  tag: component
                  value: pool
                -
                  tag: pool
                  value: '{#NAME}'
            -
              uuid: ad9bdb342a494d82a36e42e75a3bbf3e
              name: 'Pool [{#NAME}]: Space utilization'
              type: CALCULATED
              key: 'hpe.msa.pools.space["{#NAME}",util]'
              history: 7d
              value_type: FLOAT
              units: '%'
              params: 'last(//hpe.msa.pools.space["{#NAME}",free])/last(//hpe.msa.pools.space["{#NAME}",total])*100'
              description: 'The space utilization percentage in the pool.'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              tags:
                -
                  tag: component
                  value: pool
                -
                  tag: pool
                  value: '{#NAME}'
              trigger_prototypes:
                -
                  uuid: c73b4a77e94a43f5951f6a541d65637e
                  expression: 'min(/HPE MSA 2060 Storage by HTTP/hpe.msa.pools.space["{#NAME}",util],5m)>{$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}'
                  name: 'Pool [{#NAME}]: Pool space is critically low'
                  event_name: 'Pool [{#NAME}]: Pool space is critically low (used > {$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}%)'
                  priority: AVERAGE
                  description: 'Pool is running low on free space (less than {$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}% available).'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: c7644beb62bc40e99d6045af6d4bc16f
                  expression: 'min(/HPE MSA 2060 Storage by HTTP/hpe.msa.pools.space["{#NAME}",util],5m)>{$HPE.MSA.POOL.PUSED.MAX.WARN:"{#NAME}"}'
                  name: 'Pool [{#NAME}]: Pool space is low'
                  event_name: 'Pool [{#NAME}]: Pool space is low (used > {$HPE.MSA.POOL.PUSED.MAX.WARN:"{#NAME}"}%)'
                  priority: WARNING
                  description: 'Pool is running low on free space (less than {$HPE.MSA.POOL.PUSED.MAX.WARN:"{#NAME}"}% available).'
                  dependencies:
                    -
                      name: 'Pool [{#NAME}]: Pool space is critically low'
                      expression: 'min(/HPE MSA 2060 Storage by HTTP/hpe.msa.pools.space["{#NAME}",util],5m)>{$HPE.MSA.POOL.PUSED.MAX.CRIT:"{#NAME}"}'
                  tags:
                    -
                      tag: scope
                      value: performance
            -
              uuid: 15096639cae947d383a506f0332ff6d3
              name: 'Pool [{#NAME}]: Health'
              type: DEPENDENT
              key: 'hpe.msa.pools["{#NAME}",health]'
              delay: '0'
              history: 7d
              description: 'Pool health.'
              valuemap:
                name: Health
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''pools''][?(@[''name''] == "{#NAME}")].[''health-numeric''].first()'
                  error_handler: CUSTOM_VALUE
                  error_handler_params: '4'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: health
                -
                  tag: component
                  value: pool
                -
                  tag: pool
                  value: '{#NAME}'
              trigger_prototypes:
                -
                  uuid: 20723e93add44447a5cab3c8cc4849a6
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.pools["{#NAME}",health])=1'
                  name: 'Pool [{#NAME}]: Pool health is in degraded state'
                  priority: WARNING
                  description: 'Pool health is in degraded state.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: 1881bd0efca04c58a56effb8e232e734
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.pools["{#NAME}",health])=2'
                  name: 'Pool [{#NAME}]: Pool health is in fault state'
                  priority: AVERAGE
                  description: 'Pool health is in fault state.'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: 62db05047b5a4b8797eee5667bb3bdf4
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.pools["{#NAME}",health])=3'
                  name: 'Pool [{#NAME}]: Pool health is in unknown state'
                  priority: INFO
                  description: 'Pool [{#NAME}] health is in unknown state.'
                  tags:
                    -
                      tag: scope
                      value: notice
          graph_prototypes:
            -
              uuid: 93151c5760fb405498d1df049185ffe7
              name: 'Pool [{#NAME}]: Space utilization'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.pools.space["{#NAME}",free]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.pools.space["{#NAME}",total]'
          master_item:
            key: hpe.msa.data.get
          lld_macro_paths:
            -
              lld_macro: '{#NAME}'
              path: '$.[''name'']'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.[''pools'']'
              error_handler: DISCARD_VALUE
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 6h
        -
          uuid: bed52618dbc6498f99ddeedc78c0cdad
          name: 'Ports discovery'
          type: DEPENDENT
          key: hpe.msa.ports.discovery
          delay: '0'
          description: 'Discover ports.'
          item_prototypes:
            -
              uuid: cf4f9aaf55e6435d949d3b5074b9f37f
              name: 'Port [{#NAME}]: Health'
              type: DEPENDENT
              key: 'hpe.msa.ports["{#NAME}",health]'
              delay: '0'
              history: 7d
              description: 'Port health status.'
              valuemap:
                name: Health
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''ports''][?(@[''port''] == "{#NAME}")].[''health-numeric''].first()'
                  error_handler: CUSTOM_VALUE
                  error_handler_params: '4'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: health
                -
                  tag: component
                  value: port
                -
                  tag: port
                  value: '{#NAME}'
              trigger_prototypes:
                -
                  uuid: 9775011d59a846669087e6c90c4a011a
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.ports["{#NAME}",health])=1'
                  name: 'Port [{#NAME}]: Port health is in degraded state'
                  priority: WARNING
                  description: 'Port health is in degraded state.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: a5dec537528f42e0948ea15f1a290f26
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.ports["{#NAME}",health])=2'
                  name: 'Port [{#NAME}]: Port health is in fault state'
                  priority: AVERAGE
                  description: 'Port health is in fault state.'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: 7025a0e6c93e4731be966c2a9e774581
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.ports["{#NAME}",health])=3'
                  name: 'Port [{#NAME}]: Port health is in unknown state'
                  priority: INFO
                  description: 'Port health is in unknown state.'
                  tags:
                    -
                      tag: scope
                      value: notice
            -
              uuid: cab1cd26264d408998c5ea8737571ed4
              name: 'Port [{#NAME}]: Status'
              type: DEPENDENT
              key: 'hpe.msa.ports["{#NAME}",status]'
              delay: '0'
              history: 7d
              description: 'Port status.'
              valuemap:
                name: Status
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''ports''][?(@[''port''] == "{#NAME}")].[''status-numeric''].first()'
                  error_handler: CUSTOM_VALUE
                  error_handler_params: '4'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: health
                -
                  tag: component
                  value: port
                -
                  tag: port
                  value: '{#NAME}'
              trigger_prototypes:
                -
                  uuid: c1d2f824a3d4470abb6817753b1d4047
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.ports["{#NAME}",status])=2'
                  name: 'Port [{#NAME}]: Port has error status'
                  priority: AVERAGE
                  description: 'Port has error status.'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: 6083cdfcb59848a6b5249147155996c2
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.ports["{#NAME}",status])=4'
                  name: 'Port [{#NAME}]: Port has unknown status'
                  priority: INFO
                  description: 'Port has unknown status.'
                  tags:
                    -
                      tag: scope
                      value: notice
                -
                  uuid: dd32b960ce1544d880d94b2da4dba03e
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.ports["{#NAME}",status])=1'
                  name: 'Port [{#NAME}]: Port has warning status'
                  priority: WARNING
                  description: 'Port has warning status.'
                  tags:
                    -
                      tag: scope
                      value: performance
            -
              uuid: 32ad6655625e408a9dd577624afbfa6a
              name: 'Port [{#NAME}]: Type'
              type: DEPENDENT
              key: 'hpe.msa.ports["{#NAME}",type]'
              delay: '0'
              history: 7d
              description: 'Port type.'
              valuemap:
                name: 'Port type'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''ports''][?(@[''port''] == "{#NAME}")].[''port-type-numeric''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: port
                -
                  tag: port
                  value: '{#NAME}'
          master_item:
            key: hpe.msa.data.get
          lld_macro_paths:
            -
              lld_macro: '{#NAME}'
              path: '$.[''port'']'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.[''ports'']'
              error_handler: DISCARD_VALUE
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 6h
        -
          uuid: 1561695bd2174eada622a0d90ee1c3df
          name: 'Power supplies discovery'
          type: DEPENDENT
          key: hpe.msa.power_supplies.discovery
          delay: '0'
          description: 'Discover power supplies.'
          item_prototypes:
            -
              uuid: 993bc2db3b444dc5bc37794985e63ea9
              name: 'Power supply [{#DURABLE.ID}]: Health'
              type: DEPENDENT
              key: 'hpe.msa.power_supplies["{#DURABLE.ID}",health]'
              delay: '0'
              history: 7d
              description: 'Power supply health status.'
              valuemap:
                name: Health
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''power-supplies''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''health-numeric''].first()'
                  error_handler: CUSTOM_VALUE
                  error_handler_params: '4'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: health
                -
                  tag: component
                  value: power-supply
                -
                  tag: power-supply
                  value: '{#DURABLE.ID}'
              trigger_prototypes:
                -
                  uuid: 1b512fda735440b5839a63fd26c19535
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.power_supplies["{#DURABLE.ID}",health])=1'
                  name: 'Power supply [{#DURABLE.ID}]: Power supply health is in degraded state'
                  priority: WARNING
                  description: 'Power supply health is in degraded state.'
                  tags:
                    -
                      tag: scope
                      value: performance
                -
                  uuid: b75fb541ae0e43cc9cdb86e07dc3e394
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.power_supplies["{#DURABLE.ID}",health])=2'
                  name: 'Power supply [{#DURABLE.ID}]: Power supply health is in fault state'
                  priority: AVERAGE
                  description: 'Power supply health is in fault state.'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: 555ee9ef33b54d029df2f17d5f899539
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.power_supplies["{#DURABLE.ID}",health])=3'
                  name: 'Power supply [{#DURABLE.ID}]: Power supply health is in unknown state'
                  priority: INFO
                  description: 'Power supply health is in unknown state.'
                  tags:
                    -
                      tag: scope
                      value: notice
            -
              uuid: efae55cfdd1e4021a623e2128f988611
              name: 'Power supply [{#DURABLE.ID}]: Part number'
              type: DEPENDENT
              key: 'hpe.msa.power_supplies["{#DURABLE.ID}",part_number]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: 'Power supply part number.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''power-supplies''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''part-number''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: power-supply
                -
                  tag: power-supply
                  value: '{#DURABLE.ID}'
            -
              uuid: 6716c3d0177247fe8a35fa1eb206a54f
              name: 'Power supply [{#DURABLE.ID}]: Serial number'
              type: DEPENDENT
              key: 'hpe.msa.power_supplies["{#DURABLE.ID}",serial_number]'
              delay: '0'
              history: 7d
              trends: '0'
              value_type: CHAR
              description: 'Power supply serial number.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''power-supplies''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''serial-number''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1d
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: power-supply
                -
                  tag: power-supply
                  value: '{#DURABLE.ID}'
            -
              uuid: a3ff6ab5576246fe9e794e01df4fe1b9
              name: 'Power supply [{#DURABLE.ID}]: Status'
              type: DEPENDENT
              key: 'hpe.msa.power_supplies["{#DURABLE.ID}",status]'
              delay: '0'
              history: 7d
              description: 'Power supply status.'
              valuemap:
                name: Status
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''power-supplies''][?(@[''durable-id''] == "{#DURABLE.ID}")].[''status-numeric''].first()'
                  error_handler: CUSTOM_VALUE
                  error_handler_params: '4'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: health
                -
                  tag: component
                  value: power-supply
                -
                  tag: power-supply
                  value: '{#DURABLE.ID}'
              trigger_prototypes:
                -
                  uuid: 49c9d2d61c45476da5564299b2eebdee
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.power_supplies["{#DURABLE.ID}",status])=2'
                  name: 'Power supply [{#DURABLE.ID}]: Power supply has error status'
                  priority: AVERAGE
                  description: 'Power supply has error status.'
                  tags:
                    -
                      tag: scope
                      value: availability
                -
                  uuid: d6cbaeb5aab84e5eb487af4bf319d640
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.power_supplies["{#DURABLE.ID}",status])=4'
                  name: 'Power supply [{#DURABLE.ID}]: Power supply has unknown status'
                  priority: INFO
                  description: 'Power supply has unknown status.'
                  tags:
                    -
                      tag: scope
                      value: notice
                -
                  uuid: b7e85e7a6c254aba930d7704c58adf47
                  expression: 'last(/HPE MSA 2060 Storage by HTTP/hpe.msa.power_supplies["{#DURABLE.ID}",status])=1'
                  name: 'Power supply [{#DURABLE.ID}]: Power supply has warning status'
                  priority: WARNING
                  description: 'Power supply has warning status.'
                  tags:
                    -
                      tag: scope
                      value: performance
          master_item:
            key: hpe.msa.data.get
          lld_macro_paths:
            -
              lld_macro: '{#DURABLE.ID}'
              path: '$.[''durable-id'']'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.[''power-supplies'']'
              error_handler: DISCARD_VALUE
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 6h
        -
          uuid: b132a010c8a84da79eee1ba725301be9
          name: 'Volumes discovery'
          type: DEPENDENT
          key: hpe.msa.volumes.discovery
          delay: '0'
          description: 'Discover volumes.'
          item_prototypes:
            -
              uuid: cc6c4bddc05243c7a90082a3450a76a7
              name: 'Volume [{#NAME}]: Blocks allocated'
              type: DEPENDENT
              key: 'hpe.msa.volumes.blocks["{#NAME}",allocated]'
              delay: '0'
              history: 7d
              description: 'The amount of blocks currently allocated to the volume.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''volumes''][?(@[''volume-name''] == "{#NAME}")].[''allocated-size-numeric''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: volume
                -
                  tag: volume
                  value: '{#NAME}'
            -
              uuid: 900d94185fa9480590915bbafb8ccda0
              name: 'Volume [{#NAME}]: Blocks size'
              type: DEPENDENT
              key: 'hpe.msa.volumes.blocks["{#NAME}",size]'
              delay: '0'
              history: 7d
              units: B
              description: 'The size of a block, in bytes.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''volumes''][?(@[''volume-name''] == "{#NAME}")].[''blocksize''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: volume
                -
                  tag: volume
                  value: '{#NAME}'
            -
              uuid: 5cdae787c8b6485899f8f4e8c3cf6b71
              name: 'Volume [{#NAME}]: Blocks total'
              type: DEPENDENT
              key: 'hpe.msa.volumes.blocks["{#NAME}",total]'
              delay: '0'
              history: 7d
              description: 'Total space in blocks.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''volumes''][?(@[''volume-name''] == "{#NAME}")].[''blocks''].first()'
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: volume
                -
                  tag: volume
                  value: '{#NAME}'
            -
              uuid: b7615bb6a3434303a2bb4751e7aed458
              name: 'Volume [{#NAME}]: Cache: Read hits, rate'
              type: DEPENDENT
              key: 'hpe.msa.volumes.cache.read.hits["{#NAME}",rate]'
              delay: '0'
              history: 7d
              description: 'For the controller that owns the volume, the number of times the block to be read is found in cache per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''volume-statistics''][?(@[''volume-name''] == "{#NAME}")].[''read-cache-hits''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: volume
                -
                  tag: volume
                  value: '{#NAME}'
            -
              uuid: 655e319736804d8db4b6988f7205c5e3
              name: 'Volume [{#NAME}]: Cache: Read misses, rate'
              type: DEPENDENT
              key: 'hpe.msa.volumes.cache.read.misses["{#NAME}",rate]'
              delay: '0'
              history: 7d
              description: 'For the controller that owns the volume, the number of times the block to be read is not found in cache per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''volume-statistics''][?(@[''volume-name''] == "{#NAME}")].[''read-cache-misses''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: volume
                -
                  tag: volume
                  value: '{#NAME}'
            -
              uuid: 849ef4370f4b46ea894d2a2e1e4a3ea4
              name: 'Volume [{#NAME}]: Cache: Write hits, rate'
              type: DEPENDENT
              key: 'hpe.msa.volumes.cache.write.hits["{#NAME}",rate]'
              delay: '0'
              history: 7d
              description: 'For the controller that owns the volume, the number of times the block written to is found in cache per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''volume-statistics''][?(@[''volume-name''] == "{#NAME}")].[''write-cache-hits''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: volume
                -
                  tag: volume
                  value: '{#NAME}'
            -
              uuid: 593f4fce31f24e9b99c9bc69d2ead38b
              name: 'Volume [{#NAME}]: Cache: Write misses, rate'
              type: DEPENDENT
              key: 'hpe.msa.volumes.cache.write.misses["{#NAME}",rate]'
              delay: '0'
              history: 7d
              description: 'For the controller that owns the volume, the number of times the block written to is not found in cache per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''volume-statistics''][?(@[''volume-name''] == "{#NAME}")].[''write-cache-misses''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: volume
                -
                  tag: volume
                  value: '{#NAME}'
            -
              uuid: 1a810fe32e464e8cbcdfc61769bc7869
              name: 'Volume [{#NAME}]: Data transfer rate: Reads'
              type: DEPENDENT
              key: 'hpe.msa.volumes.data_transfer.reads["{#NAME}",rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: Bps
              description: 'The data read rate, in bytes per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''volume-statistics''][?(@[''volume-name''] == "{#NAME}")].[''data-read-numeric''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: volume
                -
                  tag: volume
                  value: '{#NAME}'
            -
              uuid: 4dd1d47335a9425a94ffcee4c8ed2216
              name: 'Volume [{#NAME}]: Data transfer rate: Total'
              type: DEPENDENT
              key: 'hpe.msa.volumes.data_transfer.total["{#NAME}",rate]'
              delay: '0'
              history: 7d
              units: Bps
              description: 'The data transfer rate, in bytes per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''volume-statistics''][?(@[''volume-name''] == "{#NAME}")].[''bytes-per-second-numeric''].first()'
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: volume
                -
                  tag: volume
                  value: '{#NAME}'
            -
              uuid: d5198b50ba8f4db1aa160d0208540a74
              name: 'Volume [{#NAME}]: Data transfer rate: Writes'
              type: DEPENDENT
              key: 'hpe.msa.volumes.data_transfer.writes["{#NAME}",rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: Bps
              description: 'The data write rate, in bytes per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''volume-statistics''][?(@[''volume-name''] == "{#NAME}")].[''data-written-numeric''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: volume
                -
                  tag: volume
                  value: '{#NAME}'
            -
              uuid: 00f5c3f9d19d450e999c389ba297fb41
              name: 'Volume [{#NAME}]: IOPS, read rate'
              type: DEPENDENT
              key: 'hpe.msa.volumes.iops.read["{#NAME}",rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: '!r/s'
              description: 'Number of read operations per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''volume-statistics''][?(@[''volume-name''] == "{#NAME}")].[''number-of-reads''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: volume
                -
                  tag: volume
                  value: '{#NAME}'
            -
              uuid: b925122eda0c4c1380b843bc764ed122
              name: 'Volume [{#NAME}]: IOPS, total rate'
              type: DEPENDENT
              key: 'hpe.msa.volumes.iops.total["{#NAME}",rate]'
              delay: '0'
              history: 7d
              units: '!iops'
              description: 'Total input/output operations per second, calculated over the interval since these statistics were last requested or reset. This value will be zero if it has not been requested or reset since a controller restart.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''volume-statistics''][?(@[''volume-name''] == "{#NAME}")].[''iops''].first()'
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: volume
                -
                  tag: volume
                  value: '{#NAME}'
            -
              uuid: a9fcc1525204489cad52cf4e88518064
              name: 'Volume [{#NAME}]: IOPS, write rate'
              type: DEPENDENT
              key: 'hpe.msa.volumes.iops.write["{#NAME}",rate]'
              delay: '0'
              history: 7d
              value_type: FLOAT
              units: '!w/s'
              description: 'Number of write operations per second.'
              preprocessing:
                -
                  type: JSONPATH
                  parameters:
                    - '$.[''volume-statistics''][?(@[''volume-name''] == "{#NAME}")].[''number-of-writes''].first()'
                -
                  type: CHANGE_PER_SECOND
                  parameters:
                    - ''
              master_item:
                key: hpe.msa.data.get
              tags:
                -
                  tag: component
                  value: volume
                -
                  tag: volume
                  value: '{#NAME}'
            -
              uuid: 860855a80c554e0685d4d4125342b547
              name: 'Volume [{#NAME}]: Space allocated'
              type: CALCULATED
              key: 'hpe.msa.volumes.space["{#NAME}",allocated]'
              history: 7d
              units: B
              params: 'last(//hpe.msa.volumes.blocks["{#NAME}",size])*last(//hpe.msa.volumes.blocks["{#NAME}",allocated])'
              description: 'The amount of space currently allocated to the volume.'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              tags:
                -
                  tag: component
                  value: volume
                -
                  tag: volume
                  value: '{#NAME}'
            -
              uuid: eb09d8791bb84c8aadf5cdcac3d76413
              name: 'Volume [{#NAME}]: Space total'
              type: CALCULATED
              key: 'hpe.msa.volumes.space["{#NAME}",total]'
              history: 7d
              units: B
              params: 'last(//hpe.msa.volumes.blocks["{#NAME}",size])*last(//hpe.msa.volumes.blocks["{#NAME}",total])'
              description: 'The capacity of the volume.'
              preprocessing:
                -
                  type: DISCARD_UNCHANGED_HEARTBEAT
                  parameters:
                    - 1h
              tags:
                -
                  tag: component
                  value: volume
                -
                  tag: volume
                  value: '{#NAME}'
          graph_prototypes:
            -
              uuid: 8905b826b774473991f74b927716322e
              name: 'Volume [{#NAME}]: Cache usage'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.volumes.cache.read.hits["{#NAME}",rate]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.volumes.cache.read.misses["{#NAME}",rate]'
                -
                  sortorder: '2'
                  color: F63100
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.volumes.cache.write.hits["{#NAME}",rate]'
                -
                  sortorder: '3'
                  color: A54F10
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.volumes.cache.write.misses["{#NAME}",rate]'
            -
              uuid: 1bd9df7bab9c4f3a978810c82cc61f42
              name: 'Volume [{#NAME}]: Data transfer rate'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.volumes.data_transfer.reads["{#NAME}",rate]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.volumes.data_transfer.writes["{#NAME}",rate]'
            -
              uuid: 24dfc70c5d724f13ac1cec6b229c7fe9
              name: 'Volume [{#NAME}]: Disk operations rate'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.volumes.iops.read["{#NAME}",rate]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.volumes.iops.write["{#NAME}",rate]'
            -
              uuid: 5a316cdf8c6f42acb3cb7a158861145a
              name: 'Volume [{#NAME}]: Space utilization'
              graph_items:
                -
                  color: 1A7C11
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.volumes.space["{#NAME}",allocated]'
                -
                  sortorder: '1'
                  color: 2774A4
                  item:
                    host: 'HPE MSA 2060 Storage by HTTP'
                    key: 'hpe.msa.volumes.space["{#NAME}",total]'
          master_item:
            key: hpe.msa.data.get
          lld_macro_paths:
            -
              lld_macro: '{#NAME}'
              path: '$.[''volume-name'']'
          preprocessing:
            -
              type: JSONPATH
              parameters:
                - '$.[''volumes'']'
              error_handler: DISCARD_VALUE
            -
              type: DISCARD_UNCHANGED_HEARTBEAT
              parameters:
                - 6h
      tags:
        -
          tag: class
          value: storage
        -
          tag: target
          value: hpe
        -
          tag: target
          value: msa-2060
      macros:
        -
          macro: '{$HPE.MSA.API.PASSWORD}'
          type: SECRET_TEXT
          description: 'Specify password for API.'
        -
          macro: '{$HPE.MSA.API.PORT}'
          value: '443'
          description: 'Connection port for API.'
        -
          macro: '{$HPE.MSA.API.SCHEME}'
          value: https
          description: 'Connection scheme timeout for API.'
        -
          macro: '{$HPE.MSA.API.USERNAME}'
          value: zabbix
          description: 'Specify user name for API.'
        -
          macro: '{$HPE.MSA.CONTROLLER.CPU.UTIL.CRIT}'
          value: '90'
          description: 'The critical threshold of the CPU utilization in %.'
        -
          macro: '{$HPE.MSA.DATA.TIMEOUT}'
          value: 30s
          description: 'Response timeout for API.'
        -
          macro: '{$HPE.MSA.DISKS.GROUP.PUSED.MAX.CRIT}'
          value: '90'
          description: 'The critical threshold of the disk group space utilization in percent.'
        -
          macro: '{$HPE.MSA.DISKS.GROUP.PUSED.MAX.WARN}'
          value: '80'
          description: 'The warning threshold of the disk group space utilization in percent.'
        -
          macro: '{$HPE.MSA.POOL.PUSED.MAX.CRIT}'
          value: '90'
          description: 'The critical threshold of the pool space utilization in percent.'
        -
          macro: '{$HPE.MSA.POOL.PUSED.MAX.WARN}'
          value: '80'
          description: 'The warning threshold of the pool space utilization in percent.'
      valuemaps:
        -
          uuid: f7af1259f3c54a5faa040c743d386d1d
          name: 'Controller status'
          mappings:
            -
              value: '0'
              newvalue: Operational
            -
              value: '1'
              newvalue: Down
            -
              value: '2'
              newvalue: 'Not Installed'
        -
          uuid: 6bb0dfe12f4249ef9f4b804885c70c60
          name: 'Disk group status'
          mappings:
            -
              value: '0'
              newvalue: FTOL
            -
              value: '1'
              newvalue: FTDN
            -
              value: '2'
              newvalue: CRIT
            -
              value: '3'
              newvalue: OFFL
            -
              value: '4'
              newvalue: QTCR
            -
              value: '5'
              newvalue: QTOF
            -
              value: '6'
              newvalue: QTDN
            -
              value: '7'
              newvalue: STOP
            -
              value: '8'
              newvalue: MSNG
            -
              value: '9'
              newvalue: DMGD
            -
              value: '11'
              newvalue: QTDN
            -
              value: '250'
              newvalue: UP
        -
          uuid: de0e7d801a9b42cf80fe4c71c0eed982
          name: 'Disk temperature status'
          mappings:
            -
              value: '1'
              newvalue: OK
            -
              value: '2'
              newvalue: Critical
            -
              value: '3'
              newvalue: Warning
            -
              value: '4'
              newvalue: Unknown
        -
          uuid: 10547e62c7bb4581b347bc523ef03582
          name: 'Disk type'
          mappings:
            -
              value: '4'
              newvalue: SAS
            -
              value: '8'
              newvalue: 'SSD SAS'
            -
              value: '11'
              newvalue: 'SAS MDL'
        -
          uuid: 37317f19f7d74b8fa61dd1b28e6f4d42
          name: 'Enclosure status'
          mappings:
            -
              value: '0'
              newvalue: Unsupported
            -
              value: '1'
              newvalue: OK
            -
              value: '2'
              newvalue: Critical
            -
              value: '3'
              newvalue: Warning
            -
              value: '4'
              newvalue: Unrecoverable
            -
              value: '5'
              newvalue: 'Not installed'
            -
              value: '6'
              newvalue: Unknown
            -
              value: '7'
              newvalue: Unavailable
        -
          uuid: 1acc14c82fba4c3daa207d0ce9b702f2
          name: 'Fan status'
          mappings:
            -
              value: '0'
              newvalue: Up
            -
              value: '1'
              newvalue: Error
            -
              value: '2'
              newvalue: 'Off'
            -
              value: '3'
              newvalue: Missing
        -
          uuid: 284ed898fb7c46ecb8d719646445264c
          name: 'FRU status'
          mappings:
            -
              value: '0'
              newvalue: 'Invalid data'
            -
              value: '1'
              newvalue: Fault
            -
              value: '2'
              newvalue: Absent
            -
              value: '3'
              newvalue: 'Power off'
            -
              value: '4'
              newvalue: OK
        -
          uuid: cb8c3d00dfd4456181765b8b350ea4d2
          name: Health
          mappings:
            -
              value: '0'
              newvalue: OK
            -
              value: '1'
              newvalue: Degraded
            -
              value: '2'
              newvalue: Fault
            -
              value: '3'
              newvalue: Unknown
            -
              value: '4'
              newvalue: N/A
        -
          uuid: ec101e7d212747779ed56ef9dbf72e2b
          name: 'Port type'
          mappings:
            -
              value: '0'
              newvalue: Unknown
            -
              value: '6'
              newvalue: FC
            -
              value: '8'
              newvalue: SAS
            -
              value: '9'
              newvalue: iSCSI
        -
          uuid: 171c9abf20514b0fb78d532bd987881b
          name: 'RAID type'
          mappings:
            -
              value: '0'
              newvalue: RAID0
            -
              value: '1'
              newvalue: RAID1
            -
              value: '2'
              newvalue: MSA-DP+
            -
              value: '5'
              newvalue: RAID5
            -
              value: '6'
              newvalue: NRAID
            -
              value: '10'
              newvalue: RAID10
            -
              value: '11'
              newvalue: RAID6
        -
          uuid: 402b0dacf14a4436b0d3cfe237bf1e86
          name: Status
          mappings:
            -
              value: '0'
              newvalue: Up
            -
              value: '1'
              newvalue: Warning
            -
              value: '2'
              newvalue: Error
            -
              value: '3'
              newvalue: 'Not present'
            -
              value: '4'
              newvalue: Unknown
            -
              value: '6'
              newvalue: Disconnected