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

template_server_dell_idrac_snmp.xml « dell_idrac_snmp « server « templates - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f967ee68d2840de1bcf87fde7a2a9c30764231c7 (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
<?xml version="1.0" encoding="UTF-8"?>
<zabbix_export>
   <version>5.0</version>
   <date>2020-06-04T23:48:14Z</date>
   <groups>
      <group>
         <name>Templates/Server hardware</name>
      </group>
   </groups>
   <templates>
      <template>
         <template>Template Server Dell iDRAC SNMP</template>
         <name>Template Server Dell iDRAC SNMP</name>
         <description>Template Server iDRAC&#13;
&#13;
MIBs used:&#13;
IDRAC-MIB-SMIv2&#13;
&#13;
Template tooling version used: 0.36</description>
         <templates>
            <template>
               <name>Template Module Generic SNMP</name>
            </template>
         </templates>
         <groups>
            <group>
               <name>Templates/Server hardware</name>
            </group>
         </groups>
         <applications>
            <application>
               <name>Disk arrays</name>
            </application>
            <application>
               <name>Fans</name>
            </application>
            <application>
               <name>Inventory</name>
            </application>
            <application>
               <name>Physical disks</name>
            </application>
            <application>
               <name>Power supply</name>
            </application>
            <application>
               <name>Status</name>
            </application>
            <application>
               <name>Temperature</name>
            </application>
            <application>
               <name>Virtual disks</name>
            </application>
         </applications>
         <items>
            <item>
               <name>Firmware version</name>
               <type>SNMP_AGENT</type>
               <snmp_oid>1.3.6.1.4.1.674.10892.5.1.1.8.0</snmp_oid>
               <key>system.hw.firmware</key>
               <delay>1h</delay>
               <history>2w</history>
               <trends>0</trends>
               <value_type>CHAR</value_type>
               <description>MIB: IDRAC-MIB-SMIv2&#13;
This attribute defines the firmware version of a remote access card.</description>
               <applications>
                  <application>
                     <name>Inventory</name>
                  </application>
               </applications>
               <preprocessing>
                  <step>
                     <type>DISCARD_UNCHANGED_HEARTBEAT</type>
                     <params>1d</params>
                  </step>
               </preprocessing>
               <triggers>
                  <trigger>
                     <expression>{diff()}=1 and {strlen()}&gt;0</expression>
                     <name>Firmware has changed</name>
                     <opdata>Current value: {ITEM.LASTVALUE1}</opdata>
                     <priority>INFO</priority>
                     <description>Firmware version has changed. Ack to close</description>
                     <manual_close>YES</manual_close>
                  </trigger>
               </triggers>
            </item>
            <item>
               <name>Hardware model name</name>
               <type>SNMP_AGENT</type>
               <snmp_oid>1.3.6.1.4.1.674.10892.5.1.3.12.0</snmp_oid>
               <key>system.hw.model</key>
               <delay>1h</delay>
               <history>2w</history>
               <trends>0</trends>
               <value_type>CHAR</value_type>
               <description>MIB: IDRAC-MIB-SMIv2&#13;
This attribute defines the model name of the system.</description>
               <inventory_link>MODEL</inventory_link>
               <applications>
                  <application>
                     <name>Inventory</name>
                  </application>
               </applications>
               <preprocessing>
                  <step>
                     <type>DISCARD_UNCHANGED_HEARTBEAT</type>
                     <params>1d</params>
                  </step>
               </preprocessing>
            </item>
            <item>
               <name>Hardware serial number</name>
               <type>SNMP_AGENT</type>
               <snmp_oid>1.3.6.1.4.1.674.10892.5.1.3.2.0</snmp_oid>
               <key>system.hw.serialnumber</key>
               <delay>1h</delay>
               <history>2w</history>
               <trends>0</trends>
               <value_type>CHAR</value_type>
               <description>MIB: IDRAC-MIB-SMIv2&#13;
This attribute defines the service tag of the system.</description>
               <inventory_link>SERIALNO_A</inventory_link>
               <applications>
                  <application>
                     <name>Inventory</name>
                  </application>
               </applications>
               <preprocessing>
                  <step>
                     <type>DISCARD_UNCHANGED_HEARTBEAT</type>
                     <params>1d</params>
                  </step>
               </preprocessing>
               <triggers>
                  <trigger>
                     <expression>{diff()}=1 and {strlen()}&gt;0</expression>
                     <name>Device has been replaced (new serial number received)</name>
                     <priority>INFO</priority>
                     <description>Device serial number has changed. Ack to close</description>
                     <manual_close>YES</manual_close>
                  </trigger>
               </triggers>
            </item>
            <item>
               <name>Overall system health status</name>
               <type>SNMP_AGENT</type>
               <snmp_oid>1.3.6.1.4.1.674.10892.5.2.1.0</snmp_oid>
               <key>system.status[globalSystemStatus.0]</key>
               <delay>30s</delay>
               <history>2w</history>
               <trends>0d</trends>
               <description>MIB: IDRAC-MIB-SMIv2&#13;
This attribute defines the overall rollup status of all components in the system being monitored by the remote access card. Includes system, storage, IO devices, iDRAC, CPU, memory, etc.</description>
               <applications>
                  <application>
                     <name>Status</name>
                  </application>
               </applications>
               <valuemap>
                  <name>IDRAC-MIB-SMIv2::ObjectStatusEnum</name>
               </valuemap>
               <triggers>
                  <trigger>
                     <expression>{count(#1,{$HEALTH_DISASTER_STATUS},eq)}=1</expression>
                     <name>System is in unrecoverable state!</name>
                     <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                     <priority>HIGH</priority>
                     <description>Please check the device for faults</description>
                  </trigger>
                  <trigger>
                     <expression>{count(#1,{$HEALTH_CRIT_STATUS},eq)}=1</expression>
                     <name>System status is in critical state</name>
                     <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                     <priority>HIGH</priority>
                     <description>Please check the device for errors</description>
                     <dependencies>
                        <dependency>
                           <name>System is in unrecoverable state!</name>
                           <expression>{Template Server Dell iDRAC SNMP:system.status[globalSystemStatus.0].count(#1,{$HEALTH_DISASTER_STATUS},eq)}=1</expression>
                        </dependency>
                     </dependencies>
                  </trigger>
                  <trigger>
                     <expression>{count(#1,{$HEALTH_WARN_STATUS},eq)}=1</expression>
                     <name>System status is in warning state</name>
                     <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                     <priority>WARNING</priority>
                     <description>Please check the device for warnings</description>
                     <dependencies>
                        <dependency>
                           <name>System is in unrecoverable state!</name>
                           <expression>{Template Server Dell iDRAC SNMP:system.status[globalSystemStatus.0].count(#1,{$HEALTH_DISASTER_STATUS},eq)}=1</expression>
                        </dependency>
                        <dependency>
                           <name>System status is in critical state</name>
                           <expression>{Template Server Dell iDRAC SNMP:system.status[globalSystemStatus.0].count(#1,{$HEALTH_CRIT_STATUS},eq)}=1</expression>
                        </dependency>
                     </dependencies>
                  </trigger>
               </triggers>
            </item>
            <item>
               <name>Operating system</name>
               <type>SNMP_AGENT</type>
               <snmp_oid>1.3.6.1.4.1.674.10892.5.1.3.6.0</snmp_oid>
               <key>system.sw.os[systemOSName]</key>
               <delay>1h</delay>
               <history>2w</history>
               <trends>0</trends>
               <value_type>CHAR</value_type>
               <description>MIB: IDRAC-MIB-SMIv2&#13;
This attribute defines the name of the operating system that the hostis running.</description>
               <inventory_link>OS</inventory_link>
               <applications>
                  <application>
                     <name>Inventory</name>
                  </application>
               </applications>
               <preprocessing>
                  <step>
                     <type>DISCARD_UNCHANGED_HEARTBEAT</type>
                     <params>1d</params>
                  </step>
               </preprocessing>
               <triggers>
                  <trigger>
                     <expression>{diff()}=1 and {strlen()}&gt;0</expression>
                     <recovery_mode>NONE</recovery_mode>
                     <name>Operating system description has changed</name>
                     <priority>INFO</priority>
                     <description>Operating system description has changed. Possible reasons that system has been updated or replaced. Ack to close.</description>
                     <manual_close>YES</manual_close>
                  </trigger>
               </triggers>
            </item>
         </items>
         <discovery_rules>
            <discovery_rule>
               <name>Array Controller Cache Discovery</name>
               <type>SNMP_AGENT</type>
               <snmp_oid>discovery[{#BATTERY_NUM},1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.1]</snmp_oid>
               <key>array.cache.discovery</key>
               <delay>1h</delay>
               <description>IDRAC-MIB-SMIv2::batteryTable</description>
               <item_prototypes>
                  <item_prototype>
                     <name>Battery {#BATTERY_NUM}: Disk array cache controller battery status</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.4.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}]</key>
                     <history>1w</history>
                     <trends>0d</trends>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
Current state of battery.&#13;
Possible values:&#13;
1: The current state could not be determined.&#13;
2: The battery is operating normally.&#13;
3: The battery has failed and needs to be replaced.&#13;
4: The battery temperature is high or charge level is depleting.&#13;
5: The battery is missing or not detected.&#13;
6: The battery is undergoing the re-charge phase.&#13;
7: The battery voltage or charge level is below the threshold.</description>
                     <applications>
                        <application>
                           <name>Disk arrays</name>
                        </application>
                     </applications>
                     <valuemap>
                        <name>IDRAC-MIB-SMIv2::batteryState</name>
                     </valuemap>
                     <trigger_prototypes>
                        <trigger_prototype>
                           <expression>{count(#1,{$DISK_ARRAY_CACHE_BATTERY_WARN_STATUS},eq)}=1</expression>
                           <name>Battery {#BATTERY_NUM}: Disk array cache controller battery is in warning state</name>
                           <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                           <priority>WARNING</priority>
                           <description>Please check the device for faults</description>
                           <dependencies>
                              <dependency>
                                 <name>Battery {#BATTERY_NUM}: Disk array cache controller battery is in critical state!</name>
                                 <expression>{Template Server Dell iDRAC SNMP:system.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}].count(#1,{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS},eq)}=1</expression>
                              </dependency>
                           </dependencies>
                        </trigger_prototype>
                        <trigger_prototype>
                           <expression>{count(#1,{$DISK_ARRAY_CACHE_BATTERY_OK_STATUS},ne)}=1</expression>
                           <name>Battery {#BATTERY_NUM}: Disk array cache controller battery is not in optimal state</name>
                           <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                           <priority>WARNING</priority>
                           <description>Please check the device for faults</description>
                           <dependencies>
                              <dependency>
                                 <name>Battery {#BATTERY_NUM}: Disk array cache controller battery is in critical state!</name>
                                 <expression>{Template Server Dell iDRAC SNMP:system.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}].count(#1,{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS},eq)}=1</expression>
                              </dependency>
                              <dependency>
                                 <name>Battery {#BATTERY_NUM}: Disk array cache controller battery is in warning state</name>
                                 <expression>{Template Server Dell iDRAC SNMP:system.hw.diskarray.cache.battery.status[batteryState.{#SNMPINDEX}].count(#1,{$DISK_ARRAY_CACHE_BATTERY_WARN_STATUS},eq)}=1</expression>
                              </dependency>
                           </dependencies>
                        </trigger_prototype>
                        <trigger_prototype>
                           <expression>{count(#1,{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS},eq)}=1</expression>
                           <name>Battery {#BATTERY_NUM}: Disk array cache controller battery is in critical state!</name>
                           <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                           <priority>AVERAGE</priority>
                           <description>Please check the device for faults</description>
                        </trigger_prototype>
                     </trigger_prototypes>
                  </item_prototype>
               </item_prototypes>
            </discovery_rule>
            <discovery_rule>
               <name>FAN Discovery</name>
               <type>SNMP_AGENT</type>
               <snmp_oid>discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.12.1.5,{#FAN_DESCR},1.3.6.1.4.1.674.10892.5.4.700.12.1.8,{#TYPE},1.3.6.1.4.1.674.10892.5.4.700.12.1.7]</snmp_oid>
               <key>fan.discovery</key>
               <delay>1h</delay>
               <filter>
                  <evaltype>AND_OR</evaltype>
                  <conditions>
                     <condition>
                        <macro>{#TYPE}</macro>
                        <value>3</value>
                        <formulaid>A</formulaid>
                     </condition>
                  </conditions>
               </filter>
               <description>IDRAC-MIB-SMIv2::coolingDeviceTable</description>
               <item_prototypes>
                  <item_prototype>
                     <name>{#FAN_DESCR}: Fan speed</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.4.700.12.1.6.{#SNMPINDEX}</snmp_oid>
                     <key>sensor.fan.speed[coolingDeviceReading.{#SNMPINDEX}]</key>
                     <units>rpm</units>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
0700.0012.0001.0006 This attribute defines the reading for a cooling device&#13;
of subtype other than coolingDeviceSubTypeIsDiscrete.  When the value&#13;
for coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the&#13;
value returned for this attribute is the speed in RPM or the OFF/ON value&#13;
of the cooling device.  When the value for coolingDeviceSubType is&#13;
coolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute.</description>
                     <applications>
                        <application>
                           <name>Fans</name>
                        </application>
                     </applications>
                  </item_prototype>
                  <item_prototype>
                     <name>{#FAN_DESCR}: Fan status</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.4.700.12.1.5.{#SNMPINDEX}</snmp_oid>
                     <key>sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}]</key>
                     <delay>3m</delay>
                     <history>2w</history>
                     <trends>0d</trends>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
0700.0012.0001.0005 This attribute defines the probe status of the cooling device.</description>
                     <applications>
                        <application>
                           <name>Fans</name>
                        </application>
                     </applications>
                     <valuemap>
                        <name>IDRAC-MIB-SMIv2::StatusProbeEnum</name>
                     </valuemap>
                     <trigger_prototypes>
                        <trigger_prototype>
                           <expression>{count(#1,{$FAN_CRIT_STATUS:"criticalUpper"},eq)}=1 or {count(#1,{$FAN_CRIT_STATUS:"nonRecoverableUpper"},eq)}=1 or {count(#1,{$FAN_CRIT_STATUS:"criticalLower"},eq)}=1 or {count(#1,{$FAN_CRIT_STATUS:"nonRecoverableLower"},eq)}=1 or {count(#1,{$FAN_CRIT_STATUS:"failed"},eq)}=1</expression>
                           <name>{#FAN_DESCR}: Fan is in critical state</name>
                           <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                           <priority>AVERAGE</priority>
                           <description>Please check the fan unit</description>
                        </trigger_prototype>
                        <trigger_prototype>
                           <expression>{count(#1,{$FAN_WARN_STATUS:"nonCriticalUpper"},eq)}=1 or {count(#1,{$FAN_WARN_STATUS:"nonCriticalLower"},eq)}=1</expression>
                           <name>{#FAN_DESCR}: Fan is in warning state</name>
                           <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                           <priority>WARNING</priority>
                           <description>Please check the fan unit</description>
                           <dependencies>
                              <dependency>
                                 <name>{#FAN_DESCR}: Fan is in critical state</name>
                                 <expression>{Template Server Dell iDRAC SNMP:sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}].count(#1,{$FAN_CRIT_STATUS:"criticalUpper"},eq)}=1 or {Template Server Dell iDRAC SNMP:sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}].count(#1,{$FAN_CRIT_STATUS:"nonRecoverableUpper"},eq)}=1 or {Template Server Dell iDRAC SNMP:sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}].count(#1,{$FAN_CRIT_STATUS:"criticalLower"},eq)}=1 or {Template Server Dell iDRAC SNMP:sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}].count(#1,{$FAN_CRIT_STATUS:"nonRecoverableLower"},eq)}=1 or {Template Server Dell iDRAC SNMP:sensor.fan.status[coolingDeviceStatus.{#SNMPINDEX}].count(#1,{$FAN_CRIT_STATUS:"failed"},eq)}=1</expression>
                              </dependency>
                           </dependencies>
                        </trigger_prototype>
                     </trigger_prototypes>
                  </item_prototype>
               </item_prototypes>
            </discovery_rule>
            <discovery_rule>
               <name>Array Controller Discovery</name>
               <type>SNMP_AGENT</type>
               <snmp_oid>discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38,{#CNTLR_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.79]</snmp_oid>
               <key>physicaldisk.arr.discovery</key>
               <delay>1h</delay>
               <description>IDRAC-MIB-SMIv2::controllerTable</description>
               <item_prototypes>
                  <item_prototype>
                     <name>{#CNTLR_NAME}: Disk array controller model</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.diskarray.model[controllerName.{#SNMPINDEX}]</key>
                     <delay>1d</delay>
                     <trends>0</trends>
                     <value_type>CHAR</value_type>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
The controller's name as represented in Storage Management.</description>
                     <applications>
                        <application>
                           <name>Disk arrays</name>
                        </application>
                     </applications>
                  </item_prototype>
                  <item_prototype>
                     <name>{#CNTLR_NAME}: Disk array controller status</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.38.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}]</key>
                     <history>1w</history>
                     <trends>0d</trends>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
The status of the controller itself without the propagation of any contained component status.&#13;
Possible values:&#13;
1: Other&#13;
2: Unknown&#13;
3: OK&#13;
4: Non-critical&#13;
5: Critical&#13;
6: Non-recoverable</description>
                     <applications>
                        <application>
                           <name>Disk arrays</name>
                        </application>
                     </applications>
                     <valuemap>
                        <name>IDRAC-MIB-SMIv2::ObjectStatusEnum</name>
                     </valuemap>
                     <trigger_prototypes>
                        <trigger_prototype>
                           <expression>{count(#1,{$DISK_ARRAY_FAIL_STATUS:"nonRecoverable"},eq)}=1</expression>
                           <name>{#CNTLR_NAME}: Disk array controller is in unrecoverable state!</name>
                           <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                           <priority>DISASTER</priority>
                           <description>Please check the device for faults</description>
                        </trigger_prototype>
                        <trigger_prototype>
                           <expression>{count(#1,{$DISK_ARRAY_CRIT_STATUS:"critical"},eq)}=1</expression>
                           <name>{#CNTLR_NAME}: Disk array controller is in critical state</name>
                           <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                           <priority>HIGH</priority>
                           <description>Please check the device for faults</description>
                           <dependencies>
                              <dependency>
                                 <name>{#CNTLR_NAME}: Disk array controller is in unrecoverable state!</name>
                                 <expression>{Template Server Dell iDRAC SNMP:system.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}].count(#1,{$DISK_ARRAY_FAIL_STATUS:"nonRecoverable"},eq)}=1</expression>
                              </dependency>
                           </dependencies>
                        </trigger_prototype>
                        <trigger_prototype>
                           <expression>{count(#1,{$DISK_ARRAY_WARN_STATUS:"nonCritical"},eq)}=1</expression>
                           <name>{#CNTLR_NAME}: Disk array controller is in warning state</name>
                           <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                           <priority>AVERAGE</priority>
                           <description>Please check the device for faults</description>
                           <dependencies>
                              <dependency>
                                 <name>{#CNTLR_NAME}: Disk array controller is in critical state</name>
                                 <expression>{Template Server Dell iDRAC SNMP:system.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}].count(#1,{$DISK_ARRAY_CRIT_STATUS:"critical"},eq)}=1</expression>
                              </dependency>
                              <dependency>
                                 <name>{#CNTLR_NAME}: Disk array controller is in unrecoverable state!</name>
                                 <expression>{Template Server Dell iDRAC SNMP:system.hw.diskarray.status[controllerComponentStatus.{#SNMPINDEX}].count(#1,{$DISK_ARRAY_FAIL_STATUS:"nonRecoverable"},eq)}=1</expression>
                              </dependency>
                           </dependencies>
                        </trigger_prototype>
                     </trigger_prototypes>
                  </item_prototype>
               </item_prototypes>
            </discovery_rule>
            <discovery_rule>
               <name>Physical Disk Discovery</name>
               <type>SNMP_AGENT</type>
               <snmp_oid>discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2]</snmp_oid>
               <key>physicaldisk.discovery</key>
               <delay>1h</delay>
               <description>IDRAC-MIB-SMIv2::physicalDiskTable</description>
               <item_prototypes>
                  <item_prototype>
                     <name>{#DISK_NAME}: Physical disk media type</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.35.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.physicaldisk.media_type[physicalDiskMediaType.{#SNMPINDEX}]</key>
                     <delay>1h</delay>
                     <history>2w</history>
                     <trends>0d</trends>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
The media type of the physical disk. Possible Values:&#13;
1: The media type could not be determined.&#13;
2: Hard Disk Drive (HDD).&#13;
3: Solid State Drive (SSD).</description>
                     <applications>
                        <application>
                           <name>Physical disks</name>
                        </application>
                     </applications>
                     <valuemap>
                        <name>IDRAC-MIB-SMIv2::physicalDiskMediaType</name>
                     </valuemap>
                  </item_prototype>
                  <item_prototype>
                     <name>{#DISK_NAME}: Physical disk model name</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.physicaldisk.model[physicalDiskProductID.{#SNMPINDEX}]</key>
                     <delay>1h</delay>
                     <history>2w</history>
                     <trends>0</trends>
                     <value_type>CHAR</value_type>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
The model number of the physical disk.</description>
                     <applications>
                        <application>
                           <name>Physical disks</name>
                        </application>
                     </applications>
                  </item_prototype>
                  <item_prototype>
                     <name>{#DISK_NAME}: Physical disk part number</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.27.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.physicaldisk.part_number[physicalDiskPartNumber.{#SNMPINDEX}]</key>
                     <delay>1h</delay>
                     <history>2w</history>
                     <trends>0</trends>
                     <value_type>CHAR</value_type>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
The part number of the disk.</description>
                     <applications>
                        <application>
                           <name>Physical disks</name>
                        </application>
                     </applications>
                  </item_prototype>
                  <item_prototype>
                     <name>{#DISK_NAME}: Physical disk serial number</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.physicaldisk.serialnumber[physicalDiskSerialNo.{#SNMPINDEX}]</key>
                     <delay>1d</delay>
                     <trends>0</trends>
                     <value_type>CHAR</value_type>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
The physical disk's unique identification number from the manufacturer.</description>
                     <applications>
                        <application>
                           <name>Physical disks</name>
                        </application>
                     </applications>
                     <trigger_prototypes>
                        <trigger_prototype>
                           <expression>{diff()}=1 and {strlen()}&gt;0</expression>
                           <name>{#DISK_NAME}: Disk has been replaced (new serial number received)</name>
                           <priority>INFO</priority>
                           <description>Disk serial number has changed. Ack to close</description>
                           <manual_close>YES</manual_close>
                        </trigger_prototype>
                     </trigger_prototypes>
                  </item_prototype>
                  <item_prototype>
                     <name>{#DISK_NAME}: Disk size</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.physicaldisk.size[physicalDiskCapacityInMB.{#SNMPINDEX}]</key>
                     <delay>1h</delay>
                     <history>2w</history>
                     <trends>0d</trends>
                     <units>B</units>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
The size of the physical disk in megabytes.</description>
                     <applications>
                        <application>
                           <name>Physical disks</name>
                        </application>
                     </applications>
                     <preprocessing>
                        <step>
                           <type>MULTIPLIER</type>
                           <params>1048576</params>
                        </step>
                     </preprocessing>
                  </item_prototype>
                  <item_prototype>
                     <name>{#DISK_NAME}: Physical disk S.M.A.R.T. status</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.31.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.physicaldisk.smart_status[physicalDiskSmartAlertIndication.{#SNMPINDEX}]</key>
                     <delay>3m</delay>
                     <trends>0d</trends>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
Indicates whether the physical disk has received a predictive failure alert.</description>
                     <applications>
                        <application>
                           <name>Physical disks</name>
                        </application>
                     </applications>
                     <valuemap>
                        <name>IDRAC-MIB-SMIv2::BooleanType</name>
                     </valuemap>
                     <trigger_prototypes>
                        <trigger_prototype>
                           <expression>{count(#1,{$DISK_SMART_FAIL_STATUS},eq)}=1</expression>
                           <name>{#DISK_NAME}: Physical disk S.M.A.R.T. failed</name>
                           <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                           <priority>HIGH</priority>
                           <description>Disk probably requires replacement.</description>
                           <dependencies>
                              <dependency>
                                 <name>{#DISK_NAME}: Physical disk failed</name>
                                 <expression>{Template Server Dell iDRAC SNMP:system.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}].count(#1,{$DISK_FAIL_STATUS:"critical"},eq)}=1 or {Template Server Dell iDRAC SNMP:system.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}].count(#1,{$DISK_FAIL_STATUS:"nonRecoverable"},eq)}=1</expression>
                              </dependency>
                           </dependencies>
                        </trigger_prototype>
                     </trigger_prototypes>
                  </item_prototype>
                  <item_prototype>
                     <name>{#DISK_NAME}: Physical disk status</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}]</key>
                     <delay>3m</delay>
                     <trends>0d</trends>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
The status of the physical disk itself without the propagation of any contained component status.&#13;
Possible values:&#13;
1: Other&#13;
2: Unknown&#13;
3: OK&#13;
4: Non-critical&#13;
5: Critical&#13;
6: Non-recoverable</description>
                     <applications>
                        <application>
                           <name>Physical disks</name>
                        </application>
                     </applications>
                     <valuemap>
                        <name>IDRAC-MIB-SMIv2::physicalDiskComponentStatus</name>
                     </valuemap>
                     <trigger_prototypes>
                        <trigger_prototype>
                           <expression>{count(#1,{$DISK_FAIL_STATUS:"critical"},eq)}=1 or {count(#1,{$DISK_FAIL_STATUS:"nonRecoverable"},eq)}=1</expression>
                           <name>{#DISK_NAME}: Physical disk failed</name>
                           <opdata>Current status: {ITEM.LASTVALUE1}</opdata>
                           <priority>HIGH</priority>
                           <description>Please check physical disk for warnings or errors</description>
                        </trigger_prototype>
                        <trigger_prototype>
                           <expression>{count(#1,{$DISK_WARN_STATUS:"nonCritical"},eq)}=1</expression>
                           <name>{#DISK_NAME}: Physical disk is in warning state</name>
                           <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                           <priority>WARNING</priority>
                           <description>Please check physical disk for warnings or errors</description>
                           <dependencies>
                              <dependency>
                                 <name>{#DISK_NAME}: Physical disk failed</name>
                                 <expression>{Template Server Dell iDRAC SNMP:system.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}].count(#1,{$DISK_FAIL_STATUS:"critical"},eq)}=1 or {Template Server Dell iDRAC SNMP:system.hw.physicaldisk.status[physicalDiskComponentStatus.{#SNMPINDEX}].count(#1,{$DISK_FAIL_STATUS:"nonRecoverable"},eq)}=1</expression>
                              </dependency>
                           </dependencies>
                        </trigger_prototype>
                     </trigger_prototypes>
                  </item_prototype>
               </item_prototypes>
            </discovery_rule>
            <discovery_rule>
               <name>PSU Discovery</name>
               <type>SNMP_AGENT</type>
               <snmp_oid>discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.600.12.1.5,{#PSU_DESCR},1.3.6.1.4.1.674.10892.5.4.600.12.1.8]</snmp_oid>
               <key>psu.discovery</key>
               <delay>1h</delay>
               <description>IDRAC-MIB-SMIv2::powerSupplyTable</description>
               <item_prototypes>
                  <item_prototype>
                     <name>{#PSU_DESCR}: Power supply status</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.4.600.12.1.5.{#SNMPINDEX}</snmp_oid>
                     <key>sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}]</key>
                     <delay>3m</delay>
                     <history>2w</history>
                     <trends>0d</trends>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
0600.0012.0001.0005 This attribute defines the status of the power supply.</description>
                     <applications>
                        <application>
                           <name>Power supply</name>
                        </application>
                     </applications>
                     <valuemap>
                        <name>IDRAC-MIB-SMIv2::ObjectStatusEnum</name>
                     </valuemap>
                     <trigger_prototypes>
                        <trigger_prototype>
                           <expression>{count(#1,{$PSU_CRIT_STATUS:"critical"},eq)}=1 or {count(#1,{$PSU_CRIT_STATUS:"nonRecoverable"},eq)}=1</expression>
                           <name>{#PSU_DESCR}: Power supply is in critical state</name>
                           <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                           <priority>AVERAGE</priority>
                           <description>Please check the power supply unit for errors</description>
                        </trigger_prototype>
                        <trigger_prototype>
                           <expression>{count(#1,{$PSU_WARN_STATUS:"nonCritical"},eq)}=1</expression>
                           <name>{#PSU_DESCR}: Power supply is in warning state</name>
                           <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                           <priority>WARNING</priority>
                           <description>Please check the power supply unit for errors</description>
                           <dependencies>
                              <dependency>
                                 <name>{#PSU_DESCR}: Power supply is in critical state</name>
                                 <expression>{Template Server Dell iDRAC SNMP:sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}].count(#1,{$PSU_CRIT_STATUS:"critical"},eq)}=1 or {Template Server Dell iDRAC SNMP:sensor.psu.status[powerSupplyStatus.{#SNMPINDEX}].count(#1,{$PSU_CRIT_STATUS:"nonRecoverable"},eq)}=1</expression>
                              </dependency>
                           </dependencies>
                        </trigger_prototype>
                     </trigger_prototypes>
                  </item_prototype>
               </item_prototypes>
            </discovery_rule>
            <discovery_rule>
               <name>Temperature Ambient Discovery</name>
               <type>SNMP_AGENT</type>
               <snmp_oid>discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8]</snmp_oid>
               <key>temp.ambient.discovery</key>
               <delay>1h</delay>
               <filter>
                  <evaltype>AND_OR</evaltype>
                  <conditions>
                     <condition>
                        <macro>{#SENSOR_LOCALE}</macro>
                        <value>.*Inlet Temp.*</value>
                        <formulaid>A</formulaid>
                     </condition>
                  </conditions>
               </filter>
               <description>Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable</description>
               <item_prototypes>
                  <item_prototype>
                     <name>{#SENSOR_LOCALE}: Temperature status</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX}</snmp_oid>
                     <key>sensor.temp.status[temperatureProbeStatus.Ambient.{#SNMPINDEX}]</key>
                     <delay>3m</delay>
                     <history>2w</history>
                     <trends>0d</trends>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
0700.0020.0001.0005 This attribute defines the probe status of the temperature probe.</description>
                     <applications>
                        <application>
                           <name>Temperature</name>
                        </application>
                     </applications>
                     <valuemap>
                        <name>IDRAC-MIB-SMIv2::StatusProbeEnum</name>
                     </valuemap>
                  </item_prototype>
                  <item_prototype>
                     <name>{#SENSOR_LOCALE}: Temperature</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX}</snmp_oid>
                     <key>sensor.temp.value[temperatureProbeReading.Ambient.{#SNMPINDEX}]</key>
                     <delay>3m</delay>
                     <value_type>FLOAT</value_type>
                     <units>°C</units>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete.  When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute.</description>
                     <applications>
                        <application>
                           <name>Temperature</name>
                        </application>
                     </applications>
                     <valuemap>
                        <name>IDRAC-MIB-SMIv2::StatusProbeEnum</name>
                     </valuemap>
                     <preprocessing>
                        <step>
                           <type>MULTIPLIER</type>
                           <params>0.1</params>
                        </step>
                     </preprocessing>
                     <trigger_prototypes>
                        <trigger_prototype>
                           <expression>{avg(5m)}&lt;{$TEMP_CRIT_LOW:"Ambient"}</expression>
                           <recovery_mode>RECOVERY_EXPRESSION</recovery_mode>
                           <recovery_expression>{min(5m)}&gt;{$TEMP_CRIT_LOW:"Ambient"}+3</recovery_expression>
                           <name>{#SENSOR_LOCALE}: Temperature is too low: &lt;{$TEMP_CRIT_LOW:"Ambient"}</name>
                           <opdata>Current value: {ITEM.LASTVALUE1}</opdata>
                           <priority>AVERAGE</priority>
                        </trigger_prototype>
                     </trigger_prototypes>
                  </item_prototype>
               </item_prototypes>
               <trigger_prototypes>
                  <trigger_prototype>
                     <expression>{Template Server Dell iDRAC SNMP:sensor.temp.value[temperatureProbeReading.Ambient.{#SNMPINDEX}].avg(5m)}&gt;{$TEMP_CRIT:"Ambient"}&#13;
or&#13;
{Template Server Dell iDRAC SNMP:sensor.temp.status[temperatureProbeStatus.Ambient.{#SNMPINDEX}].last(0)}={$TEMP_CRIT_STATUS}&#13;
or&#13;
{Template Server Dell iDRAC SNMP:sensor.temp.status[temperatureProbeStatus.Ambient.{#SNMPINDEX}].last(0)}={$TEMP_DISASTER_STATUS}</expression>
                     <recovery_mode>RECOVERY_EXPRESSION</recovery_mode>
                     <recovery_expression>{Template Server Dell iDRAC SNMP:sensor.temp.value[temperatureProbeReading.Ambient.{#SNMPINDEX}].max(5m)}&lt;{$TEMP_CRIT:"Ambient"}-3</recovery_expression>
                     <name>{#SENSOR_LOCALE}: Temperature is above critical threshold: &gt;{$TEMP_CRIT:"Ambient"}</name>
                     <opdata>Current value: {ITEM.LASTVALUE1}</opdata>
                     <priority>HIGH</priority>
                     <description>This trigger uses temperature sensor values as well as temperature sensor status if available</description>
                  </trigger_prototype>
                  <trigger_prototype>
                     <expression>{Template Server Dell iDRAC SNMP:sensor.temp.value[temperatureProbeReading.Ambient.{#SNMPINDEX}].avg(5m)}&gt;{$TEMP_WARN:"Ambient"}&#13;
or&#13;
{Template Server Dell iDRAC SNMP:sensor.temp.status[temperatureProbeStatus.Ambient.{#SNMPINDEX}].last(0)}={$TEMP_WARN_STATUS}</expression>
                     <recovery_mode>RECOVERY_EXPRESSION</recovery_mode>
                     <recovery_expression>{Template Server Dell iDRAC SNMP:sensor.temp.value[temperatureProbeReading.Ambient.{#SNMPINDEX}].max(5m)}&lt;{$TEMP_WARN:"Ambient"}-3</recovery_expression>
                     <name>{#SENSOR_LOCALE}: Temperature is above warning threshold: &gt;{$TEMP_WARN:"Ambient"}</name>
                     <opdata>Current value: {ITEM.LASTVALUE1}</opdata>
                     <priority>WARNING</priority>
                     <description>This trigger uses temperature sensor values as well as temperature sensor status if available</description>
                     <dependencies>
                        <dependency>
                           <name>{#SENSOR_LOCALE}: Temperature is above critical threshold: &gt;{$TEMP_CRIT:"Ambient"}</name>
                           <expression>{Template Server Dell iDRAC SNMP:sensor.temp.value[temperatureProbeReading.Ambient.{#SNMPINDEX}].avg(5m)}&gt;{$TEMP_CRIT:"Ambient"}&#13;
or&#13;
{Template Server Dell iDRAC SNMP:sensor.temp.status[temperatureProbeStatus.Ambient.{#SNMPINDEX}].last(0)}={$TEMP_CRIT_STATUS}&#13;
or&#13;
{Template Server Dell iDRAC SNMP:sensor.temp.status[temperatureProbeStatus.Ambient.{#SNMPINDEX}].last(0)}={$TEMP_DISASTER_STATUS}</expression>
                           <recovery_expression>{Template Server Dell iDRAC SNMP:sensor.temp.value[temperatureProbeReading.Ambient.{#SNMPINDEX}].max(5m)}&lt;{$TEMP_CRIT:"Ambient"}-3</recovery_expression>
                        </dependency>
                     </dependencies>
                  </trigger_prototype>
               </trigger_prototypes>
            </discovery_rule>
            <discovery_rule>
               <name>Temperature CPU Discovery</name>
               <type>SNMP_AGENT</type>
               <snmp_oid>discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.1,{#SENSOR_LOCALE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8]</snmp_oid>
               <key>temp.cpu.discovery</key>
               <delay>1h</delay>
               <filter>
                  <evaltype>AND_OR</evaltype>
                  <conditions>
                     <condition>
                        <macro>{#SENSOR_LOCALE}</macro>
                        <value>.*CPU.*</value>
                        <formulaid>A</formulaid>
                     </condition>
                  </conditions>
               </filter>
               <description>Scanning table of Temperature Probe Table IDRAC-MIB-SMIv2::temperatureProbeTable</description>
               <item_prototypes>
                  <item_prototype>
                     <name>{#SENSOR_LOCALE}: Temperature status</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.4.700.20.1.5.{#SNMPINDEX}</snmp_oid>
                     <key>sensor.temp.status[temperatureProbeStatus.CPU.{#SNMPINDEX}]</key>
                     <delay>3m</delay>
                     <history>2w</history>
                     <trends>0d</trends>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
0700.0020.0001.0005 This attribute defines the probe status of the temperature probe.</description>
                     <applications>
                        <application>
                           <name>Temperature</name>
                        </application>
                     </applications>
                     <valuemap>
                        <name>IDRAC-MIB-SMIv2::StatusProbeEnum</name>
                     </valuemap>
                  </item_prototype>
                  <item_prototype>
                     <name>{#SENSOR_LOCALE}: Temperature</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.4.700.20.1.6.{#SNMPINDEX}</snmp_oid>
                     <key>sensor.temp.value[temperatureProbeReading.CPU.{#SNMPINDEX}]</key>
                     <delay>3m</delay>
                     <value_type>FLOAT</value_type>
                     <units>°C</units>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
0700.0020.0001.0006 This attribute defines the reading for a temperature probe of type other than temperatureProbeTypeIsDiscrete.  When the value for temperatureProbeType is other than temperatureProbeTypeIsDiscrete,the value returned for this attribute is the temperature that the probeis reading in tenths of degrees Centigrade. When the value for temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not returned for this attribute.</description>
                     <applications>
                        <application>
                           <name>Temperature</name>
                        </application>
                     </applications>
                     <valuemap>
                        <name>IDRAC-MIB-SMIv2::StatusProbeEnum</name>
                     </valuemap>
                     <preprocessing>
                        <step>
                           <type>MULTIPLIER</type>
                           <params>0.1</params>
                        </step>
                     </preprocessing>
                     <trigger_prototypes>
                        <trigger_prototype>
                           <expression>{avg(5m)}&lt;{$TEMP_CRIT_LOW:"CPU"}</expression>
                           <recovery_mode>RECOVERY_EXPRESSION</recovery_mode>
                           <recovery_expression>{min(5m)}&gt;{$TEMP_CRIT_LOW:"CPU"}+3</recovery_expression>
                           <name>{#SENSOR_LOCALE}: Temperature is too low: &lt;{$TEMP_CRIT_LOW:"CPU"}</name>
                           <opdata>Current value: {ITEM.LASTVALUE1}</opdata>
                           <priority>AVERAGE</priority>
                        </trigger_prototype>
                     </trigger_prototypes>
                  </item_prototype>
               </item_prototypes>
               <trigger_prototypes>
                  <trigger_prototype>
                     <expression>{Template Server Dell iDRAC SNMP:sensor.temp.value[temperatureProbeReading.CPU.{#SNMPINDEX}].avg(5m)}&gt;{$TEMP_CRIT:"CPU"}&#13;
or&#13;
{Template Server Dell iDRAC SNMP:sensor.temp.status[temperatureProbeStatus.CPU.{#SNMPINDEX}].last(0)}={$TEMP_CRIT_STATUS}&#13;
or&#13;
{Template Server Dell iDRAC SNMP:sensor.temp.status[temperatureProbeStatus.CPU.{#SNMPINDEX}].last(0)}={$TEMP_DISASTER_STATUS}</expression>
                     <recovery_mode>RECOVERY_EXPRESSION</recovery_mode>
                     <recovery_expression>{Template Server Dell iDRAC SNMP:sensor.temp.value[temperatureProbeReading.CPU.{#SNMPINDEX}].max(5m)}&lt;{$TEMP_CRIT:"CPU"}-3</recovery_expression>
                     <name>{#SENSOR_LOCALE}: Temperature is above critical threshold: &gt;{$TEMP_CRIT:"CPU"}</name>
                     <opdata>Current value: {ITEM.LASTVALUE1}</opdata>
                     <priority>HIGH</priority>
                     <description>This trigger uses temperature sensor values as well as temperature sensor status if available</description>
                  </trigger_prototype>
                  <trigger_prototype>
                     <expression>{Template Server Dell iDRAC SNMP:sensor.temp.value[temperatureProbeReading.CPU.{#SNMPINDEX}].avg(5m)}&gt;{$TEMP_WARN:"CPU"}&#13;
or&#13;
{Template Server Dell iDRAC SNMP:sensor.temp.status[temperatureProbeStatus.CPU.{#SNMPINDEX}].last(0)}={$TEMP_WARN_STATUS}</expression>
                     <recovery_mode>RECOVERY_EXPRESSION</recovery_mode>
                     <recovery_expression>{Template Server Dell iDRAC SNMP:sensor.temp.value[temperatureProbeReading.CPU.{#SNMPINDEX}].max(5m)}&lt;{$TEMP_WARN:"CPU"}-3</recovery_expression>
                     <name>{#SENSOR_LOCALE}: Temperature is above warning threshold: &gt;{$TEMP_WARN:"CPU"}</name>
                     <opdata>Current value: {ITEM.LASTVALUE1}</opdata>
                     <priority>WARNING</priority>
                     <description>This trigger uses temperature sensor values as well as temperature sensor status if available</description>
                     <dependencies>
                        <dependency>
                           <name>{#SENSOR_LOCALE}: Temperature is above critical threshold: &gt;{$TEMP_CRIT:"CPU"}</name>
                           <expression>{Template Server Dell iDRAC SNMP:sensor.temp.value[temperatureProbeReading.CPU.{#SNMPINDEX}].avg(5m)}&gt;{$TEMP_CRIT:"CPU"}&#13;
or&#13;
{Template Server Dell iDRAC SNMP:sensor.temp.status[temperatureProbeStatus.CPU.{#SNMPINDEX}].last(0)}={$TEMP_CRIT_STATUS}&#13;
or&#13;
{Template Server Dell iDRAC SNMP:sensor.temp.status[temperatureProbeStatus.CPU.{#SNMPINDEX}].last(0)}={$TEMP_DISASTER_STATUS}</expression>
                           <recovery_expression>{Template Server Dell iDRAC SNMP:sensor.temp.value[temperatureProbeReading.CPU.{#SNMPINDEX}].max(5m)}&lt;{$TEMP_CRIT:"CPU"}-3</recovery_expression>
                        </dependency>
                     </dependencies>
                  </trigger_prototype>
               </trigger_prototypes>
            </discovery_rule>
            <discovery_rule>
               <name>Virtual Disk Discovery</name>
               <type>SNMP_AGENT</type>
               <snmp_oid>discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1,{#DISK_NAME},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.2]</snmp_oid>
               <key>virtualdisk.discovery</key>
               <delay>1h</delay>
               <description>IDRAC-MIB-SMIv2::virtualDiskTable</description>
               <item_prototypes>
                  <item_prototype>
                     <name>Disk {#SNMPVALUE}({#DISK_NAME}): Layout type</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.virtualdisk.layout[virtualDiskLayout.{#SNMPINDEX}]</key>
                     <delay>1h</delay>
                     <history>2w</history>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
The virtual disk's RAID type.&#13;
Possible values:&#13;
1: Not one of the following&#13;
2: RAID-0&#13;
3: RAID-1&#13;
4: RAID-5&#13;
5: RAID-6&#13;
6: RAID-10&#13;
7: RAID-50&#13;
8: RAID-60&#13;
9: Concatenated RAID 1&#13;
10: Concatenated RAID 5</description>
                     <applications>
                        <application>
                           <name>Virtual disks</name>
                        </application>
                     </applications>
                     <valuemap>
                        <name>IDRAC-MIB-SMIv2::virtualDiskLayout</name>
                     </valuemap>
                  </item_prototype>
                  <item_prototype>
                     <name>Disk {#SNMPVALUE}({#DISK_NAME}): Read policy</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.11.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.virtualdisk.readpolicy[virtualDiskReadPolicy.{#SNMPINDEX}]</key>
                     <delay>1h</delay>
                     <history>2w</history>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
The read policy used by the controller for read operations on this virtual disk.&#13;
Possible values:&#13;
1: No Read Ahead.&#13;
2: Read Ahead.&#13;
3: Adaptive Read Ahead.</description>
                     <applications>
                        <application>
                           <name>Virtual disks</name>
                        </application>
                     </applications>
                  </item_prototype>
                  <item_prototype>
                     <name>Disk {#SNMPVALUE}({#DISK_NAME}): Disk size</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.virtualdisk.size[virtualDiskSizeInMB.{#SNMPINDEX}]</key>
                     <delay>1h</delay>
                     <history>2w</history>
                     <trends>0d</trends>
                     <units>B</units>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
The size of the virtual disk in megabytes.</description>
                     <applications>
                        <application>
                           <name>Virtual disks</name>
                        </application>
                     </applications>
                     <preprocessing>
                        <step>
                           <type>MULTIPLIER</type>
                           <params>1048576</params>
                        </step>
                     </preprocessing>
                  </item_prototype>
                  <item_prototype>
                     <name>Disk {#SNMPVALUE}({#DISK_NAME}): Current state</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.30.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.virtualdisk.state[virtualDiskOperationalState.{#SNMPINDEX}]</key>
                     <delay>3m</delay>
                     <history>2w</history>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
The state of the virtual disk when there are progressive operations ongoing.&#13;
Possible values:&#13;
1: There is no active operation running.&#13;
2: The virtual disk configuration has changed. The physical disks included in the virtual disk are being modified to support the new configuration.&#13;
3: A Consistency Check (CC) is being performed on the virtual disk.&#13;
4: The virtual disk is being initialized.&#13;
5: BackGround Initialization (BGI) is being performed on the virtual disk.</description>
                     <applications>
                        <application>
                           <name>Virtual disks</name>
                        </application>
                     </applications>
                     <valuemap>
                        <name>IDRAC-MIB-SMIv2::virtualDiskOperationalState</name>
                     </valuemap>
                  </item_prototype>
                  <item_prototype>
                     <name>Disk {#SNMPVALUE}({#DISK_NAME}): Status</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}]</key>
                     <delay>3m</delay>
                     <history>2w</history>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
The current state of this virtual disk (which includes any member physical disks.)&#13;
Possible states:&#13;
1: The current state could not be determined.&#13;
2: The virtual disk is operating normally or optimally.&#13;
3: The virtual disk has encountered a failure. The data on disk is lost or is about to be lost.&#13;
4: The virtual disk encounterd a failure with one or all of the constituent redundant physical disks.&#13;
The data on the virtual disk might no longer be fault tolerant.</description>
                     <applications>
                        <application>
                           <name>Virtual disks</name>
                        </application>
                     </applications>
                     <valuemap>
                        <name>IDRAC-MIB-SMIv2::virtualDiskState</name>
                     </valuemap>
                     <trigger_prototypes>
                        <trigger_prototype>
                           <expression>{count(#1,{$VDISK_CRIT_STATUS:"failed"},eq)}=1</expression>
                           <name>Disk {#SNMPVALUE}({#DISK_NAME}): Virtual disk failed</name>
                           <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                           <priority>HIGH</priority>
                           <description>Please check virtual disk for warnings or errors</description>
                        </trigger_prototype>
                        <trigger_prototype>
                           <expression>{count(#1,{$VDISK_WARN_STATUS:"degraded"},eq)}=1</expression>
                           <name>Disk {#SNMPVALUE}({#DISK_NAME}): Virtual disk is in warning state</name>
                           <opdata>Current state: {ITEM.LASTVALUE1}</opdata>
                           <priority>AVERAGE</priority>
                           <description>Please check virtual disk for warnings or errors</description>
                           <dependencies>
                              <dependency>
                                 <name>Disk {#SNMPVALUE}({#DISK_NAME}): Virtual disk failed</name>
                                 <expression>{Template Server Dell iDRAC SNMP:system.hw.virtualdisk.status[virtualDiskState.{#SNMPINDEX}].count(#1,{$VDISK_CRIT_STATUS:"failed"},eq)}=1</expression>
                              </dependency>
                           </dependencies>
                        </trigger_prototype>
                     </trigger_prototypes>
                  </item_prototype>
                  <item_prototype>
                     <name>Disk {#SNMPVALUE}({#DISK_NAME}): Write policy</name>
                     <type>SNMP_AGENT</type>
                     <snmp_oid>1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.10.{#SNMPINDEX}</snmp_oid>
                     <key>system.hw.virtualdisk.writepolicy[virtualDiskWritePolicy.{#SNMPINDEX}]</key>
                     <delay>1h</delay>
                     <history>2w</history>
                     <description>MIB: IDRAC-MIB-SMIv2&#13;
The write policy used by the controller for write operations on this virtual disk.&#13;
Possible values:&#13;
1: Write Through.&#13;
2: Write Back.&#13;
3: Force Write Back.</description>
                     <applications>
                        <application>
                           <name>Virtual disks</name>
                        </application>
                     </applications>
                     <valuemap>
                        <name>IDRAC-MIB-SMIv2::virtualDiskWritePolicy</name>
                     </valuemap>
                  </item_prototype>
               </item_prototypes>
            </discovery_rule>
         </discovery_rules>
         <macros>
            <macro>
               <macro>{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS}</macro>
               <value>3</value>
            </macro>
            <macro>
               <macro>{$DISK_ARRAY_CACHE_BATTERY_OK_STATUS}</macro>
               <value>2</value>
            </macro>
            <macro>
               <macro>{$DISK_ARRAY_CACHE_BATTERY_WARN_STATUS}</macro>
               <value>4</value>
            </macro>
            <macro>
               <macro>{$DISK_ARRAY_CRIT_STATUS:"critical"}</macro>
               <value>5</value>
            </macro>
            <macro>
               <macro>{$DISK_ARRAY_FAIL_STATUS:"nonRecoverable"}</macro>
               <value>6</value>
            </macro>
            <macro>
               <macro>{$DISK_ARRAY_WARN_STATUS:"nonCritical"}</macro>
               <value>4</value>
            </macro>
            <macro>
               <macro>{$DISK_FAIL_STATUS:"critical"}</macro>
               <value>5</value>
            </macro>
            <macro>
               <macro>{$DISK_FAIL_STATUS:"nonRecoverable"}</macro>
               <value>6</value>
            </macro>
            <macro>
               <macro>{$DISK_SMART_FAIL_STATUS}</macro>
               <value>1</value>
            </macro>
            <macro>
               <macro>{$DISK_WARN_STATUS:"nonCritical"}</macro>
               <value>4</value>
            </macro>
            <macro>
               <macro>{$FAN_CRIT_STATUS:"criticalLower"}</macro>
               <value>8</value>
            </macro>
            <macro>
               <macro>{$FAN_CRIT_STATUS:"criticalUpper"}</macro>
               <value>5</value>
            </macro>
            <macro>
               <macro>{$FAN_CRIT_STATUS:"failed"}</macro>
               <value>10</value>
            </macro>
            <macro>
               <macro>{$FAN_CRIT_STATUS:"nonRecoverableLower"}</macro>
               <value>9</value>
            </macro>
            <macro>
               <macro>{$FAN_CRIT_STATUS:"nonRecoverableUpper"}</macro>
               <value>6</value>
            </macro>
            <macro>
               <macro>{$FAN_WARN_STATUS:"nonCriticalLower"}</macro>
               <value>7</value>
            </macro>
            <macro>
               <macro>{$FAN_WARN_STATUS:"nonCriticalUpper"}</macro>
               <value>4</value>
            </macro>
            <macro>
               <macro>{$HEALTH_CRIT_STATUS}</macro>
               <value>5</value>
            </macro>
            <macro>
               <macro>{$HEALTH_DISASTER_STATUS}</macro>
               <value>6</value>
            </macro>
            <macro>
               <macro>{$HEALTH_WARN_STATUS}</macro>
               <value>4</value>
            </macro>
            <macro>
               <macro>{$PSU_CRIT_STATUS:"critical"}</macro>
               <value>5</value>
            </macro>
            <macro>
               <macro>{$PSU_CRIT_STATUS:"nonRecoverable"}</macro>
               <value>6</value>
            </macro>
            <macro>
               <macro>{$PSU_WARN_STATUS:"nonCritical"}</macro>
               <value>4</value>
            </macro>
            <macro>
               <macro>{$TEMP_CRIT_LOW}</macro>
               <value>5</value>
            </macro>
            <macro>
               <macro>{$TEMP_CRIT_STATUS}</macro>
               <value>5</value>
            </macro>
            <macro>
               <macro>{$TEMP_CRIT:"Ambient"}</macro>
               <value>35</value>
            </macro>
            <macro>
               <macro>{$TEMP_CRIT:"CPU"}</macro>
               <value>75</value>
            </macro>
            <macro>
               <macro>{$TEMP_CRIT}</macro>
               <value>60</value>
            </macro>
            <macro>
               <macro>{$TEMP_DISASTER_STATUS}</macro>
               <value>6</value>
            </macro>
            <macro>
               <macro>{$TEMP_WARN_STATUS}</macro>
               <value>4</value>
            </macro>
            <macro>
               <macro>{$TEMP_WARN:"Ambient"}</macro>
               <value>30</value>
            </macro>
            <macro>
               <macro>{$TEMP_WARN:"CPU"}</macro>
               <value>70</value>
            </macro>
            <macro>
               <macro>{$TEMP_WARN}</macro>
               <value>50</value>
            </macro>
            <macro>
               <macro>{$VDISK_CRIT_STATUS:"failed"}</macro>
               <value>3</value>
            </macro>
            <macro>
               <macro>{$VDISK_WARN_STATUS:"degraded"}</macro>
               <value>4</value>
            </macro>
         </macros>
      </template>
   </templates>
   <value_maps>
      <value_map>
         <name>IDRAC-MIB-SMIv2::ObjectStatusEnum</name>
         <mappings>
            <mapping>
               <value>1</value>
               <newvalue>other</newvalue>
            </mapping>
            <mapping>
               <value>2</value>
               <newvalue>unknown</newvalue>
            </mapping>
            <mapping>
               <value>3</value>
               <newvalue>ok</newvalue>
            </mapping>
            <mapping>
               <value>4</value>
               <newvalue>nonCritical</newvalue>
            </mapping>
            <mapping>
               <value>5</value>
               <newvalue>critical</newvalue>
            </mapping>
            <mapping>
               <value>6</value>
               <newvalue>nonRecoverable</newvalue>
            </mapping>
         </mappings>
      </value_map>
      <value_map>
         <name>IDRAC-MIB-SMIv2::StatusProbeEnum</name>
         <mappings>
            <mapping>
               <value>1</value>
               <newvalue>other</newvalue>
            </mapping>
            <mapping>
               <value>2</value>
               <newvalue>unknown</newvalue>
            </mapping>
            <mapping>
               <value>3</value>
               <newvalue>ok</newvalue>
            </mapping>
            <mapping>
               <value>4</value>
               <newvalue>nonCriticalUpper</newvalue>
            </mapping>
            <mapping>
               <value>5</value>
               <newvalue>criticalUpper</newvalue>
            </mapping>
            <mapping>
               <value>6</value>
               <newvalue>nonRecoverableUpper</newvalue>
            </mapping>
            <mapping>
               <value>7</value>
               <newvalue>nonCriticalLower</newvalue>
            </mapping>
            <mapping>
               <value>8</value>
               <newvalue>criticalLower</newvalue>
            </mapping>
            <mapping>
               <value>9</value>
               <newvalue>nonRecoverableLower</newvalue>
            </mapping>
            <mapping>
               <value>10</value>
               <newvalue>failed</newvalue>
            </mapping>
         </mappings>
      </value_map>
      <value_map>
         <name>IDRAC-MIB-SMIv2::physicalDiskComponentStatus</name>
         <mappings>
            <mapping>
               <value>1</value>
               <newvalue>other</newvalue>
            </mapping>
            <mapping>
               <value>2</value>
               <newvalue>unknown</newvalue>
            </mapping>
            <mapping>
               <value>3</value>
               <newvalue>ok</newvalue>
            </mapping>
            <mapping>
               <value>4</value>
               <newvalue>nonCritical</newvalue>
            </mapping>
            <mapping>
               <value>5</value>
               <newvalue>critical</newvalue>
            </mapping>
            <mapping>
               <value>6</value>
               <newvalue>nonRecoverable</newvalue>
            </mapping>
         </mappings>
      </value_map>
      <value_map>
         <name>IDRAC-MIB-SMIv2::BooleanType</name>
         <mappings>
            <mapping>
               <value>0</value>
               <newvalue>ok</newvalue>
            </mapping>
            <mapping>
               <value>1</value>
               <newvalue>failed</newvalue>
            </mapping>
         </mappings>
      </value_map>
      <value_map>
         <name>IDRAC-MIB-SMIv2::physicalDiskMediaType</name>
         <mappings>
            <mapping>
               <value>1</value>
               <newvalue>Unknown</newvalue>
            </mapping>
            <mapping>
               <value>2</value>
               <newvalue>HDD</newvalue>
            </mapping>
            <mapping>
               <value>3</value>
               <newvalue>SSD</newvalue>
            </mapping>
         </mappings>
      </value_map>
      <value_map>
         <name>IDRAC-MIB-SMIv2::batteryState</name>
         <mappings>
            <mapping>
               <value>1</value>
               <newvalue>Unknown</newvalue>
            </mapping>
            <mapping>
               <value>2</value>
               <newvalue>Ready</newvalue>
            </mapping>
            <mapping>
               <value>3</value>
               <newvalue>Failed</newvalue>
            </mapping>
            <mapping>
               <value>4</value>
               <newvalue>Degraded</newvalue>
            </mapping>
            <mapping>
               <value>5</value>
               <newvalue>Missing</newvalue>
            </mapping>
            <mapping>
               <value>6</value>
               <newvalue>Charging</newvalue>
            </mapping>
            <mapping>
               <value>7</value>
               <newvalue>Below threshold</newvalue>
            </mapping>
         </mappings>
      </value_map>
      <value_map>
         <name>IDRAC-MIB-SMIv2::virtualDiskLayout</name>
         <mappings>
            <mapping>
               <value>1</value>
               <newvalue>Other</newvalue>
            </mapping>
            <mapping>
               <value>2</value>
               <newvalue>RAID-0</newvalue>
            </mapping>
            <mapping>
               <value>3</value>
               <newvalue>RAID-1</newvalue>
            </mapping>
            <mapping>
               <value>4</value>
               <newvalue>RAID-5</newvalue>
            </mapping>
            <mapping>
               <value>5</value>
               <newvalue>RAID-6</newvalue>
            </mapping>
            <mapping>
               <value>6</value>
               <newvalue>RAID-10</newvalue>
            </mapping>
            <mapping>
               <value>7</value>
               <newvalue>RAID-50</newvalue>
            </mapping>
            <mapping>
               <value>8</value>
               <newvalue>RAID-60</newvalue>
            </mapping>
            <mapping>
               <value>9</value>
               <newvalue>Concatenated RAID 1</newvalue>
            </mapping>
            <mapping>
               <value>10</value>
               <newvalue>Concatenated RAID 5</newvalue>
            </mapping>
         </mappings>
      </value_map>
      <value_map>
         <name>IDRAC-MIB-SMIv2::virtualDiskOperationalState</name>
         <mappings>
            <mapping>
               <value>1</value>
               <newvalue>Not applicable</newvalue>
            </mapping>
            <mapping>
               <value>2</value>
               <newvalue>Reconstructing</newvalue>
            </mapping>
            <mapping>
               <value>3</value>
               <newvalue>Resynching</newvalue>
            </mapping>
            <mapping>
               <value>4</value>
               <newvalue>Initializing</newvalue>
            </mapping>
            <mapping>
               <value>5</value>
               <newvalue>Background init</newvalue>
            </mapping>
         </mappings>
      </value_map>
      <value_map>
         <name>IDRAC-MIB-SMIv2::virtualDiskWritePolicy</name>
         <mappings>
            <mapping>
               <value>1</value>
               <newvalue>Write Through</newvalue>
            </mapping>
            <mapping>
               <value>2</value>
               <newvalue>Write Back</newvalue>
            </mapping>
            <mapping>
               <value>3</value>
               <newvalue>Force Write Back</newvalue>
            </mapping>
         </mappings>
      </value_map>
      <value_map>
         <name>IDRAC-MIB-SMIv2::virtualDiskReadPolicy</name>
         <mappings>
            <mapping>
               <value>1</value>
               <newvalue>No Read Ahead</newvalue>
            </mapping>
            <mapping>
               <value>2</value>
               <newvalue>Read Ahead</newvalue>
            </mapping>
            <mapping>
               <value>3</value>
               <newvalue>Adaptive Read Ahead</newvalue>
            </mapping>
         </mappings>
      </value_map>
      <value_map>
         <name>IDRAC-MIB-SMIv2::virtualDiskState</name>
         <mappings>
            <mapping>
               <value>1</value>
               <newvalue>Unknown</newvalue>
            </mapping>
            <mapping>
               <value>2</value>
               <newvalue>Online</newvalue>
            </mapping>
            <mapping>
               <value>3</value>
               <newvalue>Failed</newvalue>
            </mapping>
            <mapping>
               <value>4</value>
               <newvalue>Degraded</newvalue>
            </mapping>
         </mappings>
      </value_map>
   </value_maps>
</zabbix_export>