-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCisco_UCS_templates.yaml
1491 lines (1489 loc) · 70.9 KB
/
Cisco_UCS_templates.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: '7.0'
template_groups:
- uuid: e960332b3f6c46a1956486d4f3f99fce
name: 'Templates/Server hardware'
templates:
- uuid: cb66d34564e44b3893442fc74cf6e951
template: 'Cisco UCS by SNMP'
name: 'Cisco UCS by SNMP'
description: |
Template Server Cisco UCS
MIBs used:
CISCO-UNIFIED-COMPUTING-COMPUTE-MIB
HOST-RESOURCES-MIB
SNMPv2-MIB
CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB
CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB
CISCO-UNIFIED-COMPUTING-STORAGE-MIB
Generated by official Zabbix template tool "Templator"
groups:
- name: 'Templates/Server hardware'
items:
- uuid: 250be2514e9246e08058a403bf674cf6
name: 'Cisco UCS: ICMP ping'
type: SIMPLE
key: icmpping
history: 7d
valuemap:
name: 'Service state'
tags:
- tag: component
value: health
- tag: component
value: network
triggers:
- uuid: 301541972752471e86046ce494a2febb
expression: 'max(/Cisco UCS by SNMP/icmpping,#3)=0'
name: 'Cisco UCS: ICMP ping 不可用'
priority: HIGH
description: 'Last three attempts returned timeout. Please check device connectivity.'
tags:
- tag: scope
value: availability
- uuid: c7eaba8c2b7d4b4aa14081957252e33e
name: 'Cisco UCS: ICMP loss'
type: SIMPLE
key: icmppingloss
history: 7d
value_type: FLOAT
units: '%'
tags:
- tag: component
value: health
- tag: component
value: network
triggers:
- uuid: e051db53cf32406bb0d5ff9cc8d5ce7b
expression: 'min(/Cisco UCS by SNMP/icmppingloss,5m)>{$ICMP_LOSS_WARN} and min(/Cisco UCS by SNMP/icmppingloss,5m)<100'
name: 'Cisco UCS: ICMP ping 丢失率较高'
opdata: 'Loss: {ITEM.LASTVALUE1}'
priority: WARNING
dependencies:
- name: 'Cisco UCS: ICMP ping 不可用'
expression: 'max(/Cisco UCS by SNMP/icmpping,#3)=0'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 88b4a6cc507748e19f08d0ffc9a15368
name: 'Cisco UCS: ICMP response time'
type: SIMPLE
key: icmppingsec
history: 7d
value_type: FLOAT
units: s
tags:
- tag: component
value: health
- tag: component
value: network
triggers:
- uuid: a11942dac3504b64977c2de3e575d2eb
expression: 'avg(/Cisco UCS by SNMP/icmppingsec,5m)>{$ICMP_RESPONSE_TIME_WARN}'
name: 'Cisco UCS: ICMP ping 响应时间长'
opdata: 'Value: {ITEM.LASTVALUE1}'
priority: WARNING
dependencies:
- name: 'Cisco UCS: ICMP ping 不可用'
expression: 'max(/Cisco UCS by SNMP/icmpping,#3)=0'
- name: 'Cisco UCS: ICMP ping 丢失率较高'
expression: 'min(/Cisco UCS by SNMP/icmppingloss,5m)>{$ICMP_LOSS_WARN} and min(/Cisco UCS by SNMP/icmppingloss,5m)<100'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 00b0172971e34784836d03e76b3480bd
name: 'Cisco UCS: SNMP traps (fallback)'
type: SNMP_TRAP
key: snmptrap.fallback
history: 7d
trends: '0'
value_type: LOG
description: 'The item is used to collect all SNMP traps unmatched by other snmptrap items'
logtimefmt: 'hh:mm:sszyyyy/MM/dd'
tags:
- tag: component
value: network
- uuid: 50df0ad347d94cffb871256c6340af11
name: 'Cisco UCS: System contact details'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.2.1.1.4.0
key: 'system.contact[sysContact.0]'
delay: 15m
history: 7d
trends: '0'
value_type: CHAR
description: |
MIB: SNMPv2-MIB
The textual identification of the contact person for this managed node, together with information on how to contact this person. If no contact information is known, the value is the zero-length string.
inventory_link: CONTACT
preprocessing:
- type: DISCARD_UNCHANGED_HEARTBEAT
parameters:
- 12h
tags:
- tag: component
value: system
- uuid: 235302070dc54f148b92027967a6ff2f
name: 'Cisco UCS: System description'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.2.1.1.1.0
key: 'system.descr[sysDescr.0]'
delay: 15m
history: 7d
trends: '0'
value_type: CHAR
description: |
MIB: SNMPv2-MIB
A textual description of the entity. This value should
include the full name and version identification of the system's hardware type, software operating-system, and
networking software.
preprocessing:
- type: DISCARD_UNCHANGED_HEARTBEAT
parameters:
- 12h
tags:
- tag: component
value: system
- uuid: a6d61b21f9f044a6912759e02787cb3f
name: 'Cisco UCS: Uptime (hardware)'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.2.1.25.1.1.0
key: 'system.hw.uptime[hrSystemUptime.0]'
delay: 30s
history: 7d
trends: '0'
units: uptime
description: |
MIB: HOST-RESOURCES-MIB
The amount of time since this host was last initialized. Note that this is different from sysUpTime in the SNMPv2-MIB [RFC1907] because sysUpTime is the uptime of the network management portion of the system.
preprocessing:
- type: CHECK_NOT_SUPPORTED
parameters:
- '-1'
error_handler: CUSTOM_VALUE
error_handler_params: '0'
- type: MULTIPLIER
parameters:
- '0.01'
tags:
- tag: component
value: system
- uuid: 7ba9b86064ad432a9e6d1922ca29edda
name: 'Cisco UCS: System location'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.2.1.1.6.0
key: 'system.location[sysLocation.0]'
delay: 15m
history: 7d
trends: '0'
value_type: CHAR
description: |
MIB: SNMPv2-MIB
The physical location of this node (e.g., `telephone closet, 3rd floor'). If the location is unknown, the value is the zero-length string.
inventory_link: LOCATION
preprocessing:
- type: DISCARD_UNCHANGED_HEARTBEAT
parameters:
- 12h
tags:
- tag: component
value: system
- uuid: 4674d8adc39343f7b46d21cae2ec1310
name: 'Cisco UCS: System name'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.2.1.1.5.0
key: system.name
delay: 15m
history: 7d
trends: '0'
value_type: CHAR
description: |
MIB: SNMPv2-MIB
An administratively-assigned name for this managed node.By convention, this is the node's fully-qualified domain name. If the name is unknown, the value is the zero-length string.
inventory_link: NAME
preprocessing:
- type: DISCARD_UNCHANGED_HEARTBEAT
parameters:
- 12h
tags:
- tag: component
value: system
triggers:
- uuid: 3544e4ac11b44d14a6161523081c470e
expression: 'last(/Cisco UCS by SNMP/system.name,#1)<>last(/Cisco UCS by SNMP/system.name,#2) and length(last(/Cisco UCS by SNMP/system.name))>0'
name: 'Cisco UCS: 系统名称已更改'
event_name: 'Cisco UCS: System name has changed (new name: {ITEM.VALUE})'
priority: INFO
description: 'The name of the system has changed. Acknowledge to close the problem manually.'
manual_close: 'YES'
tags:
- tag: scope
value: notice
- tag: scope
value: security
- uuid: 1b0551aa2d184c8d923788b5d159ed7c
name: 'Cisco UCS: Uptime (network)'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.2.1.1.3.0
key: 'system.net.uptime[sysUpTime.0]'
delay: 30s
history: 7d
trends: '0'
units: uptime
description: |
MIB: SNMPv2-MIB
The time (in hundredths of a second) since the network management portion of the system was last re-initialized.
preprocessing:
- type: MULTIPLIER
parameters:
- '0.01'
tags:
- tag: component
value: system
- uuid: 05fe3cb6d2004e7ea2d37742fc2549d3
name: 'Cisco UCS: System object ID'
type: SNMP_AGENT
snmp_oid: 1.3.6.1.2.1.1.2.0
key: 'system.objectid[sysObjectID.0]'
delay: 15m
history: 7d
trends: '0'
value_type: CHAR
description: |
MIB: SNMPv2-MIB
The vendor's authoritative identification of the network management subsystem contained in the entity. This value is allocated within the SMI enterprises subtree (1.3.6.1.4.1) and provides an easy and unambiguous means for determining`what kind of box' is being managed. For example, if vendor`Flintstones, Inc.' was assigned the subtree1.3.6.1.4.1.4242, it could assign the identifier 1.3.6.1.4.1.4242.1.1 to its `Fred Router'.
preprocessing:
- type: DISCARD_UNCHANGED_HEARTBEAT
parameters:
- 12h
tags:
- tag: component
value: system
- uuid: b80f6a30ad124a1ea863f2fdb868ba6f
name: 'Cisco UCS: SNMP agent availability'
type: INTERNAL
key: 'zabbix[host,snmp,available]'
history: 7d
description: |
Availability of SNMP checks on the host. The value of this item corresponds to availability icons in the host list.
Possible value:
0 - not available
1 - available
2 - unknown
valuemap:
name: zabbix.host.available
tags:
- tag: component
value: health
- tag: component
value: network
triggers:
- uuid: 3c487a6b20c746eca9a7efc6058a60d9
expression: 'max(/Cisco UCS by SNMP/zabbix[host,snmp,available],{$SNMP.TIMEOUT})=0'
name: 'Cisco UCS:无 SNMP 数据收集'
opdata: 'Current state: {ITEM.LASTVALUE1}'
priority: WARNING
description: 'SNMP is not available for polling. Please check device connectivity and SNMP settings.'
dependencies:
- name: 'Cisco UCS: ICMP ping 不可用'
expression: 'max(/Cisco UCS by SNMP/icmpping,#3)=0'
tags:
- tag: scope
value: availability
discovery_rules:
- uuid: 5c6518a1df0b45c09f3a2f186c3d4e3b
name: 'Array Controller Cache Discovery'
type: SNMP_AGENT
snmp_oid: 'discovery[{#DISKARRAY_CACHE_LOCATION},1.3.6.1.4.1.9.9.719.1.45.11.1.2]'
key: array.cache.discovery
delay: 1h
lifetime: 30d
enabled_lifetime_type: DISABLE_NEVER
description: 'Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable.'
item_prototypes:
- uuid: 52055929503041018d8261f15231f346
name: '{#DISKARRAY_CACHE_LOCATION}: 磁盘阵列缓存控制器电池状态'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.9.9.719.1.45.11.1.9.{#SNMPINDEX}'
key: 'system.hw.diskarray.cache.battery.status[cucsStorageRaidBatteryOperability.{#SNMPINDEX}]'
history: 7d
trends: '0'
description: 'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB'
valuemap:
name: 'CISCO-UNIFIED-COMPUTING-TC-MIB::CucsEquipmentOperability'
tags:
- tag: component
value: array
- tag: component
value: disk
- tag: component
value: storage
trigger_prototypes:
- uuid: 0b09b93602c94821ae1126e4f9550436
expression: 'count(/Cisco UCS by SNMP/system.hw.diskarray.cache.battery.status[cucsStorageRaidBatteryOperability.{#SNMPINDEX}],#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS}")=1'
name: '{#DISKARRAY_CACHE_LOCATION}: 磁盘阵列缓存控制器电池处于严重状态!'
opdata: 'Current state: {ITEM.LASTVALUE1}'
priority: AVERAGE
description: 'Please check the device for faults'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: d2af6de00e57412d8a2efcb20b1524a4
expression: 'count(/Cisco UCS by SNMP/system.hw.diskarray.cache.battery.status[cucsStorageRaidBatteryOperability.{#SNMPINDEX}],#1,"ne","{$DISK_ARRAY_CACHE_BATTERY_OK_STATUS}")=1'
name: '{#DISKARRAY_CACHE_LOCATION}: 磁盘阵列缓存控制器电池未处于最佳状态'
opdata: 'Current state: {ITEM.LASTVALUE1}'
priority: WARNING
description: 'Please check the device for faults'
dependencies:
- name: '{#DISKARRAY_CACHE_LOCATION}: 磁盘阵列缓存控制器电池处于严重状态!'
expression: 'count(/Cisco UCS by SNMP/system.hw.diskarray.cache.battery.status[cucsStorageRaidBatteryOperability.{#SNMPINDEX}],#1,"eq","{$DISK_ARRAY_CACHE_BATTERY_CRIT_STATUS}")=1'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: b77a56dcaa1947dd8c74b5764c36c22a
name: 'Array Controller Discovery'
type: SNMP_AGENT
snmp_oid: 'discovery[{#DISKARRAY_LOCATION},1.3.6.1.4.1.9.9.719.1.45.1.1.2]'
key: array.discovery
delay: 1h
lifetime: 30d
enabled_lifetime_type: DISABLE_NEVER
description: 'Scanning table of Array controllers: CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageControllerTable.'
item_prototypes:
- uuid: b0e1dd6aab454628bf46c0dba5293424
name: '{#DISKARRAY_LOCATION}: 磁盘阵列控制器型号'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.9.9.719.1.45.1.1.5.{#SNMPINDEX}'
key: 'system.hw.diskarray.model[cucsStorageControllerModel.{#SNMPINDEX}]'
delay: 1d
history: 7d
trends: '0'
value_type: CHAR
description: 'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB'
tags:
- tag: component
value: array
- tag: component
value: disk
- tag: component
value: storage
- uuid: 262d45ac58734c0096de2b96d8294f4c
name: '{#DISKARRAY_LOCATION}: 磁盘阵列控制器状态'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.9.9.719.1.45.1.1.6.{#SNMPINDEX}'
key: 'system.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}]'
history: 7d
trends: '0'
description: 'MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB'
valuemap:
name: 'CISCO-UNIFIED-COMPUTING-TC-MIB::CucsEquipmentOperability'
tags:
- tag: component
value: array
- tag: component
value: disk
- tag: component
value: storage
trigger_prototypes:
- uuid: 44ec209460fb4010a087e971427b2fde
expression: 'count(/Cisco UCS by SNMP/system.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}],#1,"eq","{$DISK_ARRAY_CRIT_STATUS:\"inoperable\"}")=1'
name: '{#DISKARRAY_LOCATION}:磁盘阵列控制器处于严重状态'
opdata: 'Current state: {ITEM.LASTVALUE1}'
priority: HIGH
description: 'Please check the device for faults'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: b419e0d296614f4285645954f8a7a970
expression: 'count(/Cisco UCS by SNMP/system.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}],#1,"eq","{$DISK_ARRAY_WARN_STATUS:\"degraded\"}")=1'
name: '{#DISKARRAY_LOCATION}: 磁盘阵列控制器处于警告状态'
opdata: 'Current state: {ITEM.LASTVALUE1}'
priority: AVERAGE
description: 'Please check the device for faults'
dependencies:
- name: '{#DISKARRAY_LOCATION}:磁盘阵列控制器处于严重状态'
expression: 'count(/Cisco UCS by SNMP/system.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}],#1,"eq","{$DISK_ARRAY_CRIT_STATUS:\"inoperable\"}")=1'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: a83202bb105d481c93464650272c14eb
expression: 'count(/Cisco UCS by SNMP/system.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}],#1,"ne","{$DISK_ARRAY_OK_STATUS:\"operable\"}")=1'
name: '{#DISKARRAY_LOCATION}:磁盘阵列控制器未处于最佳状态'
opdata: 'Current state: {ITEM.LASTVALUE1}'
priority: WARNING
description: 'Please check the device for faults'
dependencies:
- name: '{#DISKARRAY_LOCATION}:磁盘阵列控制器处于严重状态'
expression: 'count(/Cisco UCS by SNMP/system.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}],#1,"eq","{$DISK_ARRAY_CRIT_STATUS:\"inoperable\"}")=1'
- name: '{#DISKARRAY_LOCATION}: 磁盘阵列控制器处于警告状态'
expression: 'count(/Cisco UCS by SNMP/system.hw.diskarray.status[cucsStorageControllerOperState.{#SNMPINDEX}],#1,"eq","{$DISK_ARRAY_WARN_STATUS:\"degraded\"}")=1'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 3c067096a2fc40c390a335e40bacc089
name: 'FAN Discovery'
type: SNMP_AGENT
snmp_oid: 'discovery[{#FAN_LOCATION},1.3.6.1.4.1.9.9.719.1.15.12.1.2]'
key: fan.discovery
delay: 1h
lifetime: 30d
enabled_lifetime_type: DISABLE_NEVER
item_prototypes:
- uuid: f65860004eb74ab187d080782177370c
name: '{#FAN_LOCATION}: 风扇状态'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.9.9.719.1.15.12.1.9.{#SNMPINDEX}'
key: 'sensor.fan.status[cucsEquipmentFanOperState.{#SNMPINDEX}]'
delay: 3m
history: 7d
trends: '0'
description: |
MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB
Cisco UCS equipment:Fan:operState managed object property
valuemap:
name: 'CISCO-UNIFIED-COMPUTING-TC-MIB::CucsEquipmentOperability'
tags:
- tag: component
value: fan
trigger_prototypes:
- uuid: 5135b24c775f448c8998cadea3042e5b
expression: 'count(/Cisco UCS by SNMP/sensor.fan.status[cucsEquipmentFanOperState.{#SNMPINDEX}],#1,"eq","{$FAN_CRIT_STATUS:\"inoperable\"}")=1'
name: '{#FAN_LOCATION}: 风扇处于临界状态'
opdata: 'Current state: {ITEM.LASTVALUE1}'
priority: AVERAGE
description: 请检查风扇单元
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 895df7f89587441fa61223d5b2e442a2
expression: 'count(/Cisco UCS by SNMP/sensor.fan.status[cucsEquipmentFanOperState.{#SNMPINDEX}],#1,"eq","{$FAN_WARN_STATUS:\"degraded\"}")=1'
name: '{#FAN_LOCATION}: 风扇处于警告状态'
opdata: 'Current state: {ITEM.LASTVALUE1}'
priority: WARNING
description: 'Please check the fan unit'
dependencies:
- name: '{#FAN_LOCATION}: 风扇处于临界状态'
expression: 'count(/Cisco UCS by SNMP/sensor.fan.status[cucsEquipmentFanOperState.{#SNMPINDEX}],#1,"eq","{$FAN_CRIT_STATUS:\"inoperable\"}")=1'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 93247d3808394f7195356ced554d0d55
name: 'Physical Disk Discovery'
type: SNMP_AGENT
snmp_oid: 'discovery[{#DISK_LOCATION},1.3.6.1.4.1.9.9.719.1.45.4.1.2]'
key: physicalDisk.discovery
delay: 1h
lifetime: 30d
enabled_lifetime_type: DISABLE_NEVER
description: 'Scanning table of physical drive entries CISCO-UNIFIED-COMPUTING-STORAGE-MIB::cucsStorageLocalDiskTable.'
item_prototypes:
- uuid: 4dc3f8718af645998441c436263a1053
name: '{#DISK_LOCATION}: 物理磁盘介质类型'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.9.9.719.1.45.4.1.7.{#SNMPINDEX}'
key: 'system.hw.physicaldisk.media_type[cucsStorageLocalDiskModel.{#SNMPINDEX}]'
delay: 1h
history: 7d
trends: '0'
value_type: CHAR
description: |
MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB
Cisco UCS storage:LocalDisk:model managed object property. Actually returns 'HDD' or 'SSD'
tags:
- tag: component
value: disk
- tag: component
value: storage
- uuid: 6d45ac307cce40d481c556660dea3157
name: '{#DISK_LOCATION}: 物理磁盘型号名称'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.9.9.719.1.45.4.1.12.{#SNMPINDEX}'
key: 'system.hw.physicaldisk.model[cucsStorageLocalDiskSerial.{#SNMPINDEX}]'
delay: 1h
history: 7d
trends: '0'
value_type: CHAR
description: |
MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB
Cisco UCS storage:LocalDisk:serial managed object property. Actually returns part number code
tags:
- tag: component
value: disk
- tag: component
value: storage
- uuid: da12b7742c0343709ab4c1d97c0b0f4c
name: '{#DISK_LOCATION}: 磁盘大小'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.9.9.719.1.45.4.1.13.{#SNMPINDEX}'
key: 'system.hw.physicaldisk.size[cucsStorageLocalDiskSize.{#SNMPINDEX}]'
delay: 1h
history: 7d
trends: '0'
units: B
description: |
MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB
Cisco UCS storage:LocalDisk:size managed object property. In MB.
preprocessing:
- type: MULTIPLIER
parameters:
- '1048576'
tags:
- tag: component
value: disk
- tag: component
value: storage
- uuid: cb73c8de596549888d5f94b13619da3d
name: '{#DISK_LOCATION}: 物理磁盘状态'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.9.9.719.1.45.4.1.18.{#SNMPINDEX}'
key: 'system.hw.physicaldisk.status[cucsStorageLocalDiskDiskState.{#SNMPINDEX}]'
delay: 3m
history: 7d
trends: '0'
description: |
MIB: CISCO-UNIFIED-COMPUTING-STORAGE-MIB
Cisco UCS storage:LocalDisk:diskState managed object property.
valuemap:
name: 'CISCO-UNIFIED-COMPUTING-TC-MIB::CucsStoragePDriveStatus'
tags:
- tag: component
value: disk
- tag: component
value: storage
trigger_prototypes:
- uuid: 77ce5c74eefd4a9b818c11c8c1581cd8
expression: 'count(/Cisco UCS by SNMP/system.hw.physicaldisk.status[cucsStorageLocalDiskDiskState.{#SNMPINDEX}],#1,"eq","{$DISK_FAIL_STATUS:\"failed\"}")=1'
name: '{#DISK_LOCATION}:物理磁盘发生故障'
opdata: 'Current status: {ITEM.LASTVALUE1}'
priority: HIGH
description: 'Please check physical disk for warnings or errors'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 445919e1ec414fd888f8911abc65650b
expression: 'count(/Cisco UCS by SNMP/system.hw.physicaldisk.status[cucsStorageLocalDiskDiskState.{#SNMPINDEX}],#1,"eq","{$DISK_CRIT_STATUS:\"bad\"}")=1 or count(/Cisco UCS by SNMP/system.hw.physicaldisk.status[cucsStorageLocalDiskDiskState.{#SNMPINDEX}],#1,"eq","{$DISK_CRIT_STATUS:\"predictiveFailure\"}")=1'
name: '{#DISK_LOCATION}: 物理磁盘错误'
opdata: 'Current status: {ITEM.LASTVALUE1}'
priority: AVERAGE
description: 'Please check physical disk for warnings or errors'
dependencies:
- name: '{#DISK_LOCATION}:物理磁盘发生故障'
expression: 'count(/Cisco UCS by SNMP/system.hw.physicaldisk.status[cucsStorageLocalDiskDiskState.{#SNMPINDEX}],#1,"eq","{$DISK_FAIL_STATUS:\"failed\"}")=1'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: f8be95a8eb5a487c8c8f05d62e90f041
name: 'PSU Discovery'
type: SNMP_AGENT
snmp_oid: 'discovery[{#PSU_LOCATION},1.3.6.1.4.1.9.9.719.1.15.56.1.2]'
key: psu.discovery
delay: 1h
lifetime: 30d
enabled_lifetime_type: DISABLE_NEVER
item_prototypes:
- uuid: 0e869e57db494940b630fc2b8f10c60b
name: '{#PSU_LOCATION}: 电源状态'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.9.9.719.1.15.56.1.7.{#SNMPINDEX}'
key: 'sensor.psu.status[cucsEquipmentPsuOperState.{#SNMPINDEX}]'
delay: 3m
history: 7d
trends: '0'
description: |
MIB: CISCO-UNIFIED-COMPUTING-EQUIPMENT-MIB
Cisco UCS equipment:Psu:operState managed object property
valuemap:
name: 'CISCO-UNIFIED-COMPUTING-TC-MIB::CucsEquipmentOperability'
tags:
- tag: component
value: power
trigger_prototypes:
- uuid: 480d51d19be74b6e95f702b31baa5666
expression: 'count(/Cisco UCS by SNMP/sensor.psu.status[cucsEquipmentPsuOperState.{#SNMPINDEX}],#1,"eq","{$PSU_CRIT_STATUS:\"inoperable\"}")=1'
name: '{#PSU_LOCATION}: 电源处于紧急状态'
opdata: 'Current state: {ITEM.LASTVALUE1}'
priority: AVERAGE
description: 'Please check the power supply unit for errors'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 07fa90b5296b48d9b45cc6a76e72ceeb
expression: 'count(/Cisco UCS by SNMP/sensor.psu.status[cucsEquipmentPsuOperState.{#SNMPINDEX}],#1,"eq","{$PSU_WARN_STATUS:\"degraded\"}")=1'
name: '{#PSU_LOCATION}:电源处于警告状态'
opdata: 'Current state: {ITEM.LASTVALUE1}'
priority: WARNING
description: 'Please check the power supply unit for errors'
dependencies:
- name: '{#PSU_LOCATION}: 电源处于紧急状态'
expression: 'count(/Cisco UCS by SNMP/sensor.psu.status[cucsEquipmentPsuOperState.{#SNMPINDEX}],#1,"eq","{$PSU_CRIT_STATUS:\"inoperable\"}")=1'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 098a87f2e7094da9853bf2cb94677092
name: 'Temperature CPU Discovery'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.41.2.1.2]'
key: temp.cpu.discovery
delay: 1h
lifetime: 30d
enabled_lifetime_type: DISABLE_NEVER
item_prototypes:
- uuid: b0a744fc4e524406ab87ccc4fbaae3b2
name: '{#SENSOR_LOCATION}: 温度'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.9.9.719.1.41.2.1.10.{#SNMPINDEX}'
key: 'sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}]'
delay: 3m
history: 7d
value_type: FLOAT
units: °C
description: |
MIB: CISCO-UNIFIED-COMPUTING-PROCESSOR-MIB
Cisco UCS processor:EnvStats:temperature managed object property
tags:
- tag: component
value: temperature
trigger_prototypes:
- uuid: ccb9b9edd7ba4a62b33e34ebf3647825
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}],5m)<{$TEMP_CRIT_LOW:"CPU"}'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'min(/Cisco UCS by SNMP/sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}],5m)>{$TEMP_CRIT_LOW:"CPU"}+3'
name: '{#SENSOR_LOCATION}: 温度太低'
event_name: '{#SENSOR_LOCATION}: 温度太低: <{$TEMP_CRIT_LOW:"CPU"}'
opdata: 'Current value: {ITEM.LASTVALUE1}'
priority: AVERAGE
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 35549eb00faf48ff8fdb7769b8a13895
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}],5m)>{$TEMP_CRIT:"CPU"}'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'max(/Cisco UCS by SNMP/sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}],5m)<{$TEMP_CRIT:"CPU"}-3'
name: '{#SENSOR_LOCATION}: 温度高于临界阈值'
event_name: '{#SENSOR_LOCATION}: 温度高于临界阈值: >{$TEMP_CRIT:"CPU"}'
opdata: 'Current value: {ITEM.LASTVALUE1}'
priority: HIGH
description: 'This trigger uses temperature sensor values as well as temperature sensor status if available'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: eaadcea2dc0d468d886654c3ec380390
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}],5m)>{$TEMP_WARN:"CPU"}'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'max(/Cisco UCS by SNMP/sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}],5m)<{$TEMP_WARN:"CPU"}-3'
name: '{#SENSOR_LOCATION}: 温度高于警告阈值'
event_name: '{#SENSOR_LOCATION}: 温度高于警告阈值: >{$TEMP_WARN:"CPU"}'
opdata: 'Current value: {ITEM.LASTVALUE1}'
priority: WARNING
description: 'This trigger uses temperature sensor values as well as temperature sensor status if available'
dependencies:
- name: '{#SENSOR_LOCATION}: 温度高于临界阈值'
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}],5m)>{$TEMP_CRIT:"CPU"}'
recovery_expression: 'max(/Cisco UCS by SNMP/sensor.temp.value[cucsProcessorEnvStatsTemperature.{#SNMPINDEX}],5m)<{$TEMP_CRIT:"CPU"}-3'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 06216bba529b4fb2b1c52fb57d365c6a
name: 'Temperature Discovery'
type: SNMP_AGENT
snmp_oid: 'discovery[{#SENSOR_LOCATION},1.3.6.1.4.1.9.9.719.1.9.44.1.2]'
key: temp.discovery
delay: 1h
lifetime: 30d
enabled_lifetime_type: DISABLE_NEVER
item_prototypes:
- uuid: 1287280a5c9449bd96f11ad3b6a92455
name: '{#SENSOR_LOCATION}.IOH:温度'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.9.9.719.1.9.44.1.13.{#SNMPINDEX}'
key: 'sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}]'
delay: 3m
history: 7d
value_type: FLOAT
units: °C
description: |
MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB
Cisco UCS compute:RackUnitMbTempStats:ioh1Temp managed object property
tags:
- tag: component
value: temperature
trigger_prototypes:
- uuid: ce811e4247d5484caf4b095e829f162e
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}],5m)<{$TEMP_CRIT_LOW:"Ambient"}'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'min(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}],5m)>{$TEMP_CRIT_LOW:"Ambient"}+3'
name: '{#SENSOR_LOCATION}.IOH: 温度太低'
event_name: '{#SENSOR_LOCATION}.IOH: 温度太低: <{$TEMP_CRIT_LOW:"Ambient"}'
opdata: 'Current value: {ITEM.LASTVALUE1}'
priority: AVERAGE
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: a43eb91c4ae044729f4312466fcbd5da
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}],5m)>{$TEMP_CRIT:"Ambient"}'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'max(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}],5m)<{$TEMP_CRIT:"Ambient"}-3'
name: '{#SENSOR_LOCATION}.IOH: 温度高于临界阈值'
event_name: '{#SENSOR_LOCATION}.IOH:温度高于临界阈值: >{$TEMP_CRIT:"Ambient"}'
opdata: 'Current value: {ITEM.LASTVALUE1}'
priority: HIGH
description: 'This trigger uses temperature sensor values as well as temperature sensor status if available'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: da5d63d3411a4d2299d50cc21beae1c4
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}],5m)>{$TEMP_WARN:"Ambient"}'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'max(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}],5m)<{$TEMP_WARN:"Ambient"}-3'
name: '{#SENSOR_LOCATION}.IOH: 温度高于警告阈值'
event_name: '{#SENSOR_LOCATION}.IOH: 温度高于警告阈值 >{$TEMP_WARN:"Ambient"}'
opdata: 'Current value: {ITEM.LASTVALUE1}'
priority: WARNING
description: 'This trigger uses temperature sensor values as well as temperature sensor status if available'
dependencies:
- name: '{#SENSOR_LOCATION}.IOH: 温度高于临界阈值'
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}],5m)>{$TEMP_CRIT:"Ambient"}'
recovery_expression: 'max(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempSltatsIoh1Temp.{#SNMPINDEX}],5m)<{$TEMP_CRIT:"Ambient"}-3'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 9ee4d857346541c6870586a0c7989fc5
name: '{#SENSOR_LOCATION}.环境:温度'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.9.9.719.1.9.44.1.4.{#SNMPINDEX}'
key: 'sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}]'
delay: 3m
history: 7d
value_type: FLOAT
units: °C
description: |
MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB
Temperature readings of testpoint: {#SENSOR_LOCATION}.Ambient
tags:
- tag: component
value: temperature
trigger_prototypes:
- uuid: 4e293138ca374c96a18e4dbca8e45c72
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}],5m)>{$TEMP_CRIT:"Ambient"}'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'max(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}],5m)<{$TEMP_CRIT:"Ambient"}-3'
name: '{#SENSOR_LOCATION}.环境: 温度高于临界阈值'
event_name: '{#SENSOR_LOCATION}.环境: 温度高于临界阈值: >{$TEMP_CRIT:"Ambient"}'
opdata: 'Current value: {ITEM.LASTVALUE1}'
priority: HIGH
description: 'This trigger uses temperature sensor values as well as temperature sensor status if available'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 5139f8dd56094561a573a0b7b15a5ef0
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}],5m)<{$TEMP_CRIT_LOW:"Ambient"}'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'min(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}],5m)>{$TEMP_CRIT_LOW:"Ambient"}+3'
name: '{#SENSOR_LOCATION}.环境:温度太低'
event_name: '{#SENSOR_LOCATION}.环境:温度太低: <{$TEMP_CRIT_LOW:"Ambient"}'
opdata: 'Current value: {ITEM.LASTVALUE1}'
priority: AVERAGE
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: cf21a0259b6e4402815651357cdcce76
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}],5m)>{$TEMP_WARN:"Ambient"}'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'max(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}],5m)<{$TEMP_WARN:"Ambient"}-3'
name: '{#SENSOR_LOCATION}.环境:温度高于警告阈值'
event_name: '{#SENSOR_LOCATION}.环境:温度高于警告阈值 >{$TEMP_WARN:"Ambient"}'
opdata: 'Current value: {ITEM.LASTVALUE1}'
priority: WARNING
description: 'This trigger uses temperature sensor values as well as temperature sensor status if available'
dependencies:
- name: '{#SENSOR_LOCATION}.环境: 温度高于临界阈值'
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}],5m)>{$TEMP_CRIT:"Ambient"}'
recovery_expression: 'max(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsAmbientTemp.{#SNMPINDEX}],5m)<{$TEMP_CRIT:"Ambient"}-3'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 9dc8ac1ccf2a4671bef441db6297b2f9
name: '{#SENSOR_LOCATION}.前:温度'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.9.9.719.1.9.44.1.8.{#SNMPINDEX}'
key: 'sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}]'
delay: 3m
history: 7d
value_type: FLOAT
units: °C
description: |
MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB
Cisco UCS compute:RackUnitMbTempStats:frontTemp managed object property
tags:
- tag: component
value: temperature
trigger_prototypes:
- uuid: 98b9a6bd22e648e1bce3e5ee3ed5f6b4
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}],5m)>{$TEMP_CRIT:"Ambient"}'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'max(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}],5m)<{$TEMP_CRIT:"Ambient"}-3'
name: '{#SENSOR_LOCATION}.前部:温度高于临界阈值'
event_name: '{#SENSOR_LOCATION}.前部:温度高于临界阈值: >{$TEMP_CRIT:"Ambient"}'
opdata: 'Current value: {ITEM.LASTVALUE1}'
priority: HIGH
description: 'This trigger uses temperature sensor values as well as temperature sensor status if available'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: f208cad426cf45338b6487cf87588220
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}],5m)<{$TEMP_CRIT_LOW:"Ambient"}'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'min(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}],5m)>{$TEMP_CRIT_LOW:"Ambient"}+3'
name: '{#SENSOR_LOCATION}.前:温度过低'
event_name: '{#SENSOR_LOCATION}.前:温度过低 : <{$TEMP_CRIT_LOW:"Ambient"}'
opdata: 'Current value: {ITEM.LASTVALUE1}'
priority: AVERAGE
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 068f42b490ad41eb97a65dbc718ae566
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}],5m)>{$TEMP_WARN:"Ambient"}'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'max(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}],5m)<{$TEMP_WARN:"Ambient"}-3'
name: '{#SENSOR_LOCATION}.前:温度高于警告阈值'
event_name: '{#SENSOR_LOCATION}.前:温度高于警告阈值: >{$TEMP_WARN:"Ambient"}'
opdata: 'Current value: {ITEM.LASTVALUE1}'
priority: WARNING
description: 'This trigger uses temperature sensor values as well as temperature sensor status if available'
dependencies:
- name: '{#SENSOR_LOCATION}.前部:温度高于临界阈值'
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}],5m)>{$TEMP_CRIT:"Ambient"}'
recovery_expression: 'max(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsFrontTemp.{#SNMPINDEX}],5m)<{$TEMP_CRIT:"Ambient"}-3'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 631d46aad1b2403b9512299e2446a24e
name: '{#SENSOR_LOCATION}.后部:温度'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.9.9.719.1.9.44.1.21.{#SNMPINDEX}'
key: 'sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}]'
delay: 3m
history: 7d
value_type: FLOAT
units: °C
description: |
MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB
Cisco UCS compute:RackUnitMbTempStats:rearTemp managed object property
tags:
- tag: component
value: temperature
trigger_prototypes:
- uuid: bb81b628d804411480d3b4066d626f82
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}],5m)<{$TEMP_CRIT_LOW:"Ambient"}'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'min(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}],5m)>{$TEMP_CRIT_LOW:"Ambient"}+3'
name: '{#SENSOR_LOCATION}.后部:温度过低'
event_name: '{#SENSOR_LOCATION}.后部:温度过低: <{$TEMP_CRIT_LOW:"Ambient"}'
opdata: 'Current value: {ITEM.LASTVALUE1}'
priority: AVERAGE
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: ef03cd1e2356409ea2651fab589c9d19
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}],5m)>{$TEMP_CRIT:"Ambient"}'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'max(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}],5m)<{$TEMP_CRIT:"Ambient"}-3'
name: '{#SENSOR_LOCATION}.后部:温度高于临界阈值'
event_name: '{#SENSOR_LOCATION}.后部:温度高于临界阈值: >{$TEMP_CRIT:"Ambient"}'
opdata: 'Current value: {ITEM.LASTVALUE1}'
priority: HIGH
description: 'This trigger uses temperature sensor values as well as temperature sensor status if available'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: ed302fd9bdbe47cda2456aa7cdc6ce66
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}],5m)>{$TEMP_WARN:"Ambient"}'
recovery_mode: RECOVERY_EXPRESSION
recovery_expression: 'max(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}],5m)<{$TEMP_WARN:"Ambient"}-3'
name: '{#SENSOR_LOCATION}.后部:温度高于警告阈值'
event_name: '{#SENSOR_LOCATION}.后部:温度高于警告阈值: >{$TEMP_WARN:"Ambient"}'
opdata: 'Current value: {ITEM.LASTVALUE1}'
priority: WARNING
description: 'This trigger uses temperature sensor values as well as temperature sensor status if available'
dependencies:
- name: '{#SENSOR_LOCATION}.后部:温度高于临界阈值'
expression: 'avg(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}],5m)>{$TEMP_CRIT:"Ambient"}'
recovery_expression: 'max(/Cisco UCS by SNMP/sensor.temp.value[cucsComputeRackUnitMbTempStatsRearTemp.{#SNMPINDEX}],5m)<{$TEMP_CRIT:"Ambient"}-3'
tags:
- tag: scope
value: availability
- tag: scope
value: performance
- uuid: 0a96ab839bde40cf9d1d4db602c57a5e
name: 'Unit Discovery'
type: SNMP_AGENT
snmp_oid: 'discovery[{#UNIT_LOCATION},1.3.6.1.4.1.9.9.719.1.9.35.1.2]'
key: unit.discovery
delay: 1h
lifetime: 30d
enabled_lifetime_type: DISABLE_NEVER
item_prototypes:
- uuid: 9d0f6f5594a24c588da63fd29bf2152f
name: '{#UNIT_LOCATION}: 硬件型号名称'
type: SNMP_AGENT
snmp_oid: '1.3.6.1.4.1.9.9.719.1.9.35.1.32.{#SNMPINDEX}'
key: 'system.hw.model[cucsComputeRackUnitModel.{#SNMPINDEX}]'
delay: 1h
history: 7d
trends: '0'
value_type: CHAR
description: |
MIB: CISCO-UNIFIED-COMPUTING-COMPUTE-MIB
Cisco UCS compute:RackUnit:model managed object property
preprocessing:
- type: DISCARD_UNCHANGED_HEARTBEAT
parameters:
- 1d
tags:
- tag: component
value: system