-
Notifications
You must be signed in to change notification settings - Fork 2
/
cacti_host_template_smart_parameters.xml
8550 lines (8550 loc) · 315 KB
/
cacti_host_template_smart_parameters.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
<cacti>
<hash_020102f4a52b1760ddeb6f52267d25ef697104>
<name>SMART Parameters</name>
<graph_templates></graph_templates>
<data_queries>hash_0401020fa4d18244c0ad1912e09b8a688f116e</data_queries>
</hash_020102f4a52b1760ddeb6f52267d25ef697104>
<hash_0401020fa4d18244c0ad1912e09b8a688f116e>
<name>Disk SMART Parameters</name>
<description>Disk SMART Health Parameters</description>
<xml_path>/usr/local/share/cacti/resource/snmp_queries/disk_smart.xml</xml_path>
<data_input_id>hash_030102bf566c869ac6443b0c75d1c32b5a350e</data_input_id>
<graphs>
<hash_110102e240e42f448dead0d0d2c652cdf5d53a>
<graph_template_id>hash_0001027b091a3cee95c6844c505c19d8c6bf27</graph_template_id>
<name>SMART Health (CF)</name>
<rrd>
<item_000>
<snmp_field_name>smart232</snmp_field_name>
<data_template_id>hash_01010226bd2935d99da9e4578cdc5ce4c9a070</data_template_id>
<data_template_rrd_id>hash_08010224c6cc1a034c1cc68e26e16526d09b2b</data_template_rrd_id>
</item_000>
<item_001>
<snmp_field_name>smart12</snmp_field_name>
<data_template_id>hash_010102706cc4eb368293951b01a6403480d998</data_template_id>
<data_template_rrd_id>hash_080102823fdfbfca4aa19fe4b0bc627a664b19</data_template_rrd_id>
</item_001>
<item_002>
<snmp_field_name>smart233</snmp_field_name>
<data_template_id>hash_010102424d69dabaa60e6223b785dd177107e6</data_template_id>
<data_template_rrd_id>hash_08010259525fc78d39f66d5ed48a954e80074e</data_template_rrd_id>
</item_002>
<item_003>
<snmp_field_name>smart199</snmp_field_name>
<data_template_id>hash_0101026acac5bf1fc254cb9a6f0cdcc3e1dc99</data_template_id>
<data_template_rrd_id>hash_0801028d2fe9a5a0b8af960e13961b4ce23cf8</data_template_rrd_id>
</item_003>
<item_004>
<snmp_field_name>smart203</snmp_field_name>
<data_template_id>hash_010102ce217776651781fb2e71319e06a7577e</data_template_id>
<data_template_rrd_id>hash_080102571c0bb612bfac66d236f4285af8a257</data_template_rrd_id>
</item_004>
<item_005>
<snmp_field_name>smart4</snmp_field_name>
<data_template_id>hash_0101027966ebb9a4784ac0411fc53062829b0b</data_template_id>
<data_template_rrd_id>hash_0801027027a07be7f59aaa581de64046194cb2</data_template_rrd_id>
</item_005>
<item_006>
<snmp_field_name>smart9</snmp_field_name>
<data_template_id>hash_010102f781f5120b615914209d66e740710076</data_template_id>
<data_template_rrd_id>hash_08010235ea296529861615deff25f5ada486dc</data_template_rrd_id>
</item_006>
<item_007>
<snmp_field_name>smart198</snmp_field_name>
<data_template_id>hash_0101023bdf4ef19b0475dd9b60978a15f40f6b</data_template_id>
<data_template_rrd_id>hash_080102e387e787e95539ae81ec430147570db2</data_template_rrd_id>
</item_007>
</rrd>
<sv_graph>
</sv_graph>
<sv_data_source>
</sv_data_source>
</hash_110102e240e42f448dead0d0d2c652cdf5d53a>
<hash_1101022301c7c42e58b3a90d488604a96e8061>
<graph_template_id>hash_000102bc920c5efdc9bd4210b8f52ad9ba3cfd</graph_template_id>
<name>SMART Health (HDD)</name>
<rrd>
<item_000>
<snmp_field_name>smart12</snmp_field_name>
<data_template_id>hash_010102706cc4eb368293951b01a6403480d998</data_template_id>
<data_template_rrd_id>hash_080102823fdfbfca4aa19fe4b0bc627a664b19</data_template_rrd_id>
</item_000>
<item_001>
<snmp_field_name>smart199</snmp_field_name>
<data_template_id>hash_0101026acac5bf1fc254cb9a6f0cdcc3e1dc99</data_template_id>
<data_template_rrd_id>hash_0801028d2fe9a5a0b8af960e13961b4ce23cf8</data_template_rrd_id>
</item_001>
<item_002>
<snmp_field_name>smart4</snmp_field_name>
<data_template_id>hash_0101027966ebb9a4784ac0411fc53062829b0b</data_template_id>
<data_template_rrd_id>hash_0801027027a07be7f59aaa581de64046194cb2</data_template_rrd_id>
</item_002>
<item_003>
<snmp_field_name>smart189</snmp_field_name>
<data_template_id>hash_01010259c04292deb2067bea167d179b279983</data_template_id>
<data_template_rrd_id>hash_080102eeef203048253960bed3553391bfcfd3</data_template_rrd_id>
</item_003>
<item_004>
<snmp_field_name>smart195</snmp_field_name>
<data_template_id>hash_010102d1ef6554e149929c1a28109db163e5b5</data_template_id>
<data_template_rrd_id>hash_0801020b45af1880bdba0d0d364bf28c0cff6d</data_template_rrd_id>
</item_004>
<item_005>
<snmp_field_name>smart1</snmp_field_name>
<data_template_id>hash_010102ce054151c35fc9d41ae21e7297bad1c8</data_template_id>
<data_template_rrd_id>hash_0801025a808abe2c7edf5352cf7fbc33626937</data_template_rrd_id>
</item_005>
<item_006>
<snmp_field_name>smart9</snmp_field_name>
<data_template_id>hash_010102f781f5120b615914209d66e740710076</data_template_id>
<data_template_rrd_id>hash_08010235ea296529861615deff25f5ada486dc</data_template_rrd_id>
</item_006>
<item_007>
<snmp_field_name>smart5</snmp_field_name>
<data_template_id>hash_0101022c6af149ce68d37986009740be1de504</data_template_id>
<data_template_rrd_id>hash_08010282f25161321bf2c64892d564a9a2fe62</data_template_rrd_id>
</item_007>
<item_008>
<snmp_field_name>smart7</snmp_field_name>
<data_template_id>hash_010102a7873210240c22a5aabff833ebc1b471</data_template_id>
<data_template_rrd_id>hash_0801028ab63c9aee426076acecf0d040e542b4</data_template_rrd_id>
</item_008>
<item_009>
<snmp_field_name>smart3</snmp_field_name>
<data_template_id>hash_0101027e7bd195fc64cc7d0ecd3d68a820b1dd</data_template_id>
<data_template_rrd_id>hash_080102b23d54bd32614ae1b55382bb3bff12d1</data_template_rrd_id>
</item_009>
<item_010>
<snmp_field_name>smart10</snmp_field_name>
<data_template_id>hash_01010294273a22b842dc86474a1e37e3d22560</data_template_id>
<data_template_rrd_id>hash_0801025c7fd41ed2d6156f367fd9dce6bbb4cb</data_template_rrd_id>
</item_010>
<item_011>
<snmp_field_name>smart184</snmp_field_name>
<data_template_id>hash_010102e7144d0e693d8e436c9db9e8b233d6ac</data_template_id>
<data_template_rrd_id>hash_080102d6ce9ae228bdaaaf09758329f27f9264</data_template_rrd_id>
</item_011>
<item_012>
<snmp_field_name>smart187</snmp_field_name>
<data_template_id>hash_0101020144d79dc8105c2d0a7f6be844b1ede4</data_template_id>
<data_template_rrd_id>hash_0801021c5c00c3a95d3ddc3d4b4a9e57db9ed2</data_template_rrd_id>
</item_012>
<item_013>
<snmp_field_name>smart196</snmp_field_name>
<data_template_id>hash_010102032550bf008129287ae868d9730307eb</data_template_id>
<data_template_rrd_id>hash_080102aef8f06b157594ec1a6d194088f2a901</data_template_rrd_id>
</item_013>
<item_014>
<snmp_field_name>smart198</snmp_field_name>
<data_template_id>hash_0101023bdf4ef19b0475dd9b60978a15f40f6b</data_template_id>
<data_template_rrd_id>hash_080102e387e787e95539ae81ec430147570db2</data_template_rrd_id>
</item_014>
</rrd>
<sv_graph>
</sv_graph>
<sv_data_source>
</sv_data_source>
</hash_1101022301c7c42e58b3a90d488604a96e8061>
<hash_110102f5501bf129b05ddbcb182e104045dc91>
<graph_template_id>hash_0001029aeb57be3588a293bd483b63a4927cba</graph_template_id>
<name>SMART Health (AGILITY3)</name>
<rrd>
<item_000>
<snmp_field_name>smart12</snmp_field_name>
<data_template_id>hash_010102706cc4eb368293951b01a6403480d998</data_template_id>
<data_template_rrd_id>hash_080102823fdfbfca4aa19fe4b0bc627a664b19</data_template_rrd_id>
</item_000>
<item_001>
<snmp_field_name>smart195</snmp_field_name>
<data_template_id>hash_010102d1ef6554e149929c1a28109db163e5b5</data_template_id>
<data_template_rrd_id>hash_0801020b45af1880bdba0d0d364bf28c0cff6d</data_template_rrd_id>
</item_001>
<item_002>
<snmp_field_name>smart1</snmp_field_name>
<data_template_id>hash_010102ce054151c35fc9d41ae21e7297bad1c8</data_template_id>
<data_template_rrd_id>hash_0801025a808abe2c7edf5352cf7fbc33626937</data_template_rrd_id>
</item_002>
<item_003>
<snmp_field_name>smart9</snmp_field_name>
<data_template_id>hash_010102f781f5120b615914209d66e740710076</data_template_id>
<data_template_rrd_id>hash_08010235ea296529861615deff25f5ada486dc</data_template_rrd_id>
</item_003>
<item_004>
<snmp_field_name>smart5</snmp_field_name>
<data_template_id>hash_0101022c6af149ce68d37986009740be1de504</data_template_id>
<data_template_rrd_id>hash_08010282f25161321bf2c64892d564a9a2fe62</data_template_rrd_id>
</item_004>
<item_005>
<snmp_field_name>smart187</snmp_field_name>
<data_template_id>hash_0101020144d79dc8105c2d0a7f6be844b1ede4</data_template_id>
<data_template_rrd_id>hash_0801021c5c00c3a95d3ddc3d4b4a9e57db9ed2</data_template_rrd_id>
</item_005>
<item_006>
<snmp_field_name>smart196</snmp_field_name>
<data_template_id>hash_010102032550bf008129287ae868d9730307eb</data_template_id>
<data_template_rrd_id>hash_080102aef8f06b157594ec1a6d194088f2a901</data_template_rrd_id>
</item_006>
<item_007>
<snmp_field_name>smart231</snmp_field_name>
<data_template_id>hash_010102c2d60953fe1ae5659fb32d6090163f5c</data_template_id>
<data_template_rrd_id>hash_080102ff49d0f3c7cd690599e9015258d50c90</data_template_rrd_id>
</item_007>
<item_008>
<snmp_field_name>smart230</snmp_field_name>
<data_template_id>hash_0101029ba9ac838a582478d29e95e4f9642768</data_template_id>
<data_template_rrd_id>hash_080102a742c1b527addde70384cf4d0177d14a</data_template_rrd_id>
</item_008>
</rrd>
<sv_graph>
</sv_graph>
<sv_data_source>
</sv_data_source>
</hash_110102f5501bf129b05ddbcb182e104045dc91>
<hash_110102a2dc8869f92585b5d5de9a7f4cec3fa5>
<graph_template_id>hash_000102b843d820d6bc6a7c7de83bc3cd91bd59</graph_template_id>
<name>SMART Health (NVME)</name>
<rrd>
<item_000>
<snmp_field_name>smart_nvme_critwarn</snmp_field_name>
<data_template_id>hash_010102fbfae497c3024644839bf84001dd65fa</data_template_id>
<data_template_rrd_id>hash_0801028d0ca1c9286b738e01c15828df339b0b</data_template_rrd_id>
</item_000>
<item_001>
<snmp_field_name>smart_nvme_availspr</snmp_field_name>
<data_template_id>hash_0101027199359fa59db7d2ac2d37a11ba3bce3</data_template_id>
<data_template_rrd_id>hash_08010273bef372b1c84a33cab447ac64876859</data_template_rrd_id>
</item_001>
<item_002>
<snmp_field_name>smart_nvme_pctused</snmp_field_name>
<data_template_id>hash_010102e977942adec071a9ee4736d357ea7db0</data_template_id>
<data_template_rrd_id>hash_080102d06b2c9e318525df0835f8da4088fd40</data_template_rrd_id>
</item_002>
</rrd>
<sv_graph>
</sv_graph>
<sv_data_source>
</sv_data_source>
</hash_110102a2dc8869f92585b5d5de9a7f4cec3fa5>
<hash_110102be61353454f2031e30cf9f9128099549>
<graph_template_id>hash_00010274b83d5e2b6c5d673f0f9628bad068fa</graph_template_id>
<name>SMART Health (Samsung830)</name>
<rrd>
<item_000>
<snmp_field_name>smart12</snmp_field_name>
<data_template_id>hash_010102706cc4eb368293951b01a6403480d998</data_template_id>
<data_template_rrd_id>hash_080102823fdfbfca4aa19fe4b0bc627a664b19</data_template_rrd_id>
</item_000>
<item_001>
<snmp_field_name>smart199</snmp_field_name>
<data_template_id>hash_0101026acac5bf1fc254cb9a6f0cdcc3e1dc99</data_template_id>
<data_template_rrd_id>hash_0801028d2fe9a5a0b8af960e13961b4ce23cf8</data_template_rrd_id>
</item_001>
<item_002>
<snmp_field_name>smart195</snmp_field_name>
<data_template_id>hash_010102d1ef6554e149929c1a28109db163e5b5</data_template_id>
<data_template_rrd_id>hash_0801020b45af1880bdba0d0d364bf28c0cff6d</data_template_rrd_id>
</item_002>
<item_003>
<snmp_field_name>smart9</snmp_field_name>
<data_template_id>hash_010102f781f5120b615914209d66e740710076</data_template_id>
<data_template_rrd_id>hash_08010235ea296529861615deff25f5ada486dc</data_template_rrd_id>
</item_003>
<item_004>
<snmp_field_name>smart5</snmp_field_name>
<data_template_id>hash_0101022c6af149ce68d37986009740be1de504</data_template_id>
<data_template_rrd_id>hash_08010282f25161321bf2c64892d564a9a2fe62</data_template_rrd_id>
</item_004>
<item_005>
<snmp_field_name>smart187</snmp_field_name>
<data_template_id>hash_0101020144d79dc8105c2d0a7f6be844b1ede4</data_template_id>
<data_template_rrd_id>hash_0801021c5c00c3a95d3ddc3d4b4a9e57db9ed2</data_template_rrd_id>
</item_005>
<item_006>
<snmp_field_name>smart177</snmp_field_name>
<data_template_id>hash_010102fbbbd6447a1775f1881ac17547670ace</data_template_id>
<data_template_rrd_id>hash_08010244c67d22967cef9ffb5d2959d5cea16e</data_template_rrd_id>
</item_006>
<item_007>
<snmp_field_name>smart179</snmp_field_name>
<data_template_id>hash_010102d87c192c56d312e4a75727acf743b397</data_template_id>
<data_template_rrd_id>hash_080102e51925774829bd89347a8b9e78514356</data_template_rrd_id>
</item_007>
<item_008>
<snmp_field_name>smart183</snmp_field_name>
<data_template_id>hash_01010291d236b433a4a21d28d6de8861b62186</data_template_id>
<data_template_rrd_id>hash_0801025c4137713fd143b68e6dcb5427e9ff6f</data_template_rrd_id>
</item_008>
<item_009>
<snmp_field_name>smart181</snmp_field_name>
<data_template_id>hash_0101028b0466c5e358b0a575bb6638a88c7d2b</data_template_id>
<data_template_rrd_id>hash_0801023505c39a8cd1458236e25fe120695fb8</data_template_rrd_id>
</item_009>
<item_010>
<snmp_field_name>smart182</snmp_field_name>
<data_template_id>hash_010102edf9dbff768e1863e6cd60a4bec4272f</data_template_id>
<data_template_rrd_id>hash_080102bc2316f007ebf31d5d601efeecddb530</data_template_rrd_id>
</item_010>
<item_011>
<snmp_field_name>smart235</snmp_field_name>
<data_template_id>hash_01010226f88f0923d0d2640f2b159dfb0767c6</data_template_id>
<data_template_rrd_id>hash_08010230311e31e3ef28c21ef829d0aaa64148</data_template_rrd_id>
</item_011>
<item_012>
<snmp_field_name>smart241</snmp_field_name>
<data_template_id>hash_010102acfa3b19db5681d538a22e428e566147</data_template_id>
<data_template_rrd_id>hash_08010299329e42a52cfb35a9a951e672eb85af</data_template_rrd_id>
</item_012>
<item_013>
<snmp_field_name>smart198</snmp_field_name>
<data_template_id>hash_0101023bdf4ef19b0475dd9b60978a15f40f6b</data_template_id>
<data_template_rrd_id>hash_080102e387e787e95539ae81ec430147570db2</data_template_rrd_id>
</item_013>
</rrd>
<sv_graph>
</sv_graph>
<sv_data_source>
</sv_data_source>
</hash_110102be61353454f2031e30cf9f9128099549>
<hash_110102c3cfb2c2913192d81b4f09a9fbee2c78>
<graph_template_id>hash_000102f5d4ad5c471342918d49c63a7e9d2e55</graph_template_id>
<name>SMART Health (SSD)</name>
<rrd>
<item_000>
<snmp_field_name>smart232</snmp_field_name>
<data_template_id>hash_01010226bd2935d99da9e4578cdc5ce4c9a070</data_template_id>
<data_template_rrd_id>hash_08010224c6cc1a034c1cc68e26e16526d09b2b</data_template_rrd_id>
</item_000>
<item_001>
<snmp_field_name>smart12</snmp_field_name>
<data_template_id>hash_010102706cc4eb368293951b01a6403480d998</data_template_id>
<data_template_rrd_id>hash_080102823fdfbfca4aa19fe4b0bc627a664b19</data_template_rrd_id>
</item_001>
<item_002>
<snmp_field_name>smart233</snmp_field_name>
<data_template_id>hash_010102424d69dabaa60e6223b785dd177107e6</data_template_id>
<data_template_rrd_id>hash_08010259525fc78d39f66d5ed48a954e80074e</data_template_rrd_id>
</item_002>
<item_003>
<snmp_field_name>smart199</snmp_field_name>
<data_template_id>hash_0101026acac5bf1fc254cb9a6f0cdcc3e1dc99</data_template_id>
<data_template_rrd_id>hash_0801028d2fe9a5a0b8af960e13961b4ce23cf8</data_template_rrd_id>
</item_003>
<item_004>
<snmp_field_name>smart4</snmp_field_name>
<data_template_id>hash_0101027966ebb9a4784ac0411fc53062829b0b</data_template_id>
<data_template_rrd_id>hash_0801027027a07be7f59aaa581de64046194cb2</data_template_rrd_id>
</item_004>
<item_005>
<snmp_field_name>smart195</snmp_field_name>
<data_template_id>hash_010102d1ef6554e149929c1a28109db163e5b5</data_template_id>
<data_template_rrd_id>hash_0801020b45af1880bdba0d0d364bf28c0cff6d</data_template_rrd_id>
</item_005>
<item_006>
<snmp_field_name>smart1</snmp_field_name>
<data_template_id>hash_010102ce054151c35fc9d41ae21e7297bad1c8</data_template_id>
<data_template_rrd_id>hash_0801025a808abe2c7edf5352cf7fbc33626937</data_template_rrd_id>
</item_006>
<item_007>
<snmp_field_name>smart9</snmp_field_name>
<data_template_id>hash_010102f781f5120b615914209d66e740710076</data_template_id>
<data_template_rrd_id>hash_08010235ea296529861615deff25f5ada486dc</data_template_rrd_id>
</item_007>
<item_008>
<snmp_field_name>smart5</snmp_field_name>
<data_template_id>hash_0101022c6af149ce68d37986009740be1de504</data_template_id>
<data_template_rrd_id>hash_08010282f25161321bf2c64892d564a9a2fe62</data_template_rrd_id>
</item_008>
<item_009>
<snmp_field_name>smart3</snmp_field_name>
<data_template_id>hash_0101027e7bd195fc64cc7d0ecd3d68a820b1dd</data_template_id>
<data_template_rrd_id>hash_080102b23d54bd32614ae1b55382bb3bff12d1</data_template_rrd_id>
</item_009>
<item_010>
<snmp_field_name>smart184</snmp_field_name>
<data_template_id>hash_010102e7144d0e693d8e436c9db9e8b233d6ac</data_template_id>
<data_template_rrd_id>hash_080102d6ce9ae228bdaaaf09758329f27f9264</data_template_rrd_id>
</item_010>
<item_011>
<snmp_field_name>smart187</snmp_field_name>
<data_template_id>hash_0101020144d79dc8105c2d0a7f6be844b1ede4</data_template_id>
<data_template_rrd_id>hash_0801021c5c00c3a95d3ddc3d4b4a9e57db9ed2</data_template_rrd_id>
</item_011>
<item_012>
<snmp_field_name>smart196</snmp_field_name>
<data_template_id>hash_010102032550bf008129287ae868d9730307eb</data_template_id>
<data_template_rrd_id>hash_080102aef8f06b157594ec1a6d194088f2a901</data_template_rrd_id>
</item_012>
<item_013>
<snmp_field_name>smart231</snmp_field_name>
<data_template_id>hash_010102c2d60953fe1ae5659fb32d6090163f5c</data_template_id>
<data_template_rrd_id>hash_080102ff49d0f3c7cd690599e9015258d50c90</data_template_rrd_id>
</item_013>
<item_014>
<snmp_field_name>smart170</snmp_field_name>
<data_template_id>hash_01010281d37d5053b753f40116a9db985a194a</data_template_id>
<data_template_rrd_id>hash_08010227e332c6e57bd670a1ca085abf4db750</data_template_rrd_id>
</item_014>
<item_015>
<snmp_field_name>smart177</snmp_field_name>
<data_template_id>hash_010102fbbbd6447a1775f1881ac17547670ace</data_template_id>
<data_template_rrd_id>hash_08010244c67d22967cef9ffb5d2959d5cea16e</data_template_rrd_id>
</item_015>
<item_016>
<snmp_field_name>smart171</snmp_field_name>
<data_template_id>hash_010102389a929e5ada8bbf2283b6abf27bd597</data_template_id>
<data_template_rrd_id>hash_080102ad1a31a1fe78ccd852633ce56cef4ba0</data_template_rrd_id>
</item_016>
<item_017>
<snmp_field_name>smart172</snmp_field_name>
<data_template_id>hash_010102d33559a7016a8d47c5cd64aedfe37084</data_template_id>
<data_template_rrd_id>hash_08010297a1354f4d32125aba086e9bf6a87229</data_template_rrd_id>
</item_017>
<item_018>
<snmp_field_name>smart178</snmp_field_name>
<data_template_id>hash_010102d109848611cf424d2ff526d3407c51d5</data_template_id>
<data_template_rrd_id>hash_08010254755668b1db35930a7a09893c5f74f1</data_template_rrd_id>
</item_018>
<item_019>
<snmp_field_name>smart179</snmp_field_name>
<data_template_id>hash_010102d87c192c56d312e4a75727acf743b397</data_template_id>
<data_template_rrd_id>hash_080102e51925774829bd89347a8b9e78514356</data_template_rrd_id>
</item_019>
<item_020>
<snmp_field_name>smart180</snmp_field_name>
<data_template_id>hash_0101026b8f3a9a7e19545f02c479ca81fccaeb</data_template_id>
<data_template_rrd_id>hash_080102252afb38933cfd61531bdfc66f1ad53c</data_template_rrd_id>
</item_020>
<item_021>
<snmp_field_name>smart183</snmp_field_name>
<data_template_id>hash_01010291d236b433a4a21d28d6de8861b62186</data_template_id>
<data_template_rrd_id>hash_0801025c4137713fd143b68e6dcb5427e9ff6f</data_template_rrd_id>
</item_021>
<item_022>
<snmp_field_name>smart181</snmp_field_name>
<data_template_id>hash_0101028b0466c5e358b0a575bb6638a88c7d2b</data_template_id>
<data_template_rrd_id>hash_0801023505c39a8cd1458236e25fe120695fb8</data_template_rrd_id>
</item_022>
<item_023>
<snmp_field_name>smart182</snmp_field_name>
<data_template_id>hash_010102edf9dbff768e1863e6cd60a4bec4272f</data_template_id>
<data_template_rrd_id>hash_080102bc2316f007ebf31d5d601efeecddb530</data_template_rrd_id>
</item_023>
<item_024>
<snmp_field_name>smart226</snmp_field_name>
<data_template_id>hash_010102b901f89cd2be37922b089d0b7f2add6b</data_template_id>
<data_template_rrd_id>hash_080102c36f9a1a486f914136eebaa7718b1b6e</data_template_rrd_id>
</item_024>
<item_025>
<snmp_field_name>smart230</snmp_field_name>
<data_template_id>hash_0101029ba9ac838a582478d29e95e4f9642768</data_template_id>
<data_template_rrd_id>hash_080102a742c1b527addde70384cf4d0177d14a</data_template_rrd_id>
</item_025>
<item_026>
<snmp_field_name>smart235</snmp_field_name>
<data_template_id>hash_01010226f88f0923d0d2640f2b159dfb0767c6</data_template_id>
<data_template_rrd_id>hash_08010230311e31e3ef28c21ef829d0aaa64148</data_template_rrd_id>
</item_026>
<item_027>
<snmp_field_name>smart241</snmp_field_name>
<data_template_id>hash_010102acfa3b19db5681d538a22e428e566147</data_template_id>
<data_template_rrd_id>hash_08010299329e42a52cfb35a9a951e672eb85af</data_template_rrd_id>
</item_027>
<item_028>
<snmp_field_name>smart198</snmp_field_name>
<data_template_id>hash_0101023bdf4ef19b0475dd9b60978a15f40f6b</data_template_id>
<data_template_rrd_id>hash_080102e387e787e95539ae81ec430147570db2</data_template_rrd_id>
</item_028>
</rrd>
<sv_graph>
</sv_graph>
<sv_data_source>
</sv_data_source>
</hash_110102c3cfb2c2913192d81b4f09a9fbee2c78>
<hash_1101023ab649a9388d4fb7a6cfbe5e9788d4d7>
<graph_template_id>hash_000102c2bd9f0ce70f267b1f11d87e9177492f</graph_template_id>
<name>SMART Temperatures NVME</name>
<rrd>
<item_000>
<snmp_field_name>smart_nvme_temp_1</snmp_field_name>
<data_template_id>hash_0101024cbbbf66a9bff861672b75d6b10ddae7</data_template_id>
<data_template_rrd_id>hash_080102d32e87af256107ac36b3c3af0dce9b62</data_template_rrd_id>
</item_000>
<item_001>
<snmp_field_name>smart_nvme_temp_2</snmp_field_name>
<data_template_id>hash_01010280b3cd36cf4a0c1c178daa98757ea3b1</data_template_id>
<data_template_rrd_id>hash_0801022cede7ff0760b7d3467a246dac5a99af</data_template_rrd_id>
</item_001>
</rrd>
<sv_graph>
</sv_graph>
<sv_data_source>
</sv_data_source>
</hash_1101023ab649a9388d4fb7a6cfbe5e9788d4d7>
<hash_110102b484d7041ae5dad8a9cf11c3abfdab57>
<graph_template_id>hash_000102d99735be2a3efffb2847b3037badf582</graph_template_id>
<name>SMART Temperatures SATA</name>
<rrd>
<item_000>
<snmp_field_name>smartR190</snmp_field_name>
<data_template_id>hash_0101026d928e70f55bae3f94ecac65f2677b5f</data_template_id>
<data_template_rrd_id>hash_080102bf4111ffb8068efa10b371209445217d</data_template_rrd_id>
</item_000>
<item_001>
<snmp_field_name>smartR194</snmp_field_name>
<data_template_id>hash_01010272ed7f652401867c479e9a7c81c4aabd</data_template_id>
<data_template_rrd_id>hash_08010272a2ef53230d3a28ed720dc4436e2ece</data_template_rrd_id>
</item_001>
</rrd>
<sv_graph>
</sv_graph>
<sv_data_source>
</sv_data_source>
</hash_110102b484d7041ae5dad8a9cf11c3abfdab57>
</graphs>
</hash_0401020fa4d18244c0ad1912e09b8a688f116e>
<hash_030102bf566c869ac6443b0c75d1c32b5a350e>
<name>Get SNMP Data (Indexed)</name>
<type_id>3</type_id>
<input_string></input_string>
<fields>
<hash_070102617cdc8a230615e59f06f361ef6e7728>
<name>SNMP IP Address</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code>hostname</type_code>
<input_output>in</input_output>
<data_name>management_ip</data_name>
</hash_070102617cdc8a230615e59f06f361ef6e7728>
<hash_070102acb449d1451e8a2a655c2c99d31142c7>
<name>SNMP Community</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code>snmp_community</type_code>
<input_output>in</input_output>
<data_name>snmp_community</data_name>
</hash_070102acb449d1451e8a2a655c2c99d31142c7>
<hash_070102f4facc5e2ca7ebee621f09bc6d9fc792>
<name>SNMP Username (v3)</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls>on</allow_nulls>
<type_code>snmp_username</type_code>
<input_output>in</input_output>
<data_name>snmp_username</data_name>
</hash_070102f4facc5e2ca7ebee621f09bc6d9fc792>
<hash_0701021cc1493a6781af2c478fa4de971531cf>
<name>SNMP Password (v3)</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls>on</allow_nulls>
<type_code>snmp_password</type_code>
<input_output>in</input_output>
<data_name>snmp_password</data_name>
</hash_0701021cc1493a6781af2c478fa4de971531cf>
<hash_070102b5c23f246559df38662c255f4aa21d6b>
<name>SNMP Version (1, 2, or 3)</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code>snmp_version</type_code>
<input_output>in</input_output>
<data_name>snmp_version</data_name>
</hash_070102b5c23f246559df38662c255f4aa21d6b>
<hash_0701026027a919c7c7731fbe095b6f53ab127b>
<name>Index Type</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code>index_type</type_code>
<input_output>in</input_output>
<data_name>index_type</data_name>
</hash_0701026027a919c7c7731fbe095b6f53ab127b>
<hash_070102cbbe5c1ddfb264a6e5d509ce1c78c95f>
<name>Index Value</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code>index_value</type_code>
<input_output>in</input_output>
<data_name>index_value</data_name>
</hash_070102cbbe5c1ddfb264a6e5d509ce1c78c95f>
<hash_070102e6deda7be0f391399c5130e7c4a48b28>
<name>Output Type ID</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code>output_type</type_code>
<input_output>in</input_output>
<data_name>output_type</data_name>
</hash_070102e6deda7be0f391399c5130e7c4a48b28>
<hash_070102c1f36ee60c3dc98945556d57f26e475b>
<name>SNMP Port</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code>snmp_port</type_code>
<input_output>in</input_output>
<data_name>snmp_port</data_name>
</hash_070102c1f36ee60c3dc98945556d57f26e475b>
<hash_0701022cf7129ad3ff819a7a7ac189bee48ce8>
<name>SNMP Authenticaion Protocol (v3)</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code>snmp_auth_protocol</type_code>
<input_output>in</input_output>
<data_name>snmp_auth_protocol</data_name>
</hash_0701022cf7129ad3ff819a7a7ac189bee48ce8>
<hash_0701026b13ac0a0194e171d241d4b06f913158>
<name>SNMP Privacy Passphrase (v3)</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code>snmp_priv_passphrase</type_code>
<input_output>in</input_output>
<data_name>snmp_priv_passphrase</data_name>
</hash_0701026b13ac0a0194e171d241d4b06f913158>
<hash_0701023a33d4fc65b8329ab2ac46a36da26b72>
<name>SNMP Privacy Protocol (v3)</name>
<update_rra></update_rra>
<regexp_match></regexp_match>
<allow_nulls></allow_nulls>
<type_code>snmp_priv_protocol</type_code>
<input_output>in</input_output>
<data_name>snmp_priv_protocol</data_name>
</hash_0701023a33d4fc65b8329ab2ac46a36da26b72>
</fields>
</hash_030102bf566c869ac6443b0c75d1c32b5a350e>
<hash_000102d99735be2a3efffb2847b3037badf582>
<name>SMART Temperatures SATA</name>
<graph>
<t_title></t_title>
<title>|host_description| - SMART Temperatures - |query_smartDevices|</title>
<t_vertical_label></t_vertical_label>
<vertical_label>degC</vertical_label>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>120</height>
<t_width></t_width>
<width>500</width>
<t_base_value></t_base_value>
<base_value>1000</base_value>
<t_slope_mode></t_slope_mode>
<slope_mode>on</slope_mode>
<t_auto_scale></t_auto_scale>
<auto_scale>on</auto_scale>
<t_auto_scale_opts></t_auto_scale_opts>
<auto_scale_opts>2</auto_scale_opts>
<t_auto_scale_log></t_auto_scale_log>
<auto_scale_log></auto_scale_log>
<t_scale_log_units></t_scale_log_units>
<scale_log_units></scale_log_units>
<t_auto_scale_rigid></t_auto_scale_rigid>
<auto_scale_rigid>on</auto_scale_rigid>
<t_upper_limit></t_upper_limit>
<upper_limit>100</upper_limit>
<t_lower_limit></t_lower_limit>
<lower_limit>0</lower_limit>
<t_unit_value></t_unit_value>
<unit_value></unit_value>
<t_unit_exponent_value></t_unit_exponent_value>
<unit_exponent_value>0</unit_exponent_value>
<t_unit_length></t_unit_length>
<unit_length></unit_length>
<t_no_gridfit></t_no_gridfit>
<no_gridfit></no_gridfit>
<t_alt_y_grid></t_alt_y_grid>
<alt_y_grid></alt_y_grid>
<t_right_axis></t_right_axis>
<right_axis></right_axis>
<t_right_axis_label></t_right_axis_label>
<right_axis_label></right_axis_label>
<t_right_axis_format></t_right_axis_format>
<right_axis_format>0</right_axis_format>
<t_right_axis_formatter></t_right_axis_formatter>
<right_axis_formatter>0</right_axis_formatter>
<t_left_axis_formatter></t_left_axis_formatter>
<left_axis_formatter>0</left_axis_formatter>
<t_auto_padding></t_auto_padding>
<auto_padding>on</auto_padding>
<t_dynamic_labels></t_dynamic_labels>
<dynamic_labels></dynamic_labels>
<t_force_rules_legend></t_force_rules_legend>
<force_rules_legend></force_rules_legend>
<t_tab_width></t_tab_width>
<tab_width>30</tab_width>
<t_legend_position></t_legend_position>
<legend_position>0</legend_position>
<t_legend_direction></t_legend_direction>
<legend_direction>0</legend_direction>
</graph>
<items>
<hash_100102b29458bed50c19a51102f43644c91f0f>
<graph_type_id>5</graph_type_id>
<task_item_id>hash_08010272a2ef53230d3a28ed720dc4436e2ece</task_item_id>
<color_id>FF0000</color_id>
<alpha>FF</alpha>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<vdef_id>0</vdef_id>
<shift></shift>
<value></value>
<gprint_id>hash_060102e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<textalign></textalign>
<text_format>Temperature</text_format>
<hard_return></hard_return>
<line_width>0.00</line_width>
<dashes></dashes>
<dash_offset></dash_offset>
<sequence>1</sequence>
</hash_100102b29458bed50c19a51102f43644c91f0f>
<hash_100102e602e5712280b0a7da858ff90110710a>
<graph_type_id>9</graph_type_id>
<task_item_id>hash_08010272a2ef53230d3a28ed720dc4436e2ece</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<vdef_id>0</vdef_id>
<shift></shift>
<value></value>
<gprint_id>hash_060102e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<textalign></textalign>
<text_format></text_format>
<hard_return>on</hard_return>
<line_width>0.00</line_width>
<dashes></dashes>
<dash_offset></dash_offset>
<sequence>2</sequence>
</hash_100102e602e5712280b0a7da858ff90110710a>
<hash_100102cd301efefb5ba62913d260604ee59772>
<graph_type_id>5</graph_type_id>
<task_item_id>hash_080102bf4111ffb8068efa10b371209445217d</task_item_id>
<color_id>EA8F00</color_id>
<alpha>FF</alpha>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>
<vdef_id>0</vdef_id>
<shift></shift>
<value></value>
<gprint_id>hash_060102e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<textalign></textalign>
<text_format>Airflow Temperature</text_format>
<hard_return></hard_return>
<line_width>0.00</line_width>
<dashes></dashes>
<dash_offset></dash_offset>
<sequence>3</sequence>
</hash_100102cd301efefb5ba62913d260604ee59772>
<hash_10010283953ce6d7a18a4b68610c0bd73fef7e>
<graph_type_id>9</graph_type_id>
<task_item_id>hash_080102bf4111ffb8068efa10b371209445217d</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<vdef_id>0</vdef_id>
<shift></shift>
<value></value>
<gprint_id>hash_060102e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<textalign></textalign>
<text_format></text_format>
<hard_return>on</hard_return>
<line_width>0.00</line_width>
<dashes></dashes>
<dash_offset></dash_offset>
<sequence>4</sequence>
</hash_10010283953ce6d7a18a4b68610c0bd73fef7e>
</items>
<inputs>
<hash_090102494f31f4547ce4e4adb579012279b86b>
<name>Data Source [smart_R194]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000102b29458bed50c19a51102f43644c91f0f|hash_000102e602e5712280b0a7da858ff90110710a</items>
</hash_090102494f31f4547ce4e4adb579012279b86b>
<hash_090102280756e2ac1064aa980dd275f952ff62>
<name>Data Source [smart_R190]</name>
<description></description>
<column_name>task_item_id</column_name>
<items>hash_000102cd301efefb5ba62913d260604ee59772|hash_00010283953ce6d7a18a4b68610c0bd73fef7e</items>
</hash_090102280756e2ac1064aa980dd275f952ff62>
</inputs>
</hash_000102d99735be2a3efffb2847b3037badf582>
<hash_0001027b091a3cee95c6844c505c19d8c6bf27>
<name>SMART Health (CF)</name>
<graph>
<t_title></t_title>
<title>|host_description| - SMART Health - |query_smartDevices|</title>
<t_vertical_label></t_vertical_label>
<vertical_label>Life Remaining %</vertical_label>
<t_image_format_id></t_image_format_id>
<image_format_id>1</image_format_id>
<t_height></t_height>
<height>120</height>
<t_width></t_width>
<width>500</width>
<t_base_value></t_base_value>
<base_value>1000</base_value>
<t_slope_mode></t_slope_mode>
<slope_mode>on</slope_mode>
<t_auto_scale></t_auto_scale>
<auto_scale>on</auto_scale>
<t_auto_scale_opts></t_auto_scale_opts>
<auto_scale_opts>2</auto_scale_opts>
<t_auto_scale_log></t_auto_scale_log>
<auto_scale_log></auto_scale_log>
<t_scale_log_units></t_scale_log_units>
<scale_log_units></scale_log_units>
<t_auto_scale_rigid></t_auto_scale_rigid>
<auto_scale_rigid>on</auto_scale_rigid>
<t_upper_limit></t_upper_limit>
<upper_limit>100</upper_limit>
<t_lower_limit></t_lower_limit>
<lower_limit>0</lower_limit>
<t_unit_value></t_unit_value>
<unit_value></unit_value>
<t_unit_exponent_value></t_unit_exponent_value>
<unit_exponent_value>0</unit_exponent_value>
<t_unit_length></t_unit_length>
<unit_length></unit_length>
<t_no_gridfit></t_no_gridfit>
<no_gridfit></no_gridfit>
<t_alt_y_grid></t_alt_y_grid>
<alt_y_grid></alt_y_grid>
<t_right_axis></t_right_axis>
<right_axis></right_axis>
<t_right_axis_label></t_right_axis_label>
<right_axis_label></right_axis_label>
<t_right_axis_format></t_right_axis_format>
<right_axis_format></right_axis_format>
<t_right_axis_formatter></t_right_axis_formatter>
<right_axis_formatter></right_axis_formatter>
<t_left_axis_formatter></t_left_axis_formatter>
<left_axis_formatter></left_axis_formatter>
<t_auto_padding></t_auto_padding>
<auto_padding>on</auto_padding>
<t_dynamic_labels></t_dynamic_labels>
<dynamic_labels></dynamic_labels>
<t_force_rules_legend></t_force_rules_legend>
<force_rules_legend></force_rules_legend>
<t_tab_width></t_tab_width>
<tab_width>30</tab_width>
<t_legend_position></t_legend_position>
<legend_position></legend_position>
<t_legend_direction></t_legend_direction>
<legend_direction></legend_direction>
</graph>
<items>
<hash_100102b16b22d734b9567725c825515663e09d>
<graph_type_id>5</graph_type_id>
<task_item_id>hash_0801027027a07be7f59aaa581de64046194cb2</task_item_id>
<color_id>837C04</color_id>
<alpha>FF</alpha>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<vdef_id>0</vdef_id>
<shift></shift>
<value></value>
<gprint_id>hash_060102e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<textalign></textalign>
<text_format>Start Stop Count</text_format>
<hard_return></hard_return>
<line_width>0.00</line_width>
<dashes></dashes>
<dash_offset></dash_offset>
<sequence>1</sequence>
</hash_100102b16b22d734b9567725c825515663e09d>
<hash_1001028353f14b2f36ba21e9cd3f940b217d44>
<graph_type_id>9</graph_type_id>
<task_item_id>hash_0801027027a07be7f59aaa581de64046194cb2</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<vdef_id>0</vdef_id>
<shift></shift>
<value></value>
<gprint_id>hash_060102e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<textalign></textalign>
<text_format></text_format>
<hard_return>on</hard_return>
<line_width>0.00</line_width>
<dashes></dashes>
<dash_offset></dash_offset>
<sequence>2</sequence>
</hash_1001028353f14b2f36ba21e9cd3f940b217d44>
<hash_10010255164c665b499a08522cdfd0c9a6e3d2>
<graph_type_id>5</graph_type_id>
<task_item_id>hash_08010235ea296529861615deff25f5ada486dc</task_item_id>
<color_id>35962B</color_id>
<alpha>FF</alpha>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<vdef_id>0</vdef_id>
<shift></shift>
<value></value>
<gprint_id>hash_060102e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<textalign></textalign>
<text_format>Power On Hours</text_format>
<hard_return></hard_return>
<line_width>0.00</line_width>
<dashes></dashes>
<dash_offset></dash_offset>
<sequence>3</sequence>
</hash_10010255164c665b499a08522cdfd0c9a6e3d2>
<hash_100102e25f0a039cac0ad0eefe0496293cb604>
<graph_type_id>9</graph_type_id>
<task_item_id>hash_08010235ea296529861615deff25f5ada486dc</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<vdef_id>0</vdef_id>
<shift></shift>
<value></value>
<gprint_id>hash_060102e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<textalign></textalign>
<text_format></text_format>
<hard_return>on</hard_return>
<line_width>0.00</line_width>
<dashes></dashes>
<dash_offset></dash_offset>
<sequence>4</sequence>
</hash_100102e25f0a039cac0ad0eefe0496293cb604>
<hash_100102a3340617752a3ccfefad2a33385ad00b>
<graph_type_id>5</graph_type_id>
<task_item_id>hash_080102823fdfbfca4aa19fe4b0bc627a664b19</task_item_id>
<color_id>6EA100</color_id>
<alpha>FF</alpha>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<vdef_id>0</vdef_id>
<shift></shift>
<value></value>
<gprint_id>hash_060102e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<textalign></textalign>
<text_format>Power Cycle Count</text_format>
<hard_return></hard_return>
<line_width>0.00</line_width>
<dashes></dashes>
<dash_offset></dash_offset>
<sequence>5</sequence>
</hash_100102a3340617752a3ccfefad2a33385ad00b>
<hash_1001023382e7d3d14fd9b43b3801d5a835658b>
<graph_type_id>9</graph_type_id>
<task_item_id>hash_080102823fdfbfca4aa19fe4b0bc627a664b19</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<vdef_id>0</vdef_id>
<shift></shift>
<value></value>
<gprint_id>hash_060102e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<textalign></textalign>
<text_format></text_format>
<hard_return>on</hard_return>
<line_width>0.00</line_width>
<dashes></dashes>
<dash_offset></dash_offset>
<sequence>6</sequence>
</hash_1001023382e7d3d14fd9b43b3801d5a835658b>
<hash_100102d641601b754e4e1e58a118c7a2be52e2>
<graph_type_id>5</graph_type_id>
<task_item_id>hash_080102e387e787e95539ae81ec430147570db2</task_item_id>
<color_id>AAABA1</color_id>
<alpha>FF</alpha>
<consolidation_function_id>1</consolidation_function_id>
<cdef_id>0</cdef_id>
<vdef_id>0</vdef_id>
<shift></shift>
<value></value>
<gprint_id>hash_060102e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<textalign></textalign>
<text_format>Offline Uncorrectable</text_format>
<hard_return></hard_return>
<line_width>0.00</line_width>
<dashes></dashes>
<dash_offset></dash_offset>
<sequence>7</sequence>
</hash_100102d641601b754e4e1e58a118c7a2be52e2>
<hash_1001023bfa3ba9d2bba1053f2176561bcd406d>
<graph_type_id>9</graph_type_id>
<task_item_id>hash_080102e387e787e95539ae81ec430147570db2</task_item_id>
<color_id>0</color_id>
<alpha>FF</alpha>
<consolidation_function_id>4</consolidation_function_id>
<cdef_id>0</cdef_id>
<vdef_id>0</vdef_id>
<shift></shift>
<value></value>
<gprint_id>hash_060102e9c43831e54eca8069317a2ce8c6f751</gprint_id>
<textalign></textalign>
<text_format></text_format>
<hard_return>on</hard_return>
<line_width>0.00</line_width>
<dashes></dashes>
<dash_offset></dash_offset>
<sequence>8</sequence>
</hash_1001023bfa3ba9d2bba1053f2176561bcd406d>
<hash_100102df59e5a6f755df7b5fa6a87bbff8d3af>
<graph_type_id>5</graph_type_id>
<task_item_id>hash_0801028d2fe9a5a0b8af960e13961b4ce23cf8</task_item_id>
<color_id>FF0000</color_id>
<alpha>FF</alpha>
<consolidation_function_id>3</consolidation_function_id>
<cdef_id>0</cdef_id>