-
Notifications
You must be signed in to change notification settings - Fork 47
/
check_smartdb.json
3176 lines (3175 loc) · 157 KB
/
check_smartdb.json
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
{
"Devices" : {
"Generic NVMe" : {
"Device" : ["Generic NVMe"],
"ID#" : {
"0" : {"value": "RAW_VALUE", "comment": "Critical Warning"},
"1" : {"value": "RAW_VALUE", "comment": "Temperature"},
"2" : {"value": "RAW_VALUE", "comment": "Available Spare"},
"3" : {"value": "RAW_VALUE", "comment": "Available Spare Threshold"},
"4" : {"value": "RAW_VALUE", "comment": "Percentage Used"},
"5" : {"value": "RAW_VALUE", "comment": "Data Units Read"},
"6" : {"value": "RAW_VALUE", "comment": "Data Units Written"},
"7" : {"value": "RAW_VALUE", "comment": "Host Read Commands"},
"8" : {"value": "RAW_VALUE", "comment": "Host Write Commands"},
"9" : {"value": "RAW_VALUE", "comment": "Controller Busy Time"},
"10" : {"value": "RAW_VALUE", "comment": "Power Cycles"},
"11" : {"value": "RAW_VALUE", "comment": "Power On Hours"},
"12" : {"value": "RAW_VALUE", "comment": "Unsafe Shutdowns"},
"13" : {"value": "RAW_VALUE", "comment": "Media and Data Integrity Errors"},
"14" : {"value": "RAW_VALUE", "comment": "Error Information Log Entries"},
"15" : {"value": "RAW_VALUE", "comment": "Warning Comp. Temperature Time"},
"16" : {"value": "RAW_VALUE", "comment": "Critical Comp. Temperature Time"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"0" : ["0","0"],
"1" : ["50","60"],
"2" : ["16:","11:"],
"4" : ["85","90"],
"13" : ["0","10"],
"14" : ["0","10"],
"15" : ["15","30"],
"16" : ["15","30"],
"1025" : ["0","0"]
},
"Perfs" : ["1","2","4","5","6","7","8","10","11"]
},
"Generic SAS" : {
"Device" : ["Generic SAS"],
"ID#" : {
"0" : {"value":"RAW_VALUE", "comment": "Elements in grown defect list"},
"1" : {"value":"RAW_VALUE", "comment": "Read errors corrected by ECC (fast)"},
"2" : {"value":"RAW_VALUE", "comment": "Read errors corrected by ECC (delayed)"},
"3" : {"value":"RAW_VALUE", "comment": "Read errors corrected by ECC (reread)"},
"4" : {"value":"RAW_VALUE", "comment": "Total read errors corrected"},
"5" : {"value":"RAW_VALUE", "comment": "Total read correction algorithm invocations"},
"6" : {"value":"RAW_VALUE", "comment": "Total read gigabytes processed"},
"7" : {"value":"RAW_VALUE", "comment": "Total uncorrectable read errors"},
"8" : {"value":"RAW_VALUE", "comment": "Write errors corrected by ECC (fast)"},
"9" : {"value":"RAW_VALUE", "comment": "Write errors corrected by ECC (delayed)"},
"10" : {"value": "RAW_VALUE", "comment": "Write errors corrected by ECC (rewrite)"},
"11" : {"value": "RAW_VALUE", "comment": "Total write errors corrected"},
"12" : {"value": "RAW_VALUE", "comment": "Total write correction algorithm invocations"},
"13" : {"value": "RAW_VALUE", "comment": "Total write gigabytes processed"},
"14" : {"value": "RAW_VALUE", "comment": "Total uncorrectable write errors"}
},
"Threshs" : {
"0" : ["20","40"],
"7" : ["0","0"],
"14" : ["0","0"]
},
"Perfs" : ["1","2","3","4","5","6","7","8","9","10","11","12","13","14"]
},
"Intel X25" : {
"Device" : ["INTEL SSDSA2M160G2GN"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power-On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"184" : {"value": "VALUE", "comment": "End-to-End Error"},
"192" : {"value": "RAW_VALUE", "comment": "Power-Off Retract Count (Unsafe Shutdown Count)"},
"225" : {"value": "RAW_VALUE", "comment": "Host Writes (32MiB)"},
"232" : {"value": "VALUE", "comment": "Available Reserved Space"},
"233" : {"value": "VALUE", "comment": "Media Wearout Indicator"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBAs Written (32MiB)"},
"242" : {"value": "RAW_VALUE", "comment": "Total LBAs Read (32MiB)"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["20","40"],
"184" : ["96:","91:"],
"232" : ["16:","11:"],
"233" : ["16:","6:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["232","233","241","242"]
},
"Intel 53X" : {
"Device" : ["INTEL SSDSC2BW120A4"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power-On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"170" : {"value": "VALUE", "comment": "Available Reserved Space (same as 232)"},
"171" : {"value": "RAW_VALUE", "comment": "Program_Fail_Count"},
"172" : {"value": "RAW_VALUE", "comment": "Erase Fail Count"},
"174" : {"value": "RAW_VALUE", "comment": "Unexpected Power Loss"},
"183" : {"value": "RAW_VALUE", "comment": "SATA Downshift Count"},
"184" : {"value": "VALUE", "comment": "End-to-End Error"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectable Error Count"},
"190" : {"value": "RAW_VALUE", "comment": "Airflow Temperature"},
"192" : {"value": "RAW_VALUE", "comment": "Power-Off Retract Count (Unsafe Shutdown Count)"},
"199" : {"value": "RAW_VALUE", "comment": "UDMA CRC Error Count"},
"225" : {"value": "RAW_VALUE", "comment": "Host Writes (32MiB)"},
"226" : {"value": "RAW_VALUE", "comment": "Timed Workload Media Wear"},
"227" : {"value": "RAW_VALUE", "comment": "Timed Workload Host Read/Write Ratio"},
"228" : {"value": "RAW_VALUE", "comment": "Timed Workload Timer"},
"232" : {"value": "VALUE", "comment": "Available Reserved Space"},
"233" : {"value": "VALUE", "comment": "Media Wearout Indicator"},
"241" : {"value": "RAW_VALUE", "comment": "Total Host Writes (32MiB)"},
"242" : {"value": "RAW_VALUE", "comment": "Total Host Reads (32MiB)"},
"249" : {"value": "RAW_VALUE", "comment": "Total NAND writes (1 GB unit)"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["20","40"],
"170" : ["16:","11:"],
"171" : ["0","10"],
"172" : ["0","10"],
"184" : ["96:","91:"],
"187" : ["0","10"],
"190" : ["60","70"],
"199" : ["0","10"],
"232" : ["16:","11:"],
"233" : ["16:","6:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["170","171","172","187","199","225","232","233","241","242","249"]
},
"Intel 320" : {
"Device" : ["Intel 320 Series SSDs","INTEL SSDSA2CW160G3","INTEL SSDSA2CT040G3"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power-On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"171" : {"value": "VALUE", "comment": "Program Fail Count"},
"172" : {"value": "VALUE", "comment": "Erase Fail Count"},
"183" : {"value": "RAW_VALUE", "comment": "SATA Downshift Count (FW 4Px10362 and later)"},
"184" : {"value": "VALUE", "comment": "End-to-End Error Detection Count"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectable Error Count"},
"192" : {"value": "RAW_VALUE", "comment": "Power-Off Retract Count (Unsafe Shutdown Count)"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count (FW 4Px10362 and later)"},
"226" : {"value": "RAW_VALUE", "comment": "Timed Workload Media Wear"},
"227" : {"value": "RAW_VALUE", "comment": "Timed Workload Host Read/Write Ratio"},
"228" : {"value": "RAW_VALUE", "comment": "Timed Workload Timer"},
"232" : {"value": "VALUE", "comment": "Available Reserved Space"},
"233" : {"value": "VALUE", "comment": "Media Wearout Indicator"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBAs Written (32MiB)"},
"242" : {"value": "RAW_VALUE", "comment": "Total LBAs Read (32MiB)"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["20","40"],
"171" : ["16:","11:"],
"172" : ["16:","11:"],
"184" : ["96:","91:"],
"187" : ["0","10"],
"199" : ["0","10"],
"232" : ["16:","11:"],
"233" : ["16:","6:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["233","241","242"]
},
"Intel 520" : {
"Device" : ["Intel 520 Series SSDs","INTEL SSDSC2CW240A3"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Reallocated sector count"},
"9" : {"value": "RAW_VALUE", "comment": "Power on hours"},
"12": { "value": "RAW_VALUE", "comment": "Power cycle counts"},
"171" : {"value": "VALUE", "comment": "Program fail count"},
"172" : {"value": "VALUE", "comment": "Erase fail count"},
"184" : {"value": "VALUE", "comment": "End-to-End Error Detection"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectable Error Count"},
"190" : {"value": "RAW_VALUE", "comment": "Temperature case"},
"194" : {"value": "RAW_VALUE", "comment": "Temperature device"},
"199" : {"value": "RAW_VALUE", "comment": "Sata CRC error count"},
"232" : {"value": "VALUE", "comment": "Available Reserved Space"},
"233" : {"value": "VALUE", "comment": "Media Wearout Indicator"},
"241" : {"value": "RAW_VALUE", "comment": "Host_Writes_32MiB"},
"242" : {"value": "RAW_VALUE", "comment": "Host_Reads_32MiB"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["20","40"],
"171" : ["16:","11:"],
"172" : ["16:","11:"],
"184" : ["96:","91:"],
"187" : ["0","10"],
"199" : ["0","10"],
"232" : ["16:","11:"],
"233" : ["16:","6:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["233","241","242"]
},
"Intel DC S3700" : {
"Device" : ["Intel DC S3700 Series SSDs","INTEL SSDSC2BA100G3","INTEL SSDSC2BA200G3","INTEL SSDSC2BA400G3","INTEL SSDSC2BA800G3","INTEL SSDSC2BX200G4R","INTEL SSDSC2BA200G3C","SSDSC2BA200G4N 00LF202 LENOVO"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power-On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"171" : {"value": "VALUE", "comment": "Program Fail Count"},
"172" : {"value": "VALUE", "comment": "Erase Fail Count"},
"174" : {"value": "RAW_VALUE", "comment": "Unexpected Power Loss"},
"175" : {"value": "VALUE", "comment": "Power Loss Protection Failure"},
"183" : {"value": "RAW_VALUE", "comment": "SATA Downshift Count"},
"184" : {"value": "RAW_VALUE", "comment": "End-to-End Error Detection Count"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectable Error Count"},
"190" : {"value": "RAW_VALUE", "comment": "Temperature - Airflow Temperature (Case)"},
"192" : {"value": "RAW_VALUE", "comment": "Power-Off Retract Count (Unsafe Shutdown Count)"},
"194" : {"value": "RAW_VALUE", "comment": "Temperature - Device Internal Temperature"},
"197" : {"value": "RAW_VALUE", "comment": "Pending Sector Count"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count"},
"226" : {"value": "RAW_VALUE", "comment": "Timed Workload Media Wear"},
"227" : {"value": "RAW_VALUE", "comment": "Timed Workload Host Read/Write Ratio"},
"228" : {"value": "RAW_VALUE", "comment": "Timed Workload Timer"},
"232" : {"value": "VALUE", "comment": "Available Reserved Space"},
"233" : {"value": "VALUE", "comment": "Media Wearout Indicator"},
"234" : {"value": "VALUE", "comment": "Thermal Throttle Status"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBAs Written (32MiB)"},
"242" : {"value": "RAW_VALUE", "comment": "Total LBAs Read (32MiB)"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["20","40"],
"171" : ["16:","11:"],
"172" : ["16:","11:"],
"175" : ["100:","100:"],
"183" : ["20","40"],
"184" : ["20","40"],
"187" : ["0","10"],
"190" : ["60","70"],
"194" : ["60","70"],
"197" : ["0","10"],
"199" : ["0","10"],
"232" : ["16:","11:"],
"233" : ["16:","6:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["190","194","232","233","241","242"]
},
"Intel DC S3510-S3520-S3610-S3710-S4500" : {
"Device" : ["INTEL SSDSC2BA200G4","INTEL SSDSC2BA400G4","INTEL SSDSC2BA800G4","INTEL SSDSC2BA012T4","INTEL SSDSC2BX100G4","INTEL SSDSC2BX100G401","INTEL SSDSC2BX200G4","INTEL SSDSC2BX200G401","INTEL SSDSC2BX400G4","INTEL SSDSC2BX400G401","INTEL SSDSC2BX480G4","INTEL SSDSC2BX480G401","INTEL SSDSC2BX800G4","INTEL SSDSC2BX800G401","INTEL SSDSC2BA012T401","INTEL SSDSC2BA012T4R","INTEL SSDSC2BX016T4","INTEL SSDSC2BX016T401", "INTEL SSDSC2BX800G4R","INTEL SSDSC2BB080G6","INTEL SSDSC2BB120G6","INTEL SSDSC2BB150G7","INTEL SSDSC2BB240G7","INTEL SSDSC2BB480G7","INTEL SSDSC2BB800G7","INTEL SSDSC2BB960G7","INTEL SSDSC2BB480G6","INTEL SSDSC2KB240G7","INTEL SSDSC2KB480G7","INTEL SSDSC2KB960G7","INTEL SSDSC2BB016T6","INTEL SSDSC2BB016T7","INTEL SSDSC2KB019T7", "INTEL SSDSC2KG480G8","INTEL SSDSC2BB240G6", "INTEL SSDSC2KG480G8"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power-On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"171" : {"value": "VALUE", "comment": "Program Fail Count"},
"172" : {"value": "VALUE", "comment": "Erase Fail Count"},
"174" : {"value": "RAW_VALUE", "comment": "Unexpected Power Loss"},
"175" : {"value": "VALUE", "comment": "Power Loss Protection Failure"},
"183" : {"value": "RAW_VALUE", "comment": "SATA Downshift Count"},
"184" : {"value": "RAW_VALUE", "comment": "End-to-End Error Detection Count"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectable Error Count"},
"190" : {"value": "RAW_VALUE", "comment": "Temperature - Airflow Temperature (Case)"},
"192" : {"value": "RAW_VALUE", "comment": "Power-Off Retract Count (Unsafe Shutdown Count)"},
"194" : {"value": "RAW_VALUE", "comment": "Temperature - Device Internal Temperature"},
"197" : {"value": "RAW_VALUE", "comment": "Pending Sector Count"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count"},
"226" : {"value": "RAW_VALUE", "comment": "Timed Workload Media Wear"},
"227" : {"value": "RAW_VALUE", "comment": "Timed Workload Host Read/Write Ratio"},
"228" : {"value": "RAW_VALUE", "comment": "Timed Workload Timer"},
"232" : {"value": "VALUE", "comment": "Available Reserved Space"},
"233" : {"value": "VALUE", "comment": "Media Wearout Indicator"},
"234" : {"value": "VALUE", "comment": "Thermal Throttle Status"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBAs Written (32MiB)"},
"242" : {"value": "RAW_VALUE", "comment": "Total LBAs Read (32MiB)"},
"243" : {"value": "RAW_VALUE", "comment": "Total Bytes Written"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["20","40"],
"171" : ["16:","11:"],
"172" : ["16:","11:"],
"175" : ["100:","100:"],
"183" : ["20","40"],
"184" : ["20","40"],
"187" : ["0","10"],
"190" : ["50","60"],
"194" : ["50","60"],
"197" : ["0","10"],
"199" : ["0","10"],
"232" : ["16:","11:"],
"233" : ["16:","6:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["190","194","232","233","241","242","243"]
},
"Intel DC S3500" : {
"Device" : ["Intel DC S3500 Series SSDs","INTEL SSDSC2BB080G4","INTEL SSDSC2BB120G4","INTEL SSDSC2BB160G4","INTEL SSDSC2BB240G4","INTEL SSDSC2BB300G4","INTEL SSDSC2BB480G4","INTEL SSDSC2BB600G4","INTEL SSDSC2BB800G4","INTEL SSDSC2BB800H4","INTEL SSDSC2BB012T4","INTEL SSDSC2BB150G7","INTEL SSDSC2BB016T7"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power-On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"171" : {"value": "VALUE", "comment": "Program Fail Count"},
"172" : {"value": "VALUE", "comment": "Erase Fail Count"},
"174" : {"value": "RAW_VALUE", "comment": "Unexpected Power Loss"},
"175" : {"value": "VALUE", "comment": "Power Loss Protection Failure"},
"183" : {"value": "RAW_VALUE", "comment": "SATA Downshift Count"},
"184" : {"value": "RAW_VALUE", "comment": "End-to-End Error Detection Count"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectable Error Count"},
"190" : {"value": "RAW_VALUE", "comment": "Temperature - Airflow Temperature (Case)"},
"192" : {"value": "RAW_VALUE", "comment": "Power-Off Retract Count (Unsafe Shutdown Count)"},
"194" : {"value": "RAW_VALUE", "comment": "Temperature - Device Internal Temperature"},
"197" : {"value": "RAW_VALUE", "comment": "Pending Sector Count"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count"},
"226" : {"value": "RAW_VALUE", "comment": "Timed Workload Media Wear"},
"227" : {"value": "RAW_VALUE", "comment": "Timed Workload Host Read/Write Ratio"},
"228" : {"value": "RAW_VALUE", "comment": "Timed Workload Timer"},
"232" : {"value": "VALUE", "comment": "Available Reserved Space"},
"233" : {"value": "VALUE", "comment": "Media Wearout Indicator"},
"234" : {"value": "VALUE", "comment": "Thermal Throttle Status"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBAs Written (32MiB)"},
"242" : {"value": "RAW_VALUE", "comment": "Total LBAs Read (32MiB)"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["20","40"],
"171" : ["16:","11:"],
"172" : ["16:","11:"],
"175" : ["100:","100:"],
"183" : ["20","40"],
"184" : ["20","40"],
"187" : ["0","10"],
"190" : ["50","60"],
"194" : ["50","60"],
"197" : ["0","10"],
"199" : ["0","10"],
"232" : ["16:","11:"],
"233" : ["16:","6:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["190","194","232","233","241","242"]
},
"Intel DC S4600, D3-S4610, D3-S4510" : {
"Device" : ["Intel DC S4600 Series SSDs","Intel D3-S4610 Series SSDs","Intel D3-S4510 Series SSDs","INTEL SSDSC2KG240G701","INTEL SSDSC2KG480G701","INTEL SSDSC2KG960G701","INTEL SSDSC2KG019T701","INTEL SSDSC2KG240G8","INTEL SSDSC2KG240G801","INTEL SSDSC2KG480G801","INTEL SSDSC2KG960G801","INTEL SSDSC2KG019T801","INTEL SSDSC2KG038T801","INTEL SSDSC2KB240G8","SSDSC2KG240G8R","INTEL SSDSC2KB480G8","INTEL SSDSC2KB960G8","INTEL SSDSC2KB019T8","INTEL SSDSC2KB038T8", "INTEL SSDSC2KG019T8"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power-On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"170" : {"value": "RAW_VALUE", "comment": "Available Reserved Space"},
"171" : {"value": "VALUE", "comment": "Program Fail Count"},
"172" : {"value": "VALUE", "comment": "Erase Fail Count"},
"174" : {"value": "RAW_VALUE", "comment": "Unexpected Power Loss"},
"175" : {"value": "VALUE", "comment": "Power Loss Protection Failure"},
"183" : {"value": "RAW_VALUE", "comment": "SATA Downshift Count Runtime Bad Block"},
"184" : {"value": "RAW_VALUE", "comment": "End-to-End Error Detection Count"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectable Error Count"},
"190" : {"value": "RAW_VALUE", "comment": "Temperature - Airflow Temperature (Case)"},
"192" : {"value": "RAW_VALUE", "comment": "Power-Off Retract Count (Unsafe Shutdown Count)"},
"194" : {"value": "RAW_VALUE", "comment": "Temperature - Device Internal Temperature"},
"197" : {"value": "RAW_VALUE", "comment": "Pending Sector Count"},
"199" : {"value": "RAW_VALUE", "comment": "UDMA CRC Error Count"},
"225" : {"value": "RAW_VALUE", "comment": "Host Writes (32MiB)"},
"226" : {"value": "RAW_VALUE", "comment": "Timed Workload Media Wear"},
"227" : {"value": "RAW_VALUE", "comment": "Timed Workload Host Read/Write Ratio"},
"228" : {"value": "RAW_VALUE", "comment": "Timed Workload Timer (Power-off Retract Count)"},
"232" : {"value": "VALUE", "comment": "Available Reserved Space"},
"233" : {"value": "VALUE", "comment": "Media Wearout Indicator"},
"234" : {"value": "VALUE", "comment": "Thermal Throttle Status"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBAs Written (32MiB)"},
"242" : {"value": "RAW_VALUE", "comment": "Total LBAs Read (32MiB)"},
"243" : {"value": "RAW_VALUE", "comment": "Total Bytes Written (32MiB)"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["20","40"],
"171" : ["16:","11:"],
"172" : ["16:","11:"],
"175" : ["100:","100:"],
"183" : ["20","40"],
"184" : ["20","40"],
"187" : ["0","10"],
"190" : ["50","60"],
"194" : ["50","60"],
"197" : ["0","10"],
"199" : ["0","10"],
"232" : ["16:","11:"],
"233" : ["16:","6:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["190","194","232","233","241","242"]
},
"SanDisk X300s" : {
"Device" : ["Marvell based SanDisk SSDs","SanDisk SD6SB1M128G1022I","SanDisk SD6SB1M256G1022I","SanDisk SD6SB2M512G1022I","SanDisk SD7UB2Q512G1022","SanDisk SD7UB2Q512G1122"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power-On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"171" : {"value": "RAW_VALUE", "comment": "Program_Fail_Count"},
"172" : {"value": "RAW_VALUE", "comment": "Erase_Fail_Count"},
"174" : {"value": "RAW_VALUE", "comment": "Unexpect_Power_Loss_Ct"},
"187" : {"value": "RAW_VALUE", "comment": "Reported_Uncorrect"},
"194" : {"value": "RAW_VALUE", "comment": "Temperature_Celsius"},
"212" : {"value": "RAW_VALUE", "comment": "SATA_PHY_Error"},
"230" : {"value": "RAW_VALUE", "comment": "Perc_Write_Erase_Count/Wear out"},
"232" : {"value": "RAW_VALUE", "comment": "Perc_Avail_Resrvd_Space"},
"241" : {"value": "RAW_VALUE", "comment": "Total_Writes_GiB"},
"242" : {"value": "RAW_VALUE", "comment": "Total_Reads_GiB"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["20","40"],
"171" : ["0","10"],
"172" : ["0","10"],
"187" : ["0","10"],
"212" : ["0","10"],
"230" : ["85","95","r8"],
"232" : ["16:","11:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["194","230","232","241","242"]
},
"SanDisk X400s": {
"Device": ["SanDisk SD8SB8U1T001122", "SanDisk SD8SB8U512G1122"],
"ID#": {
"5" : {"value": "RAW_VALUE", "comment": "Reassigned NAND Block Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power-On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Drive Power Cycle Count"},
"184" : {"value": "VALUE", "comment": "End to End Error Data Detection"},
"187" : {"value": "RAW_VALUE", "comment": "Reported Uncorrectrable Errors"},
"188" : {"value": "RAW_VALUE", "comment": "Command Timeout Count"},
"194" : {"value": "RAW_VALUE", "comment": "Enclosure Temperature Celsius"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count"},
"230" : {"value": "VALUE", "comment": "Media Wearout Indicator"},
"232" : {"value": "RAW_VALUE", "comment": "Available Reserved Space"},
"233" : {"value": "VALUE", "comment": "NAND GB Written (TLC)"},
"241" : {"value": "RAW_VALUE", "comment": "Total GB Written"},
"242" : {"value": "RAW_VALUE", "comment": "Total GB Read"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs": {
"5" : ["20","40"],
"184" : ["0","10"],
"187" : ["0","10"],
"188" : ["0","10"],
"199" : ["0","10"],
"232" : ["16:","11:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs": ["194", "232", "241", "242"]
},
"SanDisk X600s": {
"Device": ["SanDisk SD9SB8W1T001122"],
"ID#": {
"5" : {"value": "RAW_VALUE", "comment": "Reassigned NAND Block Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power-On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Drive Power Cycle Count"},
"184" : {"value": "VALUE", "comment": "End to End Error Data Detection"},
"187" : {"value": "RAW_VALUE", "comment": "Reported Uncorrectrable Errors"},
"188" : {"value": "RAW_VALUE", "comment": "Command Timeout Count"},
"194" : {"value": "RAW_VALUE", "comment": "Enclosure Temperature Celsius"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count"},
"230" : {"value": "VALUE", "comment": " Media Wearout Indicator"},
"232" : {"value": "RAW_VALUE", "comment": "Available Reserved Space"},
"233" : {"value": "VALUE", "comment": "NAND GB Written (TLC)"},
"241" : {"value": "RAW_VALUE", "comment": "Total GB Written"},
"242" : {"value": "RAW_VALUE", "comment": "Total GB Read"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs": {
"5" : ["20","40"],
"184" : ["0","10"],
"187" : ["0","10"],
"188" : ["0","10"],
"199" : ["0","10"],
"232" : ["16:","11:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs": ["194", "232", "241", "242"]
},
"SanDisk SSD Plus" : {
"Device" : ["SandForce Driven SSDs","SanDisk SDSSDA120G","SanDisk SDSSDA240G","SanDisk SDSSDA480G"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Retired_Block_Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power-On Hours_and_Msec"},
"12" : {"value": "RAW_VALUE", "comment": "Power_Cycle_Count"},
"170" : {"value": "RAW_VALUE", "comment": "Reserve_Block_Count"},
"171" : {"value": "RAW_VALUE", "comment": "Program_Fail_Count"},
"172" : {"value": "RAW_VALUE", "comment": "Erase_Fail_Count"},
"174" : {"value": "RAW_VALUE", "comment": "Unexpect_Power_Loss_Ct"},
"187" : {"value": "RAW_VALUE", "comment": "Reported_Uncorrect"},
"194" : {"value": "RAW_VALUE", "comment": "Temperature_Celsius"},
"199" : {"value": "RAW_VALUE", "comment": "SATA_CRC_Error_Count"},
"230" : {"value": "RAW_VALUE", "comment": "Life_Curve_Status"},
"232" : {"value": "VALUE", "comment": "Perc_Avail_Resrvd_Space"},
"241" : {"value": "RAW_VALUE", "comment": "Total_Writes_GiB"},
"242" : {"value": "RAW_VALUE", "comment": "Total_Reads_GiB"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["20","40"],
"171" : ["0","10"],
"172" : ["0","10"],
"187" : ["0","10"],
"212" : ["0","10"],
"230" : ["85","95","r8"],
"232" : ["16:","11:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["194","230","232","241","242"]
},
"Samsung SM883" : {
"Device" : ["SAMSUNG MZ7KH240HAHQ-00005","SAMSUNG MZ7KH480HAHQ-00005","SAMSUNG MZ7KH960HAJR-00005","SAMSUNG MZ7KH1T9HAJR-00005","SAMSUNG MZ7KH3T8HALS-00005"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"177" : {"value": "VALUE", "comment": "Wear Leveling Count"},
"179" : {"value": "VALUE", "comment": "Used Reserved Block Count (Total)"},
"180" : {"value": "VALUE", "comment": "Unused Reserved Block Count (Total)"},
"181" : {"value": "RAW_VALUE", "comment": "Program Fail Count (Total)"},
"182" : {"value": "RAW_VALUE", "comment": "Erase Fail Count (Total)"},
"183" : {"value": "VALUE", "comment": "Runtime Bad Count (Total)"},
"184" : {"value": "VALUE", "comment": "End to End Error Data Path Error Count"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectrable Error Count"},
"190" : {"value": "RAW_VALUE", "comment": "Air Flow Temperature"},
"195" : {"value": "RAW_VALUE", "comment": "ECC Error Rate"},
"197" : {"value": "RAW_VALUE", "comment": "Current Pending Sector"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count"},
"202" : {"value": "VALUE", "comment": "SSD Mode Status"},
"235" : {"value": "RAW_VALUE", "comment": "Power Recovery Count"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBA Written"},
"242" : {"value": "RAW_VALUE", "comment": "Total LBA Read"},
"243" : {"value": "RAW_VALUE", "comment": "SATA Downshift Count"},
"244" : {"value": "RAW_VALUE", "comment": "Thermal Throttle Status"},
"245" : {"value": "RAW_VALUE", "comment": "Timed Workld Media Wear"},
"246" : {"value": "RAW_VALUE", "comment": "Timed Workld RdWr Ratio"},
"247" : {"value": "RAW_VALUE", "comment": "Timed Workld Timer"},
"251" : {"value": "RAW_VALUE", "comment": "NAND Writes"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["10","20"],
"177" : ["11:","6:"],
"179" : ["20:","10:"],
"180" : ["20:","10:"],
"181" : ["0","10"],
"182" : ["0","10"],
"183" : ["20:","10:"],
"184" : ["98:","97:"],
"187" : ["0","10"],
"190" : ["60","70"],
"195" : ["0","10"],
"197" : ["0","10"],
"199" : ["0","10"],
"202" : ["20:","10:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["177","180","190","241","242"]
},
"Samsung PM893" : {
"Device" : ["SAMSUNG MZ7L3240HCHQ-00A07", "SAMSUNG MZ7L3480HCHQ-00A07","SAMSUNG MZ7L3960HCJR-00A07","SAMSUNG MZ7L31T9HBLT-00A07","SAMSUNG MZ7L33T8HBLT-00A07","SAMSUNG MZ7L37T6HBLA-00A07"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"177" : {"value": "VALUE", "comment": "Wear Leveling Count"},
"179" : {"value": "VALUE", "comment": "Used Reserved Block Count (Total)"},
"180" : {"value": "VALUE", "comment": "Unused Reserved Block Count (Total)"},
"181" : {"value": "RAW_VALUE", "comment": "Program Fail Count (Total)"},
"182" : {"value": "RAW_VALUE", "comment": "Erase Fail Count (Total)"},
"183" : {"value": "VALUE", "comment": "Runtime Bad Count (Total)"},
"184" : {"value": "VALUE", "comment": "End to End Error Data Path Error Count"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectable Error Count"},
"190" : {"value": "RAW_VALUE", "comment": "Air Flow Temperature"},
"194" : {"value": "RAW_VALUE", "comment": "Temperature Celsius"},
"195" : {"value": "RAW_VALUE", "comment": "ECC Error Rate"},
"197" : {"value": "RAW_VALUE", "comment": "Current Pending Sector"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count"},
"202" : {"value": "VALUE", "comment": "Exception Mode Status"},
"235" : {"value": "RAW_VALUE", "comment": "Power Recovery Count"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBA Written"},
"242" : {"value": "RAW_VALUE", "comment": "Total LBA Read"},
"243" : {"value": "RAW_VALUE", "comment": "SATA Downshift Count"},
"244" : {"value": "RAW_VALUE", "comment": "Thermal Throttle Status"},
"245" : {"value": "RAW_VALUE", "comment": "Timed Workld Media Wear"},
"246" : {"value": "RAW_VALUE", "comment": "Timed Workld RdWr Ratio"},
"247" : {"value": "RAW_VALUE", "comment": "Timed Workld Timer"},
"251" : {"value": "RAW_VALUE", "comment": "NAND Writes"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["10","20"],
"177" : ["11:","6:"],
"179" : ["20:","10:"],
"180" : ["20:","10:"],
"181" : ["0","10"],
"182" : ["0","10"],
"183" : ["20:","10:"],
"184" : ["98:","97:"],
"187" : ["0","10"],
"190" : ["60","70"],
"195" : ["0","10"],
"197" : ["0","10"],
"199" : ["0","10"],
"202" : ["20:","10:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["177","180","190","241","242"]
},
"Samsung PM883" : {
"Device" : ["SAMSUNG MZ7LH240HAHQ-00005","SAMSUNG MZ7LH480HAHQ-00005","SAMSUNG MZ7LH960HAJR-00005","SAMSUNG MZ7LH1T9HMLT-00005","SAMSUNG MZ7LH3T8HMLT-00005","SAMSUNG MZ7LH7T6HMLA-00005"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"177" : {"value": "VALUE", "comment": "Wear Leveling Count"},
"179" : {"value": "VALUE", "comment": "Used Reserved Block Count (Total)"},
"180" : {"value": "VALUE", "comment": "Unused Reserved Block Count (Total)"},
"181" : {"value": "RAW_VALUE", "comment": "Program Fail Count (Total)"},
"182" : {"value": "RAW_VALUE", "comment": "Erase Fail Count (Total)"},
"183" : {"value": "VALUE", "comment": "Runtime Bad Count (Total)"},
"184" : {"value": "VALUE", "comment": "End to End Error Data Path Error Count"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectrable Error Count"},
"190" : {"value": "RAW_VALUE", "comment": "Air Flow Temperature"},
"195" : {"value": "RAW_VALUE", "comment": "ECC Error Rate"},
"197" : {"value": "RAW_VALUE", "comment": "Current Pending Sector"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count"},
"202" : {"value": "VALUE", "comment": "SSD Mode Status"},
"235" : {"value": "RAW_VALUE", "comment": "Power Recovery Count"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBA Written"},
"242" : {"value": "RAW_VALUE", "comment": "Total LBA Read"},
"243" : {"value": "RAW_VALUE", "comment": "SATA Downshift Count"},
"244" : {"value": "RAW_VALUE", "comment": "Thermal Throttle Status"},
"245" : {"value": "RAW_VALUE", "comment": "Timed Workld Media Wear"},
"246" : {"value": "RAW_VALUE", "comment": "Timed Workld RdWr Ratio"},
"247" : {"value": "RAW_VALUE", "comment": "Timed Workld Timer"},
"251" : {"value": "RAW_VALUE", "comment": "NAND Writes"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["10","20"],
"177" : ["11:","6:"],
"179" : ["20:","10:"],
"180" : ["20:","10:"],
"181" : ["0","10"],
"182" : ["0","10"],
"183" : ["20:","10:"],
"184" : ["98:","97:"],
"187" : ["0","10"],
"190" : ["60","70"],
"195" : ["0","10"],
"197" : ["0","10"],
"199" : ["0","10"],
"202" : ["20:","10:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["177","180","190","241","242"]
},
"Samsung PM871b" : {
"Device" : ["SAMSUNG MZ7LN128HAHQ-000L2"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"170" : {"value": "RAW_VALUE", "comment": "Unused Reserved Block Count (Chip)"},
"171" : {"value": "RAW_VALUE", "comment": "Program Fail Count Chip"},
"172" : {"value": "RAW_VALUE", "comment": "Erase Fail Count Chip"},
"173" : {"value": "VALUE", "comment": "Wear Leveling Count"},
"174" : {"value": "RAW_VALUE", "comment": "Unexpected Power Loss Count"},
"178" : {"value": "RAW_VALUE", "comment": "Used Reserved Block Count Chip"},
"180" : {"value": "VALUE", "comment": "Unused Reserved Block Count (Total)"},
"184" : {"value": "VALUE", "comment": "End to End Error Data Path Error Count"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectrable Error Count"},
"194" : {"value": "RAW_VALUE", "comment": "Temperature Celsius"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count"},
"233" : {"value": "VALUE", "comment": "Media Wearout Indicator"},
"234" : {"value": "RAW_VALUE", "comment": "Unknown Samsung Attribute"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBA Written"},
"242" : {"value": "RAW_VALUE", "comment": "Total LBA Read"},
"249" : {"value": "RAW_VALUE", "comment": "Total NAND writes (1 GB unit)"}
},
"Threshs" : {
"5" : ["10","20"],
"171" : ["0","10"],
"172" : ["0","10"],
"173" : ["026:","016:"],
"180" : ["20:","10:"],
"184" : ["98:","97:"],
"187" : ["0","10"],
"194" : ["50","60"],
"199" : ["0","10"],
"233" : ["020:","010:"]
},
"Perfs" : ["5","9","12","173","180","194","199","233","241","242","249"]
},
"Samsung SM863" : {
"Device" : ["SAMSUNG MZ7KM120HAHP-0E005","SAMSUNG MZ7KM240HAHP-0E005","SAMSUNG MZ7KM480HAHP-0E005","SAMSUNG MZ7KM960HAHP-0E005","SAMSUNG MZ7KM1T9HAHP-0E005", "SAMSUNG MZ7KM240HAGR-00005","SAMSUNG MZ7KM1T9HAJM-00005", "SAMSUNG MZ7KM1T9HAJM-0E005"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"177" : {"value": "VALUE", "comment": "Wear Leveling Count"},
"179" : {"value": "VALUE", "comment": "Used Reserved Block Count (Total)"},
"180" : {"value": "VALUE", "comment": "Unused Reserved Block Count (Total)"},
"181" : {"value": "RAW_VALUE", "comment": "Program Fail Count (Total)"},
"182" : {"value": "RAW_VALUE", "comment": "Erase Fail Count (Total)"},
"183" : {"value": "VALUE", "comment": "Runtime Bad Count (Total)"},
"184" : {"value": "VALUE", "comment": "End to End Error Data Path Error Count"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectrable Error Count"},
"190" : {"value": "RAW_VALUE", "comment": "Air Flow Temperature"},
"195" : {"value": "RAW_VALUE", "comment": "ECC Error Rate"},
"197" : {"value": "RAW_VALUE", "comment": "Current Pending Sector"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count"},
"202" : {"value": "VALUE", "comment": "SSD Mode Status"},
"235" : {"value": "RAW_VALUE", "comment": "Power Recovery Count"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBA Written"},
"242" : {"value": "RAW_VALUE", "comment": "Total LBA Read"},
"243" : {"value": "RAW_VALUE", "comment": "SATA Downshift Count"},
"244" : {"value": "RAW_VALUE", "comment": "Thermal Throttle Status"},
"245" : {"value": "RAW_VALUE", "comment": "Timed Workld Media Wear"},
"246" : {"value": "RAW_VALUE", "comment": "Timed Workld RdWr Ratio"},
"247" : {"value": "RAW_VALUE", "comment": "Timed Workld Timer"},
"251" : {"value": "RAW_VALUE", "comment": "NAND Writes"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["10","20"],
"177" : ["11:","6:"],
"179" : ["20:","10:"],
"180" : ["20:","10:"],
"181" : ["0","10"],
"182" : ["0","10"],
"183" : ["20:","10:"],
"184" : ["98:","97:"],
"187" : ["0","10"],
"190" : ["60","70"],
"195" : ["0","10"],
"197" : ["0","10"],
"199" : ["0","10"],
"202" : ["20:","10:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["177","180","190","241","242"]
},
"Samsung PM863a" : {
"Device" : ["SAMSUNG MZ7LM240HMHQ-00005","SAMSUNG MZ7LM480HMHQ-00005","SAMSUNG MZ7LM960HMJP-00005","SAMSUNG MZ7LM1T9HMJP-00005","SAMSUNG MZ7LM3T8HMLP-00005","SAMSUNG MZ7LM1T9HMJP0D3"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"177" : {"value": "VALUE", "comment": "Wear Leveling Count"},
"179" : {"value": "VALUE", "comment": "Used Reserved Block Count (Total)"},
"180" : {"value": "VALUE", "comment": "Unused Reserved Block Count (Total)"},
"181" : {"value": "RAW_VALUE", "comment": "Program Fail Count (Total)"},
"182" : {"value": "RAW_VALUE", "comment": "Erase Fail Count (Total)"},
"183" : {"value": "VALUE", "comment": "Runtime Bad Count (Total)"},
"184" : {"value": "VALUE", "comment": "End to End Error Data Path Error Count"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectrable Error Count"},
"190" : {"value": "RAW_VALUE", "comment": "Air Flow Temperature"},
"194" : {"value": "RAW_VALUE", "comment": "Temperature Celsius"},
"195" : {"value": "RAW_VALUE", "comment": "ECC Error Rate"},
"197" : {"value": "RAW_VALUE", "comment": "Current Pending Sector"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count"},
"202" : {"value": "VALUE", "comment": "SSD Mode Status"},
"235" : {"value": "RAW_VALUE", "comment": "Power Recovery Count"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBA Written"},
"242" : {"value": "RAW_VALUE", "comment": "Total LBA Read"},
"243" : {"value": "RAW_VALUE", "comment": "SATA Downshift Count"},
"244" : {"value": "RAW_VALUE", "comment": "Thermal Throttle Status"},
"245" : {"value": "RAW_VALUE", "comment": "Timed Workld Media Wear"},
"246" : {"value": "RAW_VALUE", "comment": "Timed Workld RdWr Ratio"},
"247" : {"value": "RAW_VALUE", "comment": "Timed Workld Timer"},
"251" : {"value": "RAW_VALUE", "comment": "NAND Writes"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["10","20"],
"177" : ["11:","6:"],
"179" : ["20:","10:"],
"180" : ["20:","10:"],
"181" : ["0","10"],
"182" : ["0","10"],
"183" : ["20:","10:"],
"184" : ["98:","97:"],
"187" : ["0","10"],
"190" : ["60","70"],
"195" : ["0","10"],
"197" : ["0","10"],
"199" : ["0","10"],
"202" : ["20:","10:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["177","180","190","241","242"]
},
"Samsung SM863a" : {
"Device" : ["SAMSUNG MZ7KM240HMHQ-00005","SAMSUNG MZ7KM480HMHQ-00005","SAMSUNG MZ7KM960HMJP-00005","SAMSUNG MZ7KM1T9HMJP-00005","Dell MZ7KM240HMHQ0D3","Dell MZ7KM480HMHQ0D3","Dell MZ7KM960HMJP0D3","Dell MZ7KM1T9HMJP0D3","Dell MZ7KM3T8HMLP0D3"],
"ID#" : {
"1" : {"value": "VALUE", "comment": "Raw Read Error Rate"},
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"177" : {"value": "VALUE", "comment": "Wear Leveling Count"},
"179" : {"value": "VALUE", "comment": "Used Reserved Block Count (Total)"},
"180" : {"value": "VALUE", "comment": "Unused Reserved Block Count (Total)"},
"181" : {"value": "RAW_VALUE", "comment": "Program Fail Count (Total)"},
"182" : {"value": "RAW_VALUE", "comment": "Erase Fail Count (Total)"},
"183" : {"value": "VALUE", "comment": "Runtime Bad Count (Total)"},
"184" : {"value": "VALUE", "comment": "End to End Error Data Path Error Count"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectrable Error Count"},
"190" : {"value": "RAW_VALUE", "comment": "Air Flow Temperature"},
"194" : {"value": "RAW_VALUE", "comment": "Temperature Celsius"},
"195" : {"value": "RAW_VALUE", "comment": "ECC Error Rate"},
"197" : {"value": "RAW_VALUE", "comment": "Current Pending Sector"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count"},
"202" : {"value": "VALUE", "comment": "SSD Mode Status"},
"233" : {"value": "VALUE", "comment": "Media Wearout Indicator"},
"235" : {"value": "RAW_VALUE", "comment": "Power Recovery Count"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBA Written"},
"242" : {"value": "RAW_VALUE", "comment": "Total LBA Read"},
"243" : {"value": "RAW_VALUE", "comment": "SATA Downshift Count"},
"244" : {"value": "RAW_VALUE", "comment": "Thermal Throttle Status"},
"245" : {"value": "RAW_VALUE", "comment": "Timed Workld Media Wear"},
"246" : {"value": "RAW_VALUE", "comment": "Timed Workld RdWr Ratio"},
"247" : {"value": "RAW_VALUE", "comment": "Timed Workld Timer"},
"251" : {"value": "RAW_VALUE", "comment": "NAND Writes"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"1" : ["62:","52:"],
"5" : ["10","20"],
"177" : ["11:","6:"],
"179" : ["20:","10:"],
"180" : ["20:","10:"],
"181" : ["0","10"],
"182" : ["0","10"],
"183" : ["20:","10:"],
"184" : ["98:","97:"],
"187" : ["0","10"],
"190" : ["60","70"],
"194" : ["50","60"],
"195" : ["0","10"],
"197" : ["0","10"],
"199" : ["0","10"],
"202" : ["20:","10:"],
"233" : ["16:","6:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["177","180","190","194","233","241","242"]
},
"Samsung PM853T" : {
"Device" : ["SAMSUNG MZ7GE240HMGR-00003","SAMSUNG MZ7GE480HMGR-00003","SAMSUNG MZ7GE960HMGR-00003","SAMSUNG MZ7GE480HMHP-00003"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power On Count"},
"177" : {"value": "VALUE", "comment": "Wear Leveling Count"},
"179" : {"value": "VALUE", "comment": "Used Reserved Block Count (Total)"},
"180" : {"value": "VALUE", "comment": "Unused Reserved Block Count (Total)"},
"181" : {"value": "RAW_VALUE", "comment": "Program Fail Count (Total)"},
"182" : {"value": "RAW_VALUE", "comment": "Erase Fail Count (Total)"},
"183" : {"value": "VALUE", "comment": "Runtime Bad Count (Total)"},
"184" : {"value": "VALUE", "comment": "End to End Error Data Path Error Count"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectrable Error Count"},
"190" : {"value": "RAW_VALUE", "comment": "Air Flow Temperature"},
"195" : {"value": "RAW_VALUE", "comment": "ECC Error Rate"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count"},
"202" : {"value": "VALUE", "comment": "SSD Mode Status"},
"235" : {"value": "RAW_VALUE", "comment": "Power Recovery Count"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBA Written"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["10","20"],
"177" : ["16:","11:"],
"179" : ["3500","4000"],
"180" : ["16:","11:"],
"181" : ["0","10"],
"182" : ["0","10"],
"183" : ["20:","10:"],
"184" : ["95:","90:"],
"187" : ["0","10"],
"190" : ["60","70"],
"195" : ["0","10"],
"199" : ["0","10"],
"202" : ["20:","10:"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["190","177","180","241"]
},
"Samsung 840PRO" : {
"Device" : ["Samsung SSD 840 PRO Series", "Samsung SSD 870 QVO 8TB"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"177" : {"value": "VALUE", "comment": "Wear Leveling Count"},
"179" : {"value": "RAW_VALUE", "comment": "Used Reserved Block Count (Total)"},
"181" : {"value": "RAW_VALUE", "comment": "Program Fail Count (Total)"},
"182" : {"value": "RAW_VALUE", "comment": "Erase Fail Count (Total)"},
"183" : {"value": "RAW_VALUE", "comment": "Runtime Bad Block Count (Total)"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectable Error Count"},
"190" : {"value": "RAW_VALUE", "comment": "Air Flow Temperature Celsius"},
"195" : {"value": "RAW_VALUE", "comment": "ECC Error Rate"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count"},
"235" : {"value": "RAW_VALUE", "comment": "Power Recovery Count"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBAs Written"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["5","10"],
"177" : ["10:","1:"],
"179" : ["5","10"],
"181" : ["0","10"],
"182" : ["5","10"],
"183" : ["5","10"],
"187" : ["0","0"],
"190" : ["60","70"],
"195" : ["0","0"],
"199" : ["0","0"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["5","177","179","190","241"]
},
"Samsung 850PRO" : {
"Device" : ["Samsung SSD 850 PRO 256GB","Samsung SSD 850 PRO 512GB","Samsung SSD 850 PRO 1TB","Samsung SSD 850 PRO 2TB","Samsung SSD 860 EVO M.2 250GB", "Samsung SSD 860 EVO 500GB", "Samsung SSD 860 EVO 250GB", "Samsung SSD 850 EVO 500GB", "Samsung SSD 860 QVO 1TB", "SSD 850 EVO 250GB", "SSD 870 EVO 1TB", "Samsung SSD 750 EVO 120GB"],
"ID#" : {
"5" : {"value": "RAW_VALUE", "comment": "Re-allocated Sector Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"177" : {"value": "VALUE", "comment": "Wear Leveling Count"},
"179" : {"value": "RAW_VALUE", "comment": "Used Reserved Block Count (Total)"},
"181" : {"value": "RAW_VALUE", "comment": "Program Fail Count (Total)"},
"182" : {"value": "RAW_VALUE", "comment": "Erase Fail Count (Total)"},
"183" : {"value": "RAW_VALUE", "comment": "Runtime Bad Block Count (Total)"},
"187" : {"value": "RAW_VALUE", "comment": "Uncorrectable Error Count"},
"190" : {"value": "RAW_VALUE", "comment": "Air Flow Temperature Celsius"},
"195" : {"value": "RAW_VALUE", "comment": "ECC Error Rate"},
"199" : {"value": "RAW_VALUE", "comment": "CRC Error Count"},
"235" : {"value": "RAW_VALUE", "comment": "Power Recovery Count"},
"241" : {"value": "RAW_VALUE", "comment": "Total LBAs Written"},
"1024" : {"value": "VALUE", "comment": "ATA error count (custom)"},
"1025" : {"value": "VALUE", "comment": "SMART overall-health self-assessment (custom)"}
},
"Threshs" : {
"5" : ["5","10"],
"177" : ["10:","1:"],
"179" : ["5","10"],
"181" : ["0","10"],
"182" : ["5","10"],
"183" : ["5","10"],
"187" : ["0","0"],
"190" : ["60","70"],
"195" : ["0","0"],
"199" : ["0","0"],
"1024" : ["0","10"],
"1025" : ["0","0"]
},
"Perfs" : ["5","177","179","190","241"]
},
"Crucial M500" : {
"Device" : ["Crucial_CT120M500SSD1","Crucial_CT240M500SSD1","Crucial_CT480M500SSD1","CT500MX500SSD1","Crucial_CT960M500SSD1", "CT1000MX500SSD1"],
"ID#" : {
"1" : {"value": "RAW_VALUE", "comment": "Raw Read Error Rate"},
"5" : {"value": "RAW_VALUE", "comment": "Reallocated NAND Block Count"},
"9" : {"value": "RAW_VALUE", "comment": "Power On Hours Count"},
"12" : {"value": "RAW_VALUE", "comment": "Power Cycle Count"},
"171" : {"value": "RAW_VALUE", "comment": "Program Fail Count"},