forked from zabbix/community-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate_dl360p_gen8.yaml
985 lines (985 loc) · 25.8 KB
/
template_dl360p_gen8.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
zabbix_export:
version: '6.0'
date: '2021-11-21T21:20:12Z'
groups:
-
uuid: 7df96b18c230490a9a0a9e2307226338
name: Templates
templates:
-
uuid: af275b289eeb449e853147de6f159a49
template: 'IPMI HP DL360p Gen8'
name: 'IPMI HP DL360p Gen8'
groups:
-
name: Templates
items:
-
uuid: 6ec0d6a7d22549559b4f84896b600946
name: '01-Inlet Ambient'
type: IPMI
key: 01-InletAmbient
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '01-Inlet Ambient'
tags:
-
tag: Application
value: Temp
-
uuid: 39259142226441b2ab269e2309124778
name: '02-CPU 1'
type: IPMI
key: 02-CPU1
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '02-CPU 1'
tags:
-
tag: Application
value: Temp
-
uuid: 5110d47b5bc34a56ab5582b4e491829e
name: '03-CPU 2'
type: IPMI
key: 03-CPU2
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '03-CPU 2'
tags:
-
tag: Application
value: Temp
-
uuid: c3d86d55a78e47199d623b2dd9b8aec0
name: '04-P1 DIMM 1-6'
type: IPMI
key: 04-P1DIMM1-6
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '04-P1 DIMM 1-6'
tags:
-
tag: Application
value: 'Temp memory'
-
uuid: f8514b66e4a74357a634aaa9870d0581
name: '05-P1 DIMM 7-12'
type: IPMI
key: 05-P1DIMM7-12
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '05-P1 DIMM 7-12'
tags:
-
tag: Application
value: 'Temp memory'
-
uuid: 408187b45ba7462488fdafc9b0599b53
name: '06-P2 DIMM 1-6'
type: IPMI
key: 06-P2DIMM1-6
delay: '300;50/1-7,00:00-24:00'
value_type: FLOAT
units: °C
ipmi_sensor: '06-P2 DIMM 1-6'
tags:
-
tag: Application
value: 'Temp memory'
-
uuid: 5b1d61cf203549d0bc677097044db654
name: '07-P2 DIMM 7-12'
type: IPMI
key: 07-P2DIMM7-12
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '07-P2 DIMM 7-12'
tags:
-
tag: Application
value: 'Temp memory'
-
uuid: 0d149efbb85d405694d9a287ec766c49
name: '08-P1 Mem Zone'
type: IPMI
key: 08-P1MemZone
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '08-P1 Mem Zone'
tags:
-
tag: Application
value: Power
-
tag: Application
value: Temp
-
uuid: 26c07340d26a45dba2e72697c64a0144
name: '09-P1 Mem Zone'
type: IPMI
key: 09-P1MemZone
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '09-P1 Mem Zone'
tags:
-
tag: Application
value: Power
-
tag: Application
value: Temp
-
uuid: 839e0c34a56e4ec9b5ed520a0d64259f
name: '10-P2 Mem Zone'
type: IPMI
key: 10-P2MemZone
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '10-P2 Mem Zone'
tags:
-
tag: Application
value: Power
-
tag: Application
value: Temp
-
uuid: ab1f7eac625f46eea18fcdb67bcc5aca
name: '11-P2 Mem Zone'
type: IPMI
key: 11-P2MemZone
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '11-P2 Mem Zone'
tags:
-
tag: Application
value: Power
-
tag: Application
value: Temp
-
uuid: 8398691cecf54a44974915b79b8784f8
name: '12-HD Max'
type: IPMI
key: 12-HDMax
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '12-HD Max'
tags:
-
tag: Application
value: Drives
-
tag: Application
value: Temp
-
uuid: 90845fadfa4d4121b297a13f1c7b277b
name: '13-Chipset 1'
type: IPMI
key: 13-Chipset1
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '13-Chipset 1'
tags:
-
tag: Application
value: Temp
-
uuid: 4aa839ef9c594624a7819e32c0f8a1ef
name: '14-Chipset1 Zone'
type: IPMI
key: 14-Chipset1Zone
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '14-Chipset 1 Zone'
tags:
-
tag: Application
value: Temp
-
uuid: 65f4f140d20d4586896c886b70f9b473
name: '15-P/S 1 Inlet'
type: IPMI
key: 15-PS1Inlet
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '15-P/S 1 Inlet'
tags:
-
tag: Application
value: Power
-
tag: Application
value: Temp
-
uuid: a53f8afbdeb1481680c5ad09bf1fe25e
name: '16-P/S 1 Zone'
type: IPMI
key: 16-PS1Zone
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '16-P/S 1 Zone'
tags:
-
tag: Application
value: Power
-
tag: Application
value: Temp
-
uuid: d42bc93402764168a76757b34c469780
name: '17-P/S 2 Inlet'
type: IPMI
key: 17-PS2Inlet
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '17-P/S 2 Inlet'
tags:
-
tag: Application
value: Power
-
tag: Application
value: Temp
-
uuid: ce68f85b053b4f5f9159a8ec4b008371
name: '18-P/S 2 Zone'
type: IPMI
key: 18-PS2Zone
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '18-P/S 2 Zone'
tags:
-
tag: Application
value: Power
-
tag: Application
value: Temp
-
uuid: c92eb0bbd7da410a92092e5daf16a88a
name: '19-PCI #1'
type: IPMI
key: 19-PCI1
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '19-PCI #1'
tags:
-
tag: Application
value: Temp
-
uuid: cc3b9b7ae2c64a2a8ffb970f55360a21
name: '20-PCI #2'
type: IPMI
key: 20-PCI2
delay: '300'
value_type: FLOAT
units: C
ipmi_sensor: '20-PCI #2'
tags:
-
tag: Application
value: Temp
-
uuid: 3d757b5215a0481c9d4264efef482e0c
name: '21-VR P1'
type: IPMI
key: 21-VRP1
delay: '300'
value_type: FLOAT
units: C
ipmi_sensor: '21-VR P1'
tags:
-
tag: Application
value: Temp
-
uuid: 3346095351bb476e94d0297ae8209d54
name: '22-VR P2'
type: IPMI
key: 22-VRP2
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '22-VR P2'
tags:
-
tag: Application
value: Temp
-
uuid: d5ff0bbe95c54550aa22605f475fb94b
name: '23-VR P1 Mem'
type: IPMI
key: 23-VRP1Mem
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '23-VR P1 Mem'
tags:
-
tag: Application
value: Memory
-
tag: Application
value: Temp
-
uuid: 459cbcca8c5d4669a8dd48324a646958
name: '24-VR P1 Mem'
type: IPMI
key: 24-VRP1Mem
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '24-VR P1 Mem'
tags:
-
tag: Application
value: Memory
-
tag: Application
value: Temp
-
uuid: 7d6bb1d4861b4b0da9e72fa8c28f1e9c
name: '25-VR P2 Mem'
type: IPMI
key: 25-VRP2Mem
delay: '300'
value_type: FLOAT
units: C
ipmi_sensor: '25-VR P2 Mem'
tags:
-
tag: Application
value: Temp
-
uuid: 4a86f8027dca4a2f990dd9f55ad936c3
name: '26-VR P2 Mem'
type: IPMI
key: 26-VRP2Mem
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '26-VR P2 Mem'
tags:
-
tag: Application
value: Temp
-
uuid: 9e41964387704b0e855167416b5c771e
name: '27-VR P1Mem Zone'
type: IPMI
key: 27-VRP1MemZone
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '27-VR P1Mem Zone'
tags:
-
tag: Application
value: Memory
-
tag: Application
value: Temp
-
uuid: 37dbbdd1c18f4e64b233de52ee3a2e7f
name: '28-VR P1Mem Zone'
type: IPMI
key: 28-VRP1MemZone
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '28-VR P1Mem Zone'
tags:
-
tag: Application
value: Memory
-
tag: Application
value: Temp
-
uuid: 8489dacf0bdf4a32975913cee6557a1f
name: '29-VR P2Mem Zone'
type: IPMI
key: 29-VRP2MemZone
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '29-VR P2Mem Zone'
tags:
-
tag: Application
value: Memory
-
tag: Application
value: Temp
-
uuid: f79c8bee935847c9979bdc0a01a37aff
name: '30-VR P2Mem Zone'
type: IPMI
key: 30-VRP2MemZone
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '30-VR P2Mem Zone'
tags:
-
tag: Application
value: Memory
-
tag: Application
value: Temp
-
uuid: 09ad72f88bdb440f9284520679b05913
name: '31-HD Controller'
type: IPMI
key: 31-HDController
delay: '300'
value_type: FLOAT
units: C
ipmi_sensor: '31-HD Controller'
tags:
-
tag: Application
value: Temp
-
uuid: ba9e5ce24bd34908b286923acf9ef75e
name: '32-HD Cntlr Zone'
type: IPMI
key: 32-HDCntlrZone
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '32-HD Cntlr Zone'
tags:
-
tag: Application
value: Temp
-
uuid: cd4da97c6a5746d0a03cdfffa8c097a2
name: '33-PCI 1 Zone'
type: IPMI
key: 33-PCI1Zone
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '33-PCI 1 Zone'
tags:
-
tag: Application
value: Temp
-
uuid: d13db35f2d474adab464aed7fc0ab9eb
name: '34-PCI 1 Zone'
type: IPMI
key: 34-PCI1Zone
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '34-PCI 1 Zone'
tags:
-
tag: Application
value: Temp
-
uuid: 2b60b4b5597243b0affd627b12fd0ae8
name: '35-LOM Card'
type: IPMI
key: 35-LOMCard
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '35-LOM Card'
tags:
-
tag: Application
value: Temp
-
uuid: 6bffd43b96dd406887cfbf6ccc00fc19
name: '36-PCI 2 Zone'
type: IPMI
key: 36-PCI2Zone
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '36-PCI 2 Zone'
tags:
-
tag: Application
value: Temp
-
uuid: 05f3975c1ec44b308ab7a8a7c2c00c34
name: '37-System Board'
type: IPMI
key: 37-SystemBoard
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '37-System Board'
tags:
-
tag: Application
value: Temp
-
uuid: 09f5f122576147449e05915acc17535f
name: '38-System Board'
type: IPMI
key: 38-SystemBoard
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '38-System Board'
tags:
-
tag: Application
value: Temp
-
uuid: bda709edd1634fada0cbca000b672384
name: '39-Sys Exhaust'
type: IPMI
key: 39-SysExhaust
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '39-Sys Exhaust'
tags:
-
tag: Application
value: Temp
-
uuid: 4443f07b44e24ff3b1db1bdc7364c7f5
name: '40-Sys Exhaust'
type: IPMI
key: 40-SysExhaust
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '40-Sys Exhaust'
tags:
-
tag: Application
value: Temp
-
uuid: 1c24559cbac04ae7bafe70e07545503b
name: '41-Sys Exhaust'
type: IPMI
key: 41-SysExhaust
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '41-Sys Exhaust'
tags:
-
tag: Application
value: Temp
-
uuid: 0557c4fb6cdb4ff2a71a4a0446f5e896
name: '42-SuperCAP Max'
type: IPMI
key: 42-SuperCAPMax
delay: '300'
value_type: FLOAT
units: °C
ipmi_sensor: '42-SuperCAP Max'
tags:
-
tag: Application
value: Temp
-
uuid: 3f4953de7db04d8aaed88383c2754f45
name: 'C1 P1I Bay 1'
type: IPMI
key: C1P1IBay1
delay: '300'
ipmi_sensor: 'C1 P1I Bay 1'
tags:
-
tag: Application
value: Drives
-
uuid: 4451554b97f34c0c946f45d587b05699
name: 'C1 P1I Bay 2'
type: IPMI
key: C1P1IBay2
delay: '300'
ipmi_sensor: 'C1 P1I Bay 2'
tags:
-
tag: Application
value: Drives
-
uuid: b8d753b42902416587c9ada7aaa5b049
name: 'C1 P1I Bay 3'
type: IPMI
key: C1P1IBay3
delay: '300'
ipmi_sensor: 'C1 P1I Bay 3'
tags:
-
tag: Application
value: Drives
-
uuid: c8adb6fdd33442fa833885fb96704568
name: 'C1 P1I Bay 4'
type: IPMI
key: C1P1IBay4
delay: '300'
ipmi_sensor: 'C1 P1I Bay 4'
tags:
-
tag: Application
value: Drives
-
uuid: 8d337c7ebfab4b02ac9d1cf6676c3745
name: 'C1 P2I Bay 5'
type: IPMI
key: C1P2IBay5
delay: '300'
ipmi_sensor: 'C1 P2I Bay 5'
tags:
-
tag: Application
value: Drives
-
uuid: 902019b599dc4dc58ff039cd57e6c9f3
name: 'C1 P2I Bay 6'
type: IPMI
key: C1P2IBay6
delay: '300'
ipmi_sensor: 'C1 P2I Bay 6'
tags:
-
tag: Application
value: Drives
-
uuid: b9d2457bc67b46fabf33132e30e10b11
name: 'C1 P2I Bay 7'
type: IPMI
key: C1P2IBay7
delay: '300'
ipmi_sensor: 'C1 P2I Bay 7'
tags:
-
tag: Application
value: Drives
-
uuid: 13783b60c9b04792a2f7b293e4a5d9f1
name: 'C1 P2I Bay 8'
type: IPMI
key: C1P2IBay8
delay: '300'
ipmi_sensor: 'C1 P2I Bay 8'
tags:
-
tag: Application
value: Drives
-
uuid: 87fe143fe499486d90096f22c7358a96
name: 'Fan Block 1'
type: IPMI
key: FanBlock1
delay: '300'
value_type: FLOAT
units: '% Speed'
ipmi_sensor: 'Fan Block 1'
tags:
-
tag: Application
value: Fan
-
uuid: 2e7ce5ff8bc641a38cf38392d3397226
name: 'Fan Block 2'
type: IPMI
key: FanBlock2
delay: '300'
value_type: FLOAT
units: '% Speed'
ipmi_sensor: 'Fan Block 2'
tags:
-
tag: Application
value: Fan
-
uuid: 8a90e0af7d3d46c98ff49506b8c1bb89
name: 'Fan Block 3'
type: IPMI
key: FanBlock3
delay: '300'
value_type: FLOAT
units: '% Speed'
ipmi_sensor: 'Fan Block 3'
tags:
-
tag: Application
value: Fan
-
uuid: d50198af4d844aed8e5c3c85eea1f856
name: 'Fan Block 4'
type: IPMI
key: FanBlock4
delay: '300'
value_type: FLOAT
units: '% Speed'
ipmi_sensor: 'Fan Block 4'
tags:
-
tag: Application
value: Fan
-
uuid: ad3b7c7f6ad94d34aaf3edde854a8201
name: 'Fan Block 5'
type: IPMI
key: FanBlock5
delay: '300'
value_type: FLOAT
units: '% Speed'
ipmi_sensor: 'Fan Block 5'
valuemap:
name: 'Server HP Fan'
tags:
-
tag: Application
value: Fan
-
uuid: e4dd495d72a84158841956f46ccef420
name: 'Fan Block 6'
type: IPMI
key: FanBlock6
delay: '300'
value_type: FLOAT
units: '% Speed'
ipmi_sensor: 'Fan Block 6'
valuemap:
name: 'Server HP Fan'
tags:
-
tag: Application
value: Fan
-
uuid: 3ccd1a19eba6445fba725e03fe08fe12
name: 'Fan Block 7'
type: IPMI
key: FanBlock7
delay: '300'
value_type: FLOAT
units: '% Speed'
ipmi_sensor: 'Fan Block 7'
tags:
-
tag: Application
value: Fan
-
uuid: 80872ab3bc41437fa7dd255389b0e21a
name: 'Fan Block 8'
type: IPMI
key: FanBlock8
delay: '300'
value_type: FLOAT
units: '% Speed'
ipmi_sensor: 'Fan Block 8'
tags:
-
tag: Application
value: Fan
-
uuid: 9b557a874d6b45b0995d37636bdf2307
name: Fans
type: IPMI
key: Fans
delay: '90'
ipmi_sensor: Fans
valuemap:
name: 'Server HP Fan'
tags:
-
tag: Application
value: Health
triggers:
-
uuid: 82091369bdd94e8f8d1e5461db46b667
expression: 'last(/IPMI HP DL360p Gen8/Fans)=0'
name: 'Fan error on {HOSTNAME}'
priority: AVERAGE
-
uuid: 403d75fa42ed4b79a518a00232fab14d
name: Memory
type: IPMI
key: Memory
delay: '300'
ipmi_sensor: Memory
valuemap:
name: 'Server HP Health'
tags:
-
tag: Application
value: Health
triggers:
-
uuid: 97a22a03441e474ebb9a6c692efbec81
expression: 'last(/IPMI HP DL360p Gen8/Memory)=1'
name: 'Memory error on {HOSTNAME}'
priority: HIGH
-
uuid: 8c34a980ea98449ea651b6c43a491d04
name: 'Power Meter'
type: IPMI
key: PowerMeter
delay: '300'
value_type: FLOAT
ipmi_sensor: 'Power Meter'
tags:
-
tag: Application
value: Power
-
uuid: 85bbca1cc62f4776b767a1c2a402b785
name: 'Power Supplies'
type: IPMI
key: PowerSupplies
delay: '300'
value_type: FLOAT
ipmi_sensor: 'Power Supplies'
tags:
-
tag: Application
value: Power
-
uuid: 2b51abe29c5f4004865cff302b7f78ff
name: 'Power Supply 1'
type: IPMI
key: PowerSupply1
delay: '300'
value_type: FLOAT
ipmi_sensor: 'Power Supply 1'
tags:
-
tag: Application
value: Power
-
uuid: 832c9fd5b7bf47ee9f89a13590b144c5
name: 'Power Supply 2'
type: IPMI
key: PowerSupply2
delay: '300'
value_type: FLOAT
ipmi_sensor: 'Power Supply 2'
tags:
-
tag: Application
value: Power
-
uuid: 2e1c4d628424425da7de96a9eccbfce7
name: 'Sys Health LED'
type: IPMI
key: SysHealthLED
delay: '300'
ipmi_sensor: 'Sys. Health LED'
valuemap:
name: 'Server HP Fan'
tags:
-
tag: Application
value: Health
triggers:
-
uuid: 02ce2f4227534f1682d8e1a07faa592c
expression: 'last(/IPMI HP DL360p Gen8/SysHealthLED)=0'
name: 'Sys. Health LED error on {HOSTNAME}'
priority: HIGH
-
uuid: 868573b2a8b94dafa73ba17b37f14e17
name: UIDLight
type: IPMI
key: UIDLight
delay: '300'
ipmi_sensor: 'UID Light'
valuemap:
name: 'Server HP Health'
tags:
-
tag: Application
value: Health
valuemaps:
-
uuid: 9cbac95c0e4b4c4f91fb53fa1683e3cc
name: 'Server HP Fan'
mappings:
-
value: '0'
newvalue: Error
-
value: '1'
newvalue: OK
-
uuid: 63fe6a44b2b1430ba2be80570486448d
name: 'Server HP Health'
mappings:
-
value: '0'
newvalue: OK
-
value: '1'
newvalue: Error
triggers:
-
uuid: 2edc6661ae5740f29344836578572e8c
expression: 'last(/IPMI HP DL360p Gen8/02-CPU1)>70 or last(/IPMI HP DL360p Gen8/03-CPU2)>70'
name: 'CPU temperature critical on {HOSTNAME}'
priority: HIGH
-
uuid: 8844ba07b2ef4254a45bcf2608c28baa
expression: 'last(/IPMI HP DL360p Gen8/C1P1IBay1)>1 or last(/IPMI HP DL360p Gen8/C1P1IBay2)>1 or last(/IPMI HP DL360p Gen8/C1P1IBay3)>1 or last(/IPMI HP DL360p Gen8/C1P1IBay4)>1 or last(/IPMI HP DL360p Gen8/C1P2IBay5)>1 or last(/IPMI HP DL360p Gen8/C1P2IBay6)>1 or last(/IPMI HP DL360p Gen8/C1P2IBay7)>1 or last(/IPMI HP DL360p Gen8/C1P2IBay8)>1'
name: 'Disk errors on {HOSTNAME}'
priority: AVERAGE
-
uuid: ea82a33453414c338c70e681c718e403
expression: |
last(/IPMI HP DL360p Gen8/C1P1IBay1)=0 or last(/IPMI HP DL360p Gen8/C1P1IBay2)=0 or last(/IPMI HP DL360p Gen8/C1P1IBay3)=0 or last(/IPMI HP DL360p Gen8/C1P1IBay4)=0 or
last(/IPMI HP DL360p Gen8/C1P2IBay5)=0 or
last(/IPMI HP DL360p Gen8/C1P2IBay6)=0 or
last(/IPMI HP DL360p Gen8/C1P2IBay7)=0 or
last(/IPMI HP DL360p Gen8/C1P2IBay8)=0
name: 'Disk failure on {HOSTNAME}'
priority: HIGH
-
uuid: f0b5af7ff0f740aa87e0f4ca3d3cd37d
expression: 'last(/IPMI HP DL360p Gen8/PowerSupply1)=0 or last(/IPMI HP DL360p Gen8/PowerSupply2)=0'
name: 'Power supply failure on {HOSTNAME}'
priority: HIGH
graphs:
-
uuid: 596bfa6ed1514d618e67a4e9fa190e4e
name: CPU
ymax_type_1: FIXED
graph_items:
-
color: 0000EE
item:
host: 'IPMI HP DL360p Gen8'
key: 02-CPU1
-
sortorder: '1'
color: 00C800
item:
host: 'IPMI HP DL360p Gen8'
key: 03-CPU2