-
Notifications
You must be signed in to change notification settings - Fork 1
/
zbx_HP_SNMP_Autodiscovery_templates.xml
2009 lines (2009 loc) · 96 KB
/
zbx_HP_SNMP_Autodiscovery_templates.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<zabbix_export>
<version>4.4</version>
<date>2020-05-07T19:21:30Z</date>
<groups>
<group>
<name>Template Switches</name>
</group>
</groups>
<templates>
<template>
<template>Template_HP_SNMP_Autodiscovery</template>
<name>Template_HP_SNMP_Autodiscovery</name>
<groups>
<group>
<name>Template Switches</name>
</group>
</groups>
<applications>
<application>
<name>HP Drive Array</name>
</application>
<application>
<name>HP Health</name>
</application>
<application>
<name>HP System Info</name>
</application>
<application>
<name>Memory Modules</name>
</application>
</applications>
<items>
<item>
<name>HP ASR Condition</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>.1.3.6.1.4.1.232.6.2.5.17.0</snmp_oid>
<key>cpqHeAsrCondition</key>
<delay>300</delay>
<history>7d</history>
<description>CPQHLTH-MIB::
cpqHeAsrCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the overall condition of the ASR feature."
::= { cpqHeAsr 17 }</description>
<applications>
<application>
<name>HP Health</name>
</application>
</applications>
<valuemap>
<name>cpqCondition</name>
</valuemap>
<triggers>
<trigger>
<expression>{last()}>2</expression>
<name>{HOST.NAME}: Server was restarted by ASR (HP Automatic Server Recovery)</name>
<priority>HIGH</priority>
<description>HP Automatic Server Recovery (ASR) is reporting a "degraded" or "failed" state. ASR is a watchdog timer which automatically restarts a server if the server hangs or crashes.
When a server is restarted by ASR, a flag is set, and an alert is triggered until the flag is reset.
To reset the ASR flag and clear this alert, go to the server's System Management Homepage, then select "Autorecovery" in the "Recovery" section. There you can clear the ASR condition.
HP System Management Homepage (may require starting service hpsmhd):
https://{HOST.CONN}:2381</description>
</trigger>
</triggers>
</item>
<item>
<name>HP Event Log Condition</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>.1.3.6.1.4.1.232.6.2.11.2.0</snmp_oid>
<key>cpqHeEventLogCondition</key>
<delay>600</delay>
<history>7d</history>
<trends>30d</trends>
<description>This event log item shows an error when there are IML log items which have not been marked as "repaired" in the System Management Homepage. Because we monitor the individual subsystems, this item is redundant and we don't need to alert on it.
CPQHLTH-MIB::
cpqHeEventLogCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the overall condition of the Integrated
Management Log feature."
::= { cpqHeEventLog 2 }</description>
<applications>
<application>
<name>HP Health</name>
</application>
</applications>
<valuemap>
<name>cpqCondition</name>
</valuemap>
</item>
<item>
<name>HP Fault Tolerant Power Supply Condition</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>.1.3.6.1.4.1.232.6.2.9.1.0</snmp_oid>
<key>cpqHeFltTolPwrSupplyCondition</key>
<delay>300</delay>
<history>7d</history>
<trends>30d</trends>
<description>Overall condition of power supplies. Because we monitor the individual subsystems, this item is redundant and we don't need to alert on it.
CPQHLTH-MIB::
cpqHeFltTolPwrSupplyCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the overall condition of the fault tolerant
power supply sub-system."
::= { cpqHeFltTolPwrSupply 1 }</description>
<applications>
<application>
<name>HP Health</name>
</application>
</applications>
<valuemap>
<name>cpqCondition</name>
</valuemap>
</item>
<item>
<name>HP Health MIB Condition</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>1.3.6.1.4.1.232.6.1.3.0</snmp_oid>
<key>cpqHeMibCondition</key>
<delay>600</delay>
<history>7d</history>
<trends>30d</trends>
<description>This item shows an error when any underlying subsystem is not OK. Because we monitor the individual subsystems, this item is redundant and we don't need to alert on it.
CPQHLTH-MIB::
cpqHeEventLogCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the overall condition of the Integrated
Management Log feature."
::= { cpqHeEventLog 2 }</description>
<applications>
<application>
<name>HP Health</name>
</application>
</applications>
<valuemap>
<name>cpqCondition</name>
</valuemap>
<triggers>
<trigger>
<expression>{nodata(3600)}=1</expression>
<name>{HOST.NAME}: HP SNMP Agents are not responding</name>
<priority>WARNING</priority>
<description>The HP SNMP Agents for this host have not responded to SNMP queries for more than 1 hour. If the host is otherwise operating properly, it can mean that the HP SNMP agents are not working properl, or that the SNMP service has stopped. A less likely cause is a network issue - SNMP uses UDP port 161,
To restart, as root:
/sbin/service hp-snmp-agents restart
/sbin/service snmpd restart</description>
</trigger>
</triggers>
</item>
<item>
<name>HP Resilient Memory Condition</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>.1.3.6.1.4.1.232.6.2.14.4.0</snmp_oid>
<key>cpqHeResilientMemCondition</key>
<delay>300</delay>
<history>7d</history>
<description>Overall status of memory system. If we monitor the individual modules via discovery rule "Memory Modules", then this item is redundant and we don't need to alert on it.
CPQHLTH-MIB::
cpqHeResilientMemCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the current condition of the Advanced
Memory Protection subsystem.
The following states are supported:
other(1)
The system does not support fault tolerant memory or the
state cannot be determined by the Management Agent.
ok(2)
This system is operating normally.
degraded(3)
The system is running in a degraded state because the
Advanced Memory Protection subsystem has been engaged."
::= { cpqHeResilientMemory 4 }</description>
<applications>
<application>
<name>HP Health</name>
</application>
</applications>
<valuemap>
<name>cpqCondition</name>
</valuemap>
<triggers>
<trigger>
<expression>{last()}=3</expression>
<name>{HOST.NAME}: HP Resilient Memory condition is degraded</name>
<priority>AVERAGE</priority>
<description>The Advanced Memory Protection, probably because of correctable memory errors. The DIMM which had the errors should be replaced. Check the iLO or system management homepage for more detail, and to find out which DIMM.
HP System Management Homepage (may require starting service hpsmhd):
https://{HOST.CONN}:2381</description>
</trigger>
<trigger>
<expression>{last()}=1</expression>
<name>{HOST.NAME}: HP Resilient Memory condition is unknown</name>
<priority>WARNING</priority>
<description>The condition of the resilient memory system cannot be determined (condition reported is "other"). Try, in this order:
1) resetting the iLO from the iLO screen
2) restarting the HP SNMP agents:
/sbin/service hp-snmp-agents restart
3) restarting snmpd:
/sbin/service snmpd restart
HP System Management Homepage (may require starting service hpsmhd):
https://{HOST.CONN}:2381</description>
</trigger>
</triggers>
</item>
<item>
<name>HP Thermal Condition</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>.1.3.6.1.4.1.232.6.2.6.1.0</snmp_oid>
<key>cpqHeThermalCondition</key>
<delay>300</delay>
<history>7d</history>
<trends>30d</trends>
<description>This item is a combined status of all temperature and fan items present. By monitoring this item, it's not necessary to monitor each individual fan and temperature item.
CPQHLTH-MIB::
cpqHeThermalCondition OBJECT-TYPE
SYNTAX INTEGER {
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"This value specifies the overall condition of the system's
thermal environment."
::= { cpqHeThermal 1 }</description>
<applications>
<application>
<name>HP Health</name>
</application>
</applications>
<valuemap>
<name>cpqCondition</name>
</valuemap>
<triggers>
<trigger>
<expression>{last()}>2</expression>
<name>{HOST.NAME}: HP Thermal Condition is Degraded</name>
<priority>HIGH</priority>
<description>Something is wrong with this server's cooling system. Either a non-required fan is not operating properly, or a temp sensor is outside of normal operating range.
The server will automatically shutdown if a required fan is not operating properly, or if a temp sensor detects a condition that could permanently damage the system.
Check server's iLO or or System Management Homepage for more detail.
HP System Management Homepage (may require starting service hpsmhd):
https://{HOST.CONN}:2381</description>
</trigger>
</triggers>
</item>
<item>
<name>HP Product Name</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>1.3.6.1.4.1.232.2.2.4.2.0</snmp_oid>
<key>cpqSiProductName</key>
<delay>28800</delay>
<history>1d</history>
<trends>0</trends>
<value_type>TEXT</value_type>
<description>CPQSINFO-MIB::
cpqSiProductName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The machine product name.
The name of the machine used in this system."
::= { cpqSiSystemBoard 2 }</description>
<applications>
<application>
<name>HP System Info</name>
</application>
</applications>
</item>
<item>
<name>HP System Product ID</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>.1.3.6.1.4.1.232.2.2.2.6.0</snmp_oid>
<key>cpqSiSysProductId</key>
<delay>28800</delay>
<history>1d</history>
<trends>0</trends>
<value_type>TEXT</value_type>
<description>CPQSINFO-MIB::
cpqSiSysProductId OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
DESCRIPTION
"The product id string of the system unit.
The string will be empty if the system does not report the
product id."
::= { cpqSiAsset 6 }</description>
<applications>
<application>
<name>HP System Info</name>
</application>
</applications>
</item>
<item>
<name>HP System Serial Number</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>.1.3.6.1.4.1.232.2.2.2.1.0</snmp_oid>
<key>cpqSiSysSerialNum</key>
<delay>28800</delay>
<history>1d</history>
<trends>0</trends>
<value_type>TEXT</value_type>
<description>CPQSINFO-MIB::
cpqSiSysSerialNum OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
DESCRIPTION
"The serial number of the physical system unit.
The string will be empty if the system does not report the
serial number function."
::= { cpqSiAsset 1 }</description>
<applications>
<application>
<name>HP System Info</name>
</application>
</applications>
</item>
</items>
<discovery_rules>
<discovery_rule>
<name>Drive Array Accelerators</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>discovery[{#SNMPVALUE},.1.3.6.1.4.1.232.3.2.2.2.1.1]</snmp_oid>
<key>snmp.discovery[DaAccelerators]</key>
<delay>3600</delay>
<lifetime>0</lifetime>
<description>Walk the cpqDaCntlrHwLocation table to get contoller locations:
CPQIDA-MIB::
cpqDaAccelCntlrIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Array Accelerator Board Controller Index.
This value is a logical number whose meaning is OS dependent.
The value has a direct mapping to the controller table index
such that controller 'i' has accelerator table entry 'i'."
::= { cpqDaAccelEntry 1 }</description>
<item_prototypes>
<item_prototype>
<name>HP Drive Array Accelerator Backup Power Source {#SNMPINDEX}</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>1.3.6.1.4.1.232.3.2.2.2.1.16.{#SNMPINDEX}</snmp_oid>
<key>cpqDaAccelBackupPowerSource[{#SNMPINDEX}]</key>
<delay>28800</delay>
<history>1d</history>
<trends>1d</trends>
<description>CPQIDA-MIB::
cpqDaAccelBackupPowerSource OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
battery(2),
capacitor(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Array Accelerator Board Backup Power Source.
This describes the backup power source being used by the Array
Accelerator board.
The status can be:
Other (1)
Indicates that the instrument agent does not recognize the backup
power source used by the Array Accelerator board. You may need
to upgrade the instrument agent.
Battery (2)
Indicates that a battery is the backup power source for the Array
Accelerator board.
Capacitor (3)
Indicates that a capacitor is the backup power source for the
Array Accelerator board."
::= { cpqDaAccelEntry 16 }</description>
<applications>
<application>
<name>HP Drive Array</name>
</application>
</applications>
<valuemap>
<name>cpqDaAccelBackupPowerSource</name>
</valuemap>
</item_prototype>
<item_prototype>
<name>HP Drive Array Accelerator Battery Status {#SNMPINDEX}</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>1.3.6.1.4.1.232.3.2.2.2.1.6.{#SNMPINDEX}</snmp_oid>
<key>cpqDaAccelBattery[{#SNMPINDEX}]</key>
<delay>600</delay>
<history>7d</history>
<trends>90d</trends>
<description>CPQIDA-MIB::
cpqDaAccelBattery OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
ok(2),
recharging(3),
failed(4),
degraded(5),
notPresent(6),
capacitorFailed(7)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Array Accelerator Board Backup Power Status.
This monitors the status of each backup power source on the board.
The backup power source can only recharge when the system has
power applied. The type of backup power source used is indicated
by cpqDaAccelBackupPowerSource.
The following values are valid:
Other (1)
Indicates that the instrument agent does not recognize
battery status. You may need to update your software.
Ok (2)
Indicates that a particular battery pack is fully charged.
Charging (3)
The battery power is less than 75%. The Drive Array
Controller is attempting to recharge the battery. A
battery can take as long as 36 hours to fully recharge.
After 36 hours, if the battery has not recharged, it is
considered failed.
Failed (4)
The battery pack is below the sufficient voltage level and
has not recharged in 36 hours. Your Array Accelerator board
needs to be serviced.
Degraded (5)
The battery is still operating, however, one of the batteries
in the pack has failed to recharge properly. Your Array
Accelerator board should be serviced as soon as possible.
NotPresent (6)
There are no batteries associated with this controller.
Capacitor Failed (7)
The capacitor is below the sufficient voltage level and
has not recharged in 10 minutes. Your Array Accelerator board
needs to be serviced."
::= { cpqDaAccelEntry 6 }</description>
<applications>
<application>
<name>HP Drive Array</name>
</application>
</applications>
<valuemap>
<name>cpqDaAccelBatteryStatus</name>
</valuemap>
<trigger_prototypes>
<trigger_prototype>
<expression>{max(86400)}=4</expression>
<name>{HOST.NAME}: Drive Array Accelerator {#SNMPINDEX} battery has failed</name>
<priority>WARNING</priority>
<description>The battery provides backup power for the cache memory, to prevent data loss in the event of a power failure. This battery has failed, so the Drive Array Controller will disable that cache, and disk performance will be bad until the battery is replaced. The battery needs to be replaced. Suggested actions are to write a ticket to replace the battery, then acknowledge the alert, writing the ticket number in the notes. This will prevent a stream of continuing alerts.
When the battery is on the edge of failing, it can move in and out of the failed state. This can have the effect of restarting an alert which has already been acknowledged. To prevent this, this trigger is held until there has been no failure reported in the last 24 hours.
HP System Management Homepage (may require starting service hpsmhd):
https://{HOST.CONN}:2381</description>
</trigger_prototype>
</trigger_prototypes>
</item_prototype>
<item_prototype>
<name>HP Drive Array Accelerator Condition {#SNMPINDEX}</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>1.3.6.1.4.1.232.3.2.2.2.1.9.{#SNMPINDEX}</snmp_oid>
<key>cpqDaAccelCondition[{#SNMPINDEX}]</key>
<delay>600</delay>
<history>7d</history>
<trends>90d</trends>
<description>CPQIDA-MIB::
cpqDaAccelCondition OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The condition of the device. This value represents the overall
condition of this array accelerator."
::= { cpqDaAccelEntry 9 }</description>
<applications>
<application>
<name>HP Drive Array</name>
</application>
</applications>
<valuemap>
<name>cpqCondition</name>
</valuemap>
</item_prototype>
<item_prototype>
<name>HP Drive Array Accelerator Status {#SNMPINDEX}</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>1.3.6.1.4.1.232.3.2.2.2.1.2.{#SNMPINDEX}</snmp_oid>
<key>cpqDaAccelStatus[{#SNMPINDEX}]</key>
<delay>600</delay>
<history>7d</history>
<trends>90d</trends>
<description>CPQIDA-MIB::
cpqDaAccelStatus OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
invalid(2),
enabled(3),
tmpDisabled(4),
permDisabled(5)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Array Accelerator Board Status.
This describes the status of the accelerator write cache.
The status can be:
Other (1)
Indicates that the instrument agent does not recognize the
status of the Array Accelerator. You may need to upgrade
the instrument agent.
Invalid (2)
Indicates that an Array Accelerator board has not been
installed in this system or is present but not configured.
Enabled (3)
Indicates that write cache operations are currently configured
and enabled for at least one logical drive.
Temporarily Disabled (4)
Indicates that write cache operations have been temporarily
disabled. View the Array Accelerator Board Error Code object
to determine why the write cache operations have been
temporarily disabled.
Permanently Disabled (5)
Indicates that write cache operations have been permanently
disabled. View the Array Accelerator Board Error Code object
to determine why the write cache operations have been disabled."
::= { cpqDaAccelEntry 2 }</description>
<applications>
<application>
<name>HP Drive Array</name>
</application>
</applications>
<valuemap>
<name>cpqDaAccelStatus</name>
</valuemap>
<trigger_prototypes>
<trigger_prototype>
<expression>{last()}=2</expression>
<name>{HOST.NAME}: Drive Array Accelerator {#SNMPINDEX} is missing or not configured</name>
<priority>WARNING</priority>
<description>The Drive Array Accelerator is the cache memory board for the Drive Array Controller; if it is missing, disk performance will be bad. A Drive Array Accelerator (cache memory board) should be ordered and installed.
Suggested actions are to write a ticket to order and install the HP Drive Array Accelerator (cache memory board). Then acknowledge the alert, writing the ticket number in the notes.
HP System Management Homepage (may require starting service hpsmhd):
https://{HOST.CONN}:2381</description>
</trigger_prototype>
</trigger_prototypes>
</item_prototype>
<item_prototype>
<name>HP Drive Array Accelerator Write Cache % {#SNMPINDEX}</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>1.3.6.1.4.1.232.3.2.2.2.1.14.{#SNMPINDEX}</snmp_oid>
<key>cpqDaAccelWriteCachePercent[{#SNMPINDEX}]</key>
<delay>28800</delay>
<history>1d</history>
<trends>1d</trends>
<units>%</units>
<description>CPQIDA-MIB::
cpqDaAccelWriteCachePercent OBJECT-TYPE
SYNTAX Gauge
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Write Cache Percent.
This shows the percent of cache memory allocated for posted
write caching. If the data cannot be determined or is not
applicable, the value is set to 4,294,967,295."
::= { cpqDaAccelEntry 14 }</description>
<applications>
<application>
<name>HP Drive Array</name>
</application>
</applications>
</item_prototype>
</item_prototypes>
</discovery_rule>
<discovery_rule>
<name>Drive Array Controller Performance Monitors</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>discovery[{#SNMPVALUE},.1.3.6.1.4.1.232.3.2.7.1.1.1]</snmp_oid>
<key>snmp.discovery[DaControllerPerf]</key>
<delay>28800</delay>
<lifetime>0</lifetime>
<description>Walk the cpqDaCntlrPerfCntlrIndex table to find contoller performance monitor instances:
CPQIDA-MIB::
cpqDaCntlrPerfCntlrIndex OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Drive Array Controller Performance Monitor Controller Index.
This maps the performance monitor information into their
respective controllers which support performance data."
::= { cpqDaCntlrPerfEntry 1 }</description>
<item_prototypes>
<item_prototype>
<name>HP Drive Array Controller Latency {#SNMPINDEX}</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>1.3.6.1.4.1.232.3.2.7.1.1.7.{#SNMPINDEX}</snmp_oid>
<key>cpqDaCntlrPerfAvgLatency[{#SNMPINDEX}]</key>
<delay>3600</delay>
<value_type>FLOAT</value_type>
<units>ms</units>
<description>CPQIDA-MIB::
cpqDaCntlrPerfAvgLatency OBJECT-TYPE
SYNTAX INTEGER
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Array Controller Performance Monitor Average
Command Latency.
This value shows the average command latency for this sample
in 1/100,000 second units."
::= { cpqDaCntlrPerfEntry 7 }</description>
<applications>
<application>
<name>HP Drive Array</name>
</application>
</applications>
<preprocessing>
<step>
<type>MULTIPLIER</type>
<params>.01</params>
</step>
</preprocessing>
</item_prototype>
</item_prototypes>
</discovery_rule>
<discovery_rule>
<name>Drive Array Controllers</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>discovery[{#SNMPVALUE},.1.3.6.1.4.1.232.3.2.2.1.1.20]</snmp_oid>
<key>snmp.discovery[DaControllers]</key>
<delay>3600</delay>
<lifetime>0</lifetime>
<description>Walk the cpqDaCntlrHwLocation table to get contoller locations:
CPQIDA-MIB::
cpqDaCntlrHwLocation OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"A text description of the hardware location of the controller.
A NULL string indicates that the hardware location could not
be determined or is irrelevant."
::= { cpqDaCntlrEntry 20 }</description>
<item_prototypes>
<item_prototype>
<name>HP Drive Array Controller Board Condition {#SNMPINDEX}</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>1.3.6.1.4.1.232.3.2.2.1.1.12.{#SNMPINDEX}</snmp_oid>
<key>cpqDaCntlrBoardCondition[{#SNMPINDEX}]</key>
<delay>600</delay>
<history>7d</history>
<trends>30d</trends>
<description>CPQIDA-MIB::
cpqDaCntlrBoardCondition OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The condition of the device. This value represents the
condition of the controller and any associated array
accelerators."
::= { cpqDaCntlrEntry 12 }</description>
<applications>
<application>
<name>HP Drive Array</name>
</application>
</applications>
<valuemap>
<name>cpqCondition</name>
</valuemap>
<trigger_prototypes>
<trigger_prototype>
<expression>{last()}>2</expression>
<name>{HOST.NAME}: HP Drive Array Controller Board {#SNMPINDEX} is degraded or failed</name>
<priority>AVERAGE</priority>
<description>This HP Drive Array Controller Controller Board is reporting a degraded or failed condition. Check the iLO or preferably the HP System Management Homepage for more information. This may require first starting the Array Configuration Utility from the command line ("/opt/compaq/cpqacuxe/bld/cpqacuxe -R")
HP System Management Homepage (may require starting service hpsmhd):
https://{HOST.CONN}:2381</description>
</trigger_prototype>
</trigger_prototypes>
</item_prototype>
<item_prototype>
<name>HP Drive Array Controller Condition {#SNMPINDEX}</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>1.3.6.1.4.1.232.3.2.2.1.1.6.{#SNMPINDEX}</snmp_oid>
<key>cpqDaCntlrCondition[{#SNMPINDEX}]</key>
<delay>600</delay>
<history>7d</history>
<trends>30d</trends>
<description>CPQIDA-MIB::
cpqDaCntlrCondition OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
ok(2),
degraded(3),
failed(4)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"The condition of the device. This value represents the overall
condition of this controller, and any associated logical drives,
physical drives, and array accelerators."
::= { cpqDaCntlrEntry 6 }</description>
<applications>
<application>
<name>HP Drive Array</name>
</application>
</applications>
<valuemap>
<name>cpqCondition</name>
</valuemap>
</item_prototype>
<item_prototype>
<name>HP Drive Array Controller Drive Write Cache State {#SNMPINDEX}</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>1.3.6.1.4.1.232.3.2.2.1.1.27.{#SNMPINDEX}</snmp_oid>
<key>cpqDaCntlrDriveWriteCacheState[{#SNMPINDEX}]</key>
<delay>28800</delay>
<history>1d</history>
<trends>1d</trends>
<description>CPQIDA-MIB::
cpqDaCntlrDriveWriteCacheState OBJECT-TYPE
SYNTAX INTEGER
{
other(1),
disabled(2),
enabled(3)
}
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Array Controller Drive Write Cache State.
This is the controller's drive write cache setting. The
following values are valid:
other (1)
Indicates that the instrument agent does not recognize the
value. You may need to upgrade the instrument agent.
disabled (2)
The controller will disable drive write cache for all drives.
enabled (3)
The controller will enable drive write cache for all drives."
::= { cpqDaCntlrEntry 27 }</description>
<applications>
<application>
<name>HP Drive Array</name>
</application>
</applications>
<valuemap>
<name>cpqDaCntlrDriveWriteCacheState</name>
</valuemap>
</item_prototype>
<item_prototype>
<name>HP Drive Array Controller Firmware Revision {#SNMPINDEX}</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>1.3.6.1.4.1.232.3.2.2.1.1.3.{#SNMPINDEX}</snmp_oid>
<key>cpqDaCntlrFWRev[{#SNMPINDEX}]</key>
<delay>28800</delay>
<history>1d</history>
<trends>0</trends>
<value_type>TEXT</value_type>
<description>CPQIDA-MIB::
cpqDaCntlrFWRev OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..5))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Array Controller Firmware Revision.
The firmware revision of the drive array controller. This
value can be used to help identify a particular revision
of the controller."
::= { cpqDaCntlrEntry 3 }</description>
<applications>
<application>
<name>HP Drive Array</name>
</application>
</applications>
</item_prototype>
</item_prototypes>
</discovery_rule>
<discovery_rule>
<name>Firmware</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>discovery[{#SNMPVALUE},.1.3.6.1.4.1.232.11.2.14.1.1.4]</snmp_oid>
<key>snmp.discovery[firmware]</key>
<delay>28800</delay>
<filter>
<conditions>
<condition>
<macro>{#SNMPVALUE}</macro>
<value>(Lights.Out|iLO|System.ROM)</value>
<formulaid>A</formulaid>
</condition>
</conditions>
</filter>
<lifetime>0</lifetime>
<description>Walk the cpqHoFwVerDisplayName table, filter for "Lights Out", "iLO" and "System ROM"
CPQHLTH-MIB::
cpqHoFwVerDisplayName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..127))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Firmware Version Device Display Name.
This is the display name of the device containing the firmware."
::= { cpqHoFwVerEntry 4 }</description>
<item_prototypes>
<item_prototype>
<name>HP Firmware Version {#SNMPINDEX} - {#SNMPVALUE}</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>.1.3.6.1.4.1.232.11.2.14.1.1.5.{#SNMPINDEX}</snmp_oid>
<key>cpqHoFwVerVersion[{#SNMPINDEX}]</key>
<delay>28800</delay>
<history>7d</history>
<trends>0</trends>
<value_type>CHAR</value_type>
<description>CPQHOST-MIB::
cpqHoFwVerVersion OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..31))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Firmware Version.
This is the version of the device firmware."
::= { cpqHoFwVerEntry 5 }</description>
<applications>
<application>
<name>HP System Info</name>
</application>
</applications>
</item_prototype>
</item_prototypes>
</discovery_rule>
<discovery_rule>
<name>Logical Drives</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>discovery[{#SNMPVALUE},.1.3.6.1.4.1.232.3.2.3.1.1.14]</snmp_oid>
<key>snmp.discovery[logicalDrives]</key>
<delay>3600</delay>
<lifetime>0</lifetime>
<description>Walk the cpqDaLogDrvOsName table to get logical drive OS names:
CPQIDA-MIB::
cpqDaLogDrvOsName OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
ACCESS read-only
STATUS mandatory
DESCRIPTION
"Logical Drive OS Name.
The OS name for this array logical drive. This field will be
a null (size 0) string if the agent does not support OS name."
::= { cpqDaLogDrvEntry 14 }</description>
<item_prototypes>
<item_prototype>
<name>HP Logical Drive Condition {#SNMPINDEX} [{#SNMPVALUE}]</name>
<type>SNMPV2</type>
<snmp_community>{$SNMP_COMMUNITY}</snmp_community>
<snmp_oid>.1.3.6.1.4.1.232.3.2.3.1.1.11.{#SNMPINDEX}</snmp_oid>
<key>cpqDaLogDrvCondition[{#SNMPINDEX}]</key>