-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dell iDRAC by SNMP and iDRAC9.yaml
2728 lines (2722 loc) · 118 KB
/
Dell iDRAC by SNMP and iDRAC9.yaml
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
zabbix_export:
version: '6.4'
template_groups:
- uuid: 7df96b18c230490a9a0a9e2307226338
name: Templates
- uuid: e960332b3f6c46a1956486d4f3f99fce
name: 'Templates/Server hardware'
templates:
- uuid: 0c50d4583ca94ae2b5a5b67151ad0971
template: 'Dell iDRAC-9 by SNMP'
name: 'Dell iDRAC-9 by SNMP'
description: VijayK
groups:
- name: Templates
items:
- uuid: 0e38c873fc424a1694c41ff08e352d7f
name: 'BIOS Date'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.4.300.50.1.7.1.1
key: BiosDate
delay: 1d
history: 30d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'System Info'
- uuid: 17303a38b338451db9e9f3192ce7a54e
name: 'BIOS Version'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.4.300.50.1.8.1.1
key: BiosVersion
delay: 1d
history: 30d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'System Info'
- uuid: d220954ad6934466b1628f164b701da4
name: 'CMOS Battery Status'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.4.600.50.1.5.1.1
key: CMOSBatteryStatus
delay: 1h
history: 30d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: 'System Info'
triggers:
- uuid: ec668e2ebc2a40e4b56416e6a54eb2d8
expression: 'last(/Dell iDRAC-9 by SNMP/CMOSBatteryStatus)<>3'
name: '{HOST.NAME}: Problem with CMOS Battery'
priority: WARNING
manual_close: 'YES'
- uuid: 5a2558b490e446239ed73120d8eefc65
name: 'Overall System LCD Status'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.2.2.0
key: GlobalSystemLCDStatus
delay: 1h
history: 30d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: 'System Info'
- uuid: b980160b442543708b129ec8429636ef
name: 'Overall System Power State'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.2.4.0
key: GlobalSystemPowerState
delay: 1h
history: 30d
valuemap:
name: DellPowerState
tags:
- tag: Application
value: Power
triggers:
- uuid: 568a7afd40b148aea564e4e30919d502
expression: 'last(/Dell iDRAC-9 by SNMP/GlobalSystemPowerState)<>4 and last(/Dell iDRAC-9 by SNMP/GlobalSystemPowerState)<>0'
name: '{HOST.NAME}: System is not online'
priority: HIGH
manual_close: 'YES'
- uuid: 95f264d550c84d39aab77d599fb8570e
name: 'Overall System Status'
type: SNMP_AGENT
snmp_oid: .1.3.6.1.4.1.674.10892.5.2.1.0
key: GlobalSystemStatus
delay: 5m
history: 30d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: 'System Info'
triggers:
- uuid: 9e210b1ed84a4477bfb0f26ecca2ece7
expression: 'nodata(/Dell iDRAC-9 by SNMP/GlobalSystemStatus,600s)'
name: '{HOST.NAME}: No iDrac data for 10 minutes'
priority: HIGH
manual_close: 'YES'
- uuid: 5e1a591f98ae4e308567939bb537c60d
expression: '(last(/Dell iDRAC-9 by SNMP/GlobalSystemStatus)<>3) and (last(/Dell iDRAC-9 by SNMP/GlobalSystemStatus)<5)'
name: '{HOST.NAME}: Overall System Status Error'
priority: WARNING
manual_close: 'YES'
- uuid: d410832255d246bcafdd1b00638161a1
expression: '(last(/Dell iDRAC-9 by SNMP/GlobalSystemStatus)>4)'
name: '{HOST.NAME}: Overall System Status Error'
priority: DISASTER
manual_close: 'YES'
- uuid: 11cc75987b8e489497524f2ca69c87ed
name: 'Overall System Storage Status'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.2.3.0
key: GlobalSystemStorageStatus
delay: 1h
history: 30d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: 'Storage and disks'
triggers:
- uuid: 79e619654b02465e88f2c1400c420af8
expression: 'last(/Dell iDRAC-9 by SNMP/GlobalSystemStorageStatus)<>3'
name: '{HOST.NAME}: Storage System Status Error'
priority: WARNING
manual_close: 'YES'
dependencies:
- name: '{HOST.NAME}: RAID Controller Error'
expression: '(last(/Dell iDRAC-9 by SNMP/RAIDControllerStatus)<>3) and (last(/Dell iDRAC-9 by SNMP/SystemPowerState)=4)'
- uuid: deeab6ac80d040c880a50f3332902524
name: 'DRAC Access URL'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.2.1.1.7.0
key: idrac_acessurl
delay: 1d
history: 30d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'System Info'
- uuid: a9b9000a1d33429390bfceff6cb19aa5
name: 'System Asset Tag'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.2.1.1.11.0
key: idrac_assettag
delay: 1d
history: 30d
trends: '0'
value_type: CHAR
inventory_link: ASSET_TAG
tags:
- tag: Application
value: 'System Info'
- uuid: 247b9fc627e748238948249af1f1aeb7
name: 'System Express Service Code'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.1.3.3.0
key: idrac_esc
delay: 1d
history: 30d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'System Info'
- uuid: f3e0c2ca919740a1abacaa4aa0fc710b
name: 'DRAC Firmware version'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.2.1.1.5.0
key: idrac_firmwareversion
delay: 1d
history: 30d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'System Info'
- uuid: cb5ded6eb9b8461e80d3d7cf8eb97b73
name: 'System Model'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.1.3.12.0
key: idrac_SystemModel
delay: 1d
history: 30d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'System Info'
- uuid: d4f250c76184424e9382bb4239cddb94
name: 'DRAC version'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.2.1.1.2.0
key: idrac_version
delay: 1d
history: 30d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'System Info'
- uuid: c0c4c34ceffb487e8d4168351e4e78a0
name: 'Power Usage Minimum Idle Power'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.15.1.1
key: PowerUsageMinIdle
delay: 1h
history: 30d
units: W
tags:
- tag: Application
value: Power
- uuid: 866ad3963e15469796725e9629381f56
name: 'Power Usage Sensor Status'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.4.600.60.1.5.1.1
key: PowerUsageSensorStatus
delay: 1h
history: 30d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: Power
- uuid: 8d18a724ff4e4f739b420c9f736d3ce0
name: 'RAID Controller : Firmware Version'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.8.1
key: RAIDControllerFirmware
delay: 1d
history: 30d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'Storage and disks'
- uuid: ec0b0c71e96f4d18a953ed87abeab57f
name: 'RAID Controller : Name'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.2.1
key: RAIDControllerName
delay: 1d
history: 30d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'Storage and disks'
- uuid: 7c85630eb87246c7a9fd1619cd7789bf
name: 'RAID Controller : Status'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.37.1
key: RAIDControllerStatus
delay: 10m
history: 30d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: 'Storage and disks'
- uuid: b95f5efa9f874f1cb9650f0733c81e33
name: 'System BIOS Status'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.4.300.50.1.5.1.1
key: SystemBiosStatus
delay: 1h
history: 30d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: 'System Info'
- uuid: 595b871ca4d14be6ab9d05acabe9d560
name: 'System Power State'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.2.4.0
key: SystemPowerState
delay: 5m
history: 30d
trends: '0'
value_type: CHAR
description: |
4 server is on
3 server is on stand-by
tags:
- tag: Application
value: Power
- uuid: f1d336b7fd91459e8aa955db85af6c43
name: 'Voltage Status Combined'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.4.1.674.10892.5.4.200.10.1.12.1
key: VoltageStatusCombined
delay: 10m
history: 30d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: Voltages
discovery_rules:
- uuid: 0ba5cc594b394634a2edfacf8338f716
name: 'Disk Enumeration'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.2]'
key: DiskEnumeration
delay: 1d
item_prototypes:
- uuid: 7525a980f3cb4d02b59a714e4a012bf4
name: 'Disk {#SNMPINDEX} : Manufacture Day'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.32.{#SNMPINDEX}'
key: 'DiskManufactureDay.[{#SNMPINDEX}]'
delay: 1d
history: 1w
trends: 90d
tags:
- tag: Application
value: 'Storage and disks'
- uuid: 6a5ab025d0944b65bc9d1a7e960d4c70
name: 'Disk {#SNMPINDEX} : Manufacturer'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.3.{#SNMPINDEX}'
key: 'DiskManufacturer.[{#SNMPINDEX}]'
delay: 1d
history: 30d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'Storage and disks'
- uuid: 3f51e56eeec44504ac0fb5a4313b2a47
name: 'Disk {#SNMPINDEX} : Manufacture Week'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.33.{#SNMPINDEX}'
key: 'DiskManufactureWeek.[{#SNMPINDEX}]'
delay: 1d
history: 30d
trends: 90d
tags:
- tag: Application
value: 'Storage and disks'
- uuid: 6489e1b9c50f45a9a8d71c08c525bb1f
name: 'Disk {#SNMPINDEX} : Manufacture Year'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.34.{#SNMPINDEX}'
key: 'DiskManufactureYear.[{#SNMPINDEX}]'
delay: 1d
history: 30d
trends: 90d
tags:
- tag: Application
value: 'Storage and disks'
- uuid: b62791f0219948cca9e04564ce20022f
name: 'Disk {#SNMPINDEX} : Model Number'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.6.{#SNMPINDEX}'
key: 'DiskModel.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'Storage and disks'
- uuid: 2f3c90821e9747888d9fd7a2c43c8d0d
name: 'Disk {#SNMPINDEX} : Name'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.55.{#SNMPINDEX}'
key: 'DiskName.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'Storage and disks'
- uuid: df005f6b203744d8bbee1bd625cba127
name: 'Disk {#SNMPINDEX} : Serial Number'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.7.{#SNMPINDEX}'
key: 'DiskSerialNo.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'Storage and disks'
- uuid: 050a1b5dc11b4a9bad8539d93c8c6625
name: 'Disk {#SNMPINDEX} : Disk Size'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.11.{#SNMPINDEX}'
key: 'DiskSize.[{#SNMPINDEX}]'
delay: 1d
history: 1w
trends: 90d
units: B
preprocessing:
- type: MULTIPLIER
parameters:
- '1048576'
tags:
- tag: Application
value: 'Storage and disks'
- uuid: 89781ec5f0a44d1fbb4b71acb47018ef
name: 'Disk {#SNMPINDEX} : Disk State'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.4.{#SNMPINDEX}'
key: 'DiskState.[{#SNMPINDEX}]'
delay: 1h
history: 1w
trends: 90d
valuemap:
name: DellDracDiskState
tags:
- tag: Application
value: 'Storage and disks'
- uuid: f35d1db5eea546b6b05c19c3acdbab81
name: 'Disk {#SNMPINDEX} : Disk Status'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.24.{#SNMPINDEX}'
key: 'DiskStatus.[{#SNMPINDEX}]'
delay: 1h
history: 1w
trends: 90d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: 'Storage and disks'
trigger_prototypes:
- uuid: d275538b772d4e009efd772015f9962a
expression: '(last(/Dell iDRAC-9 by SNMP/DiskStatus.[{#SNMPINDEX}])<>3) and (last(/Dell iDRAC-9 by SNMP/SystemPowerState)=4)'
name: '{HOST.NAME}: Problem with Disk {#SNMPINDEX}'
priority: DISASTER
- uuid: e2fa01d279214047acd3413465d061cf
name: 'Fan Enumeration'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.12.1.8.1]'
key: FanEnumeration
delay: 1d
item_prototypes:
- uuid: b6d5a85232ad4ff6b9484aac402956b6
name: 'Fan {#SNMPVALUE} Speed'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.700.12.1.6.1.{#SNMPINDEX}'
key: 'FanSpeed.[{#SNMPINDEX}]'
delay: 5m
history: 2d
trends: 90d
units: rpm
tags:
- tag: Application
value: Fans
- uuid: ff4f9ba6dbc54cdaaafc133a19b8fbf3
name: 'Fan {#SNMPVALUE} Status'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.700.12.1.5.1.{#SNMPINDEX}'
key: 'FanStatus.[{#SNMPINDEX}]'
delay: 5m
history: 2d
trends: 90d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: Fans
trigger_prototypes:
- uuid: d111bd28baa74d1eb54a813fdfcb1fd7
expression: '(last(/Dell iDRAC-9 by SNMP/FanStatus.[{#SNMPINDEX}])<>3) and (last(/Dell iDRAC-9 by SNMP/SystemPowerState)=4)'
name: '{HOST.NAME}: Problem with FAN {#SNMPVALUE}'
priority: AVERAGE
graph_prototypes:
- uuid: d49600ffc1b8492e8155576c02464e0c
name: 'FAN {#SNMPVALUE}'
graph_items:
- color: C80000
item:
host: 'Dell iDRAC-9 by SNMP'
key: 'FanSpeed.[{#SNMPINDEX}]'
- uuid: f5886c38a0134d788e2b1a31103925c9
name: 'Memory Enumeration'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.1100.50.1.8.1]'
key: MemoryEnum
delay: '1d;50s/1-7,00:00-24:00'
item_prototypes:
- uuid: 664178a38e354018a37ffc02545546ea
name: 'Memory Slot {#SNMPVALUE} Manufacturer'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.1100.50.1.21.1.{#SNMPINDEX}'
key: 'MemManufacturer[{#SNMPINDEX}]'
delay: 1d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: Memory
- uuid: 79f4eefe9536462aa48fc466ebd79e10
name: 'Memory Slot {#SNMPVALUE} Part Number'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.1100.50.1.22.1.{#SNMPINDEX}'
key: 'MemPartlNo.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: Memory
- uuid: a5632a0575fd4f84932f2d17ea3c5b45
name: 'Memory Slot {#SNMPVALUE} Serial Number'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.1100.50.1.23.1.{#SNMPINDEX}'
key: 'MemSerialNo.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: Memory
- uuid: 1eed232fb7884fb286b4ab4b898e8489
name: 'Memory Slot {#SNMPVALUE} Size'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.1100.50.1.14.1.{#SNMPINDEX}'
key: 'MemSize.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
units: B
preprocessing:
- type: MULTIPLIER
parameters:
- '1024'
tags:
- tag: Application
value: Memory
- uuid: 595fcdbdfc7a49d9a4effa3f2ce9bf59
name: 'Memory Slot {#SNMPVALUE} Speed'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.1100.50.1.15.1.{#SNMPINDEX}'
key: 'MemSpeed.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
units: ns
tags:
- tag: Application
value: Memory
- uuid: 91b03e2aeca043bdb557a8fab7eac6da
name: 'Memory Slot {#SNMPVALUE} Status'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.1100.50.1.5.1.{#SNMPINDEX}'
key: 'MemStatus.[{#SNMPINDEX}]'
delay: 30m
history: 1w
trends: 90d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: Memory
trigger_prototypes:
- uuid: 902a7c7c62a5402bbfdd8f1dfe47e0dd
expression: '(last(/Dell iDRAC-9 by SNMP/MemStatus.[{#SNMPINDEX}])<>3) and (last(/Dell iDRAC-9 by SNMP/SystemPowerState)=4)'
name: '{HOST.NAME}: Problem with memory in slot {#SNMPVALUE}'
priority: HIGH
- uuid: f550cfa90cb04498a8b7769a2f380cd6
name: 'Network Enumeration'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.1100.90.1.2.1]'
key: NetworkEnum
delay: 1d
item_prototypes:
- uuid: cacc7517038742c69505d0c57a80984b
name: 'NIC {#SNMPINDEX} : Connection Status'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.1100.90.1.4.1.{#SNMPINDEX}'
key: 'NetConnStatus.[{#SNMPINDEX}]'
delay: 10m
history: 2d
trends: 90d
valuemap:
name: 'Dell iDRAC Network Device Connection Status'
tags:
- tag: Application
value: 'Network Cards'
- uuid: 75c36e9a97ab4a43ac45a21ce16c3047
name: 'NIC {#SNMPINDEX} : MAC Address'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.1100.90.1.15.1.{#SNMPINDEX}'
key: 'NetMAC.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'Network Cards'
- uuid: 6f12b1cbbd7747b2a6f0d69263a5f3a4
name: 'NIC {#SNMPINDEX} : Name'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.1100.90.1.6.1.{#SNMPINDEX}'
key: 'NetName.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'Network Cards'
- uuid: 58ce798d1db341558555dcffdeeb2245
name: 'NIC {#SNMPINDEX} : Slot'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.1100.90.1.30.1.{#SNMPINDEX}'
key: 'NetSlot.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'Network Cards'
- uuid: bf61f475a7594952becdca148820df1a
name: 'NIC {#SNMPINDEX} : Status'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.1100.90.1.3.1.{#SNMPINDEX}'
key: 'NetStatus.[{#SNMPINDEX}]'
delay: 5m
history: 2d
trends: 90d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: 'Network Cards'
trigger_prototypes:
- uuid: 44a0381ba6d84d2fae55c82067c99ea9
expression: '(last(/Dell iDRAC-9 by SNMP/NetStatus.[{#SNMPINDEX}])<>3) and (last(/Dell iDRAC-9 by SNMP/SystemPowerState)=4)'
name: '{HOST.NAME}: Error on NIC {#SNMPINDEX}'
priority: DISASTER
- uuid: e5a63e7f7ff74ffb989b7637e23102dd
name: 'Power Supply Enumeration'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.600.12.1.1.1]'
key: PowerSupplies
delay: 1d
item_prototypes:
- uuid: 6629cd6919b54f7b9878406d8b0f6a0e
name: 'Power Supply {#SNMPINDEX} Input Voltage'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.600.12.1.9.1.{#SNMPINDEX}'
key: 'PowerSupplyInputVoltage.[{#SNMPINDEX}]'
delay: 5m
history: 2d
trends: 90d
value_type: FLOAT
units: V
tags:
- tag: Application
value: Power
- uuid: 76f97d5b6d2d460d9c963bbee3dd4d05
name: 'Power Supply {#SNMPINDEX} Maximum Power'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.600.12.1.6.1.{#SNMPINDEX}'
key: 'PowerSupplyMaxPower.[{#SNMPINDEX}]'
delay: 1d
history: 2d
trends: 90d
value_type: FLOAT
units: W
preprocessing:
- type: MULTIPLIER
parameters:
- '0.1'
tags:
- tag: Application
value: Power
- uuid: 96a04a520abc4b97a0ff8d67fda693b5
name: 'Power Supply {#SNMPINDEX} Sensor State'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.600.12.1.11.1.{#SNMPINDEX}'
key: 'PowerSupplySensorState.[{#SNMPINDEX}]'
delay: 10m
history: 2d
trends: 90d
valuemap:
name: Dell_PSU_SensorState
tags:
- tag: Application
value: Power
- uuid: 3a338d2b3c874957a775bd2007ed4929
name: 'Power Supply {#SNMPINDEX} State Settings'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.600.12.1.4.1.{#SNMPINDEX}'
key: 'PowerSupplyStateSettings.[{#SNMPINDEX}]'
delay: 10m
history: 2d
trends: 90d
valuemap:
name: 'Dell PSU State Settings'
tags:
- tag: Application
value: Power
- uuid: a6745679820b46f1a04dce16f59f4266
name: 'Power Supply {#SNMPINDEX} Status'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.600.12.1.5.1.{#SNMPINDEX}'
key: 'PowerSupplyStatus.[{#SNMPINDEX}]'
delay: 5m
history: 2d
trends: 90d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: Power
trigger_prototypes:
- uuid: 8b7185117a3d4179bdeae2252fd73ae4
expression: '(last(/Dell iDRAC-9 by SNMP/PowerSupplySensorState.[{#SNMPINDEX}])<>1) and (last(/Dell iDRAC-9 by SNMP/SystemPowerState)=4)'
name: '{HOST.NAME}: Error on PSU {#SNMPINDEX} State'
priority: HIGH
- uuid: 7a11c7fa44754fa081e04a4731aecd67
expression: '(last(/Dell iDRAC-9 by SNMP/PowerSupplyStatus.[{#SNMPINDEX}])<>3) and (last(/Dell iDRAC-9 by SNMP/SystemPowerState)=4)'
name: '{HOST.NAME}: Problem with PSU {#SNMPINDEX}'
priority: HIGH
- uuid: b5f29fe57cd348caa72e1a8ce16c73e3
name: 'Processor Enumeration'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.1100.32.1.7.1]'
key: ProcEnum
delay: 1d
item_prototypes:
- uuid: a7f817077cac40c48bfe51478408f025
name: 'Processor {#SNMPINDEX} Status'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.1100.32.1.5.1.{#SNMPINDEX}'
key: 'ProcStatus.[{#SNMPINDEX}]'
delay: 5m
history: 2d
trends: 90d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: 'System Info'
trigger_prototypes:
- uuid: 4fa478adff53496582014fc5708e9165
expression: '(last(/Dell iDRAC-9 by SNMP/ProcStatus.[{#SNMPINDEX}])<>3) and (last(/Dell iDRAC-9 by SNMP/ProcStatus.[{#SNMPINDEX}])<>2) and (last(/Dell iDRAC-9 by SNMP/SystemPowerState)=4)'
name: '{HOST.NAME}: Error on Processor {#SNMPINDEX}'
priority: DISASTER
manual_close: 'YES'
- uuid: 261a67170ac445f7bcd4238871a5ef40
name: 'Temperature Enumeration'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.700.20.1.8.1]'
key: TempEnum
delay: 1d
item_prototypes:
- uuid: 9628dbcc292e47f0bfa2e1195c08d265
name: 'Temperature Sensor {#SNMPVALUE} Critical Low-Limit'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.700.20.1.13.1.{#SNMPINDEX}'
key: 'TempCritLowLimit.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
value_type: FLOAT
units: °C
preprocessing:
- type: MULTIPLIER
parameters:
- '0.1'
tags:
- tag: Application
value: Temperatures
- uuid: f3d39e76adfd44ab8bdf0f6ff5e74261
name: 'Temperature Sensor {#SNMPVALUE} Critical Up-Limit'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.700.20.1.10.1.{#SNMPINDEX}'
key: 'TempCritUpLimit.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
value_type: FLOAT
units: °C
preprocessing:
- type: MULTIPLIER
parameters:
- '0.1'
tags:
- tag: Application
value: Temperatures
- uuid: 7973320bc73645bdb36e940201fb6cf9
name: 'Temperature Sensor {#SNMPVALUE} Status'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.700.20.1.5.1.{#SNMPINDEX}'
key: 'TempStatus.[{#SNMPINDEX}]'
history: 2d
trends: 7d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: Temperatures
trigger_prototypes:
- uuid: 941520c8c86e48a9841be59ea8a806ba
expression: 'last(/Dell iDRAC-9 by SNMP/TempStatus.[{#SNMPINDEX}])<>3'
name: 'Problem with Temperature Sensor {#SNMPVALUE}'
priority: WARNING
- uuid: 79aab16ce2824f009fb51423bece183f
name: 'Temperature Sensor {#SNMPVALUE} Value'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.700.20.1.6.1.{#SNMPINDEX}'
key: 'TempValue.[{#SNMPINDEX}]'
history: 2d
trends: 7d
value_type: FLOAT
units: °C
valuemap:
name: 'Dell Open Manage System Status'
preprocessing:
- type: MULTIPLIER
parameters:
- '0.1'
tags:
- tag: Application
value: Temperatures
- uuid: db3bb46f65324d05b1047ab899e88a7a
name: 'Temperature Sensor {#SNMPVALUE} Warning Low-Limit'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.700.20.1.12.1.{#SNMPINDEX}'
key: 'TempWarnLowLimit.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
value_type: FLOAT
units: °C
preprocessing:
- type: MULTIPLIER
parameters:
- '0.1'
tags:
- tag: Application
value: Temperatures
- uuid: 4213d41882c04a06932910bcea7065c6
name: 'Temperature Sensor {#SNMPVALUE} Warning Up-Limit'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.700.20.1.11.1.{#SNMPINDEX}'
key: 'TempWarnUpLimit.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
value_type: FLOAT
units: °C
preprocessing:
- type: MULTIPLIER
parameters:
- '0.1'
tags:
- tag: Application
value: Temperatures
trigger_prototypes:
- uuid: 98fb33ff52824cde9f77d44b9800d1a1
expression: 'last(/Dell iDRAC-9 by SNMP/TempValue.[{#SNMPINDEX}]) >= last(/Dell iDRAC-9 by SNMP/TempCritUpLimit.[{#SNMPINDEX}])'
name: 'Temperature on {#SNMPVALUE} critically high'
priority: HIGH
description: 'Temperature of the item is above Critical Level.'
- uuid: 5fd36cf56b8a4f2fa8ef8233b47264c6
expression: 'last(/Dell iDRAC-9 by SNMP/TempValue.[{#SNMPINDEX}]) <= last(/Dell iDRAC-9 by SNMP/TempCritLowLimit.[{#SNMPINDEX}])'
name: 'Temperature on {#SNMPVALUE} critically low'
priority: HIGH
description: 'Temperature of the item is below Critical Level.'
- uuid: ab93bbaee9314293a14d4cfdf0aabb8f
expression: |
last(/Dell iDRAC-9 by SNMP/TempValue.[{#SNMPINDEX}]) > last(/Dell iDRAC-9 by SNMP/TempWarnUpLimit.[{#SNMPINDEX}])
and
last(/Dell iDRAC-9 by SNMP/TempValue.[{#SNMPINDEX}]) < last(/Dell iDRAC-9 by SNMP/TempCritUpLimit.[{#SNMPINDEX}])
name: 'Temperature on {#SNMPVALUE} to high'
priority: WARNING
description: 'Temperature of the item is above Warning Level.'
- uuid: e80406f4c93f41bb8a827a0feddd9a5a
expression: |
last(/Dell iDRAC-9 by SNMP/TempValue.[{#SNMPINDEX}]) < last(/Dell iDRAC-9 by SNMP/TempWarnLowLimit.[{#SNMPINDEX}])
and
last(/Dell iDRAC-9 by SNMP/TempValue.[{#SNMPINDEX}]) > last(/Dell iDRAC-9 by SNMP/TempCritLowLimit.[{#SNMPINDEX}])
name: 'Temperature on {#SNMPVALUE} to low'
priority: WARNING
description: 'Temperature of the item is below Warning Level.'
graph_prototypes:
- uuid: 9288cdf45b9e4d8093610ae2733fa34d
name: 'Temperature on sensor {#SNMPVALUE}'
graph_items:
- color: C80000
calc_fnc: ALL
item:
host: 'Dell iDRAC-9 by SNMP'
key: 'TempValue.[{#SNMPINDEX}]'
- uuid: 800da68df52f46918876b8479bc55756
name: 'Voltage Table Enumeration'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.4.600.20.1.8.1]'
key: VoltageTable
delay: 1d
item_prototypes:
- uuid: 952bc9ed2d4246e8975f1b2330872656
name: 'Voltage : {#SNMPVALUE} Status'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.4.600.20.1.5.1.{#SNMPINDEX}'
key: 'VoltageStatus.[{#SNMPINDEX}]'
delay: 10m
history: 1w
trends: 90d
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: Voltages
trigger_prototypes:
- uuid: d0915ba5e0db4183a016a7c1d0b84879
expression: '(last(/Dell iDRAC-9 by SNMP/VoltageStatus.[{#SNMPINDEX}])<>3) and (last(/Dell iDRAC-9 by SNMP/SystemPowerState)=4)'
name: '{HOST.NAME}: Error on Voltage Sensor {#SNMPVALUE}'
priority: AVERAGE
- uuid: cef1594bc23c4ee6bbffec9a68016050
name: 'Disk Volume Enumeration'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SNMPVALUE},1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.1]'
key: VolumeEnum
delay: 1d
item_prototypes:
- uuid: 6f7c6a0fb60447c1b6e80ceb2e988af8
name: 'Volume {#SNMPINDEX} : Virtual Disk State'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.4.{#SNMPINDEX}'
key: 'VolumeDiskState.[{#SNMPINDEX}]'
delay: 1h
trends: '0'
valuemap:
name: DellRaidVolumeState
tags:
- tag: Application
value: 'Storage and disks'
- uuid: 2cc2d913e704420e83d87fa505965675
name: 'Volume {#SNMPINDEX} : Name'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.36.{#SNMPINDEX}'
key: 'VolumeName.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
value_type: CHAR
tags:
- tag: Application
value: 'Storage and disks'
- uuid: f7dcded2e034480bbeb9a2b49b58886e
name: 'Volume {#SNMPINDEX} : Size'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.6.{#SNMPINDEX}'
key: 'VolumeSize.[{#SNMPINDEX}]'
delay: 1d
trends: '0'
units: B
preprocessing:
- type: MULTIPLIER
parameters:
- '1048576'
tags:
- tag: Application
value: 'Storage and disks'
- uuid: 6214c6c42e3a40fcb5ff8d5afc2c0b9e
name: 'Volume {#SNMPINDEX} : State'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.13.{#SNMPINDEX}'
key: 'VolumeState.[{#SNMPINDEX}]'
delay: 1h
trends: '0'
valuemap:
name: DellRaidLevel
tags:
- tag: Application
value: 'Storage and disks'
- uuid: 7ebd2ae2ca0c49279db32a84ee4daebb
name: 'Volume {#SNMPINDEX} : Status'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.20.{#SNMPINDEX}'
key: 'VolumeStatus.[{#SNMPINDEX}]'
delay: 1h
trends: '0'
valuemap:
name: 'Dell Open Manage System Status'
tags:
- tag: Application
value: 'Storage and disks'
trigger_prototypes:
- uuid: 0b382b66d1f74113946fb491efc4eb67
expression: '(last(/Dell iDRAC-9 by SNMP/VolumeDiskState.[{#SNMPINDEX}])<>2) and (last(/Dell iDRAC-9 by SNMP/SystemPowerState)=4)'
name: '{HOST.NAME}: Volume {#SNMPINDEX} Error'
priority: HIGH
- uuid: 86ef671039524e04a951431432375eda
expression: '(last(/Dell iDRAC-9 by SNMP/VolumeStatus.[{#SNMPINDEX}])<>3) and (last(/Dell iDRAC-9 by SNMP/SystemPowerState)=4)'
name: '{HOST.NAME}: Volume {#SNMPINDEX} Status Error'
priority: HIGH