dak180 / FreeNAS-Report

SMART & ZPool Status Report for FreeNAS/TrueNAS
GNU General Public License v3.0
38 stars 8 forks source link

Dedup double reporting on multipath SAS. #32

Closed gcs8 closed 4 months ago

gcs8 commented 4 months ago

Hey, thanks for the report, I am pretty happy with it overall, so thanks for sharing it with us.

Can I con you into deduping the disks in the report based off of Serial Number? Or, it is SAS, could use gmultipath UUID? Or maybe sesutil show?

Here is what it looks like for me, the HDDs have 4 entries each and the SSDs I use for metadata use have two each.

Gmail - Status Report and Configuration Backup for The-Archive - 2024-03-16 08_00.pdf

dak180 commented 4 months ago

I am unlikely to do this work myself since I have no sas drives let alone a dual path setup to test with. I would accept a patch, however it would need to account for things like the Seagate Exos 2X18 which present as two separate drives with some potentially different stats but the same serial number.

JoeSchmuck commented 4 months ago

@dak180 Here is my code for handling multipath. The input and output variable is 'duplicate_list'. Feed it a list of drive ID's and it will remove any duplicates and feed back the list. And of course smartdata5 is "smartctl -x --json /dev/xxx". The Drive ID was the easiest way for my script. So if sda has serial number 1234, and sdb has serial number 1234, then we remove sbd from processing. -Joe

`########## REMOVE DUPLICATE DRIVE SERIAL NUMBERS - MULTIPATH FIX ##########

remove_duplicate () {

Passed Variable is 'duplicate_list'

duplicate_serial=""
duplicate_drive=""

# Get drive serial number
for i in ${duplicate_list}; do  # Drive ID's
    smartdata5="$(smartctl -x --json=u /dev/"$i")"
    dup_test="$(echo "${smartdata5}" | jq -Mre '.serial_number | values')"  # Drive Serial Number

    if [[ ! "$duplicate_serial" == *"$dup_test"* ]]; then
        duplicate_serial=$duplicate_serial" "$dup_test

        if [[ $duplicate_drive == "" ]]; then
            duplicate_drive=$i
        else
            duplicate_drive=$duplicate_drive" "$i
        fi
    fi
    duplicate_list=$duplicate_drive
done
    duplicate_list=$duplicate_drive
}

`

dak180 commented 4 months ago

@JoeSchmuck any suggestions for accounting for things like the Seagate Exos 2X18 which present as two separate drives with different stats but a shared serial number?

JoeSchmuck commented 4 months ago

This does compare serial numbers. You give it a list of drive idents (sda, sdb, sdc, sdd, ... and if there are two serial numbers that match, the last drive ident is dropped out of the list. Example: you feed the script "sda, sdb, sdc, sdd, sde, sdf" and the script examines each drive for its serial number. sda serial number is "123", and sde serial number is "123", then the return list would be "sda, sdb, sdc. sdd, sdf". Not the script just needs to process for those drive idents.

I guess I would have to examine your script to see how to implement it but the basics are there.

dak180 commented 4 months ago

@JoeSchmuck the problem is serial numbers are not going to be unique in all cases. The Exos 2X* line is only one example, NVMe namespaces are another that will result in a duplicate serial numbers but statistics that are different. I would rather have duplicated info than throw away useful info and without a way to detect that reliably (hence the issue of a lack of test environment)...

JoeSchmuck commented 4 months ago

I need to look into the Exos 2X line as I'm not certain I follow, I guess you are saying that the Exos 2X will display as two drives with different serial numbers. If that is not true, please treat me like I'm stupid. I deal with the military every day and communication is critical so we ask questions often to clarify what one person think they are telling us.

The NVMe name spaces could be an issue however I know the folks making smartmontools were not sure if they would use name spaces. Right now they use the controller to test with (nvme0) and not the namespace. Very good point should they change! Now I have something I can think about. But first, how can I simulate that. Keep in mind that my script has a built in simulator, greatly helps in testing what works and what doesn't. I'd like to implement before I publish version 3.0.

gcs8 commented 4 months ago

Hmm, Maybe ask smart then use Logical Unit id + Serial number?

root@The-Archive:~ # smartctl -x /dev/da33
smartctl 7.2 2021-09-14 r5236 [FreeBSD 13.1-RELEASE-p9 amd64] (local build)
Copyright (C) 2002-20, Bruce Allen, Christian Franke, www.smartmontools.org

=== START OF INFORMATION SECTION ===
Vendor:               WDC
Product:              WUH721818AL5204
Revision:             C232
Compliance:           SPC-5
User Capacity:        18,000,207,937,536 bytes [18.0 TB]
Logical block size:   512 bytes
Physical block size:  4096 bytes
LU is fully provisioned
Rotation Rate:        7200 rpm
Form Factor:          3.5 inches
Logical Unit id:      0x5000cca2c271be1c
Serial number:        3FJ0K5UT
Device type:          disk
Transport protocol:   SAS (SPL-3)
Local Time is:        Tue Mar 19 08:58:10 2024 EDT
SMART support is:     Available - device has SMART capability.
SMART support is:     Enabled
Temperature Warning:  Enabled
Read Cache is:        Enabled
Writeback Cache is:   Enabled

=== START OF READ SMART DATA SECTION ===
SMART Health Status: OK

Grown defects during certification <not available>
Total blocks reassigned during format <not available>
Total new blocks reassigned <not available>
Power on minutes since format <not available>
Current Drive Temperature:     35 C
Drive Trip Temperature:        85 C

Manufactured in week 34 of year 2021
Specified cycle count over device lifetime:  50000
Accumulated start-stop cycles:  13
Specified load-unload count over device lifetime:  600000
Accumulated load-unload cycles:  635
Elements in grown defect list: 0

Error counter log:
           Errors Corrected by           Total   Correction     Gigabytes    Total
               ECC          rereads/    errors   algorithm      processed    uncorrected
           fast | delayed   rewrites  corrected  invocations   [10^9 bytes]  errors
read:          0        0         0         0    2207922     198688.497           0
write:         0        0         0         0     150427      21604.783           0
verify:        0        0         0         0        122          0.000           0

Non-medium error count:        0

SMART Self-test log
Num  Test              Status                 segment  LifeTime  LBA_first_err [SK ASC ASQ]
     Description                              number   (hours)
# 1  Background short  Completed                   -   14910                 - [-   -    -]
# 2  Background short  Completed                   -   14886                 - [-   -    -]
# 3  Background short  Completed                   -   14862                 - [-   -    -]
# 4  Background short  Completed                   -   14838                 - [-   -    -]
# 5  Background short  Completed                   -   14792                 - [-   -    -]
# 6  Background short  Completed                   -   14768                 - [-   -    -]
# 7  Background short  Completed                   -   14744                 - [-   -    -]
# 8  Background short  Completed                   -   14720                 - [-   -    -]
# 9  Background short  Completed                   -   14697                 - [-   -    -]
#10  Background short  Completed                   -   14673                 - [-   -    -]
#11  Background short  Completed                   -   14649                 - [-   -    -]
#12  Background short  Completed                   -   14625                 - [-   -    -]
#13  Background short  Completed                   -   14601                 - [-   -    -]
#14  Background short  Completed                   -   14577                 - [-   -    -]
#15  Background short  Completed                   -   14553                 - [-   -    -]
#16  Background short  Completed                   -   14529                 - [-   -    -]
#17  Background short  Completed                   -   14505                 - [-   -    -]
#18  Background short  Completed                   -   14481                 - [-   -    -]
#19  Background short  Completed                   -   14457                 - [-   -    -]
#20  Background short  Completed                   -   14433                 - [-   -    -]

Long (extended) Self-test duration: 65535 seconds [1092.2 minutes]

Background scan results log
  Status: waiting until BMS interval timer expires
    Accumulated power on time, hours:minutes 14919:26 [895166 minutes]
    Number of background scans performed: 16,  scan progress: 0.00%
    Number of background medium scans performed: 16

Protocol Specific port log page for SAS SSP
relative target port id = 1
  generation code = 4
  number of phys = 1
  phy identifier = 0
    attached device type: expander device
    attached reason: SMP phy control function
    reason: unknown
    negotiated logical link rate: phy enabled; 12 Gbps
    attached initiator port: ssp=0 stp=0 smp=0
    attached target port: ssp=0 stp=0 smp=1
    SAS address = 0x5000cca2c271be1d
    attached SAS address = 0x500304802126a87f
    attached phy identifier = 9
    Invalid DWORD count = 0
    Running disparity error count = 0
    Loss of DWORD synchronization = 0
    Phy reset problem = 0
    Phy event descriptors:
     Invalid word count: 0
     Running disparity error count: 0
     Loss of dword synchronization count: 0
     Phy reset problem count: 0
relative target port id = 2
  generation code = 4
  number of phys = 1
  phy identifier = 1
    attached device type: expander device
    attached reason: SMP phy control function
    reason: unknown
    negotiated logical link rate: phy enabled; 12 Gbps
    attached initiator port: ssp=0 stp=0 smp=0
    attached target port: ssp=0 stp=0 smp=1
    SAS address = 0x5000cca2c271be1e
    attached SAS address = 0x500304802126a8ff
    attached phy identifier = 9
    Invalid DWORD count = 0
    Running disparity error count = 0
    Loss of DWORD synchronization = 0
    Phy reset problem = 0
    Phy event descriptors:
     Invalid word count: 0
     Running disparity error count: 0
     Loss of dword synchronization count: 0
     Phy reset problem count: 0
Geom name: disk37
Type: AUTOMATIC
Mode: Active/Active
UUID: c8abb7b3-fd5d-11ec-b425-0cc47a8ff400
State: OPTIMAL
Providers:
1. Name: multipath/disk37
   Mediasize: 18000207937024 (16T)
   Sectorsize: 512
   Stripesize: 4096
   Stripeoffset: 0
   Mode: r1w1e3
   State: OPTIMAL
Consumers:
1. Name: da33
   Mediasize: 18000207937536 (16T)
   Sectorsize: 512
   Stripesize: 4096
   Stripeoffset: 0
   Mode: r2w2e4
   State: ACTIVE
2. Name: da76
   Mediasize: 18000207937536 (16T)
   Sectorsize: 512
   Stripesize: 4096
   Stripeoffset: 0
   Mode: r2w2e4
   State: ACTIVE
3. Name: da165
   Mediasize: 18000207937536 (16T)
   Sectorsize: 512
   Stripesize: 4096
   Stripeoffset: 0
   Mode: r2w2e4
   State: ACTIVE
4. Name: da122
   Mediasize: 18000207937536 (16T)
   Sectorsize: 512
   Stripesize: 4096
   Stripeoffset: 0
   Mode: r2w2e4
   State: ACTIVE
root@The-Archive:~ # geom disk list da33
Geom name: da33
Providers:
1. Name: da33
   Mediasize: 18000207937536 (16T)
   Sectorsize: 512
   Stripesize: 4096
   Stripeoffset: 0
   Mode: r2w2e4
   descr: WDC WUH721818AL5204
   lunid: 5000cca2c271be1c
   ident: 3FJ0K5UT
   rotationrate: 7200
   fwsectors: 63
   fwheads: 255

root@The-Archive:~ # geom disk list da76
Geom name: da76
Providers:
1. Name: da76
   Mediasize: 18000207937536 (16T)
   Sectorsize: 512
   Stripesize: 4096
   Stripeoffset: 0
   Mode: r2w2e4
   descr: WDC WUH721818AL5204
   lunid: 5000cca2c271be1c
   ident: 3FJ0K5UT
   rotationrate: 7200
   fwsectors: 63
   fwheads: 255

root@The-Archive:~ # geom disk list da165
Geom name: da165
Providers:
1. Name: da165
   Mediasize: 18000207937536 (16T)
   Sectorsize: 512
   Stripesize: 4096
   Stripeoffset: 0
   Mode: r2w2e4
   descr: WDC WUH721818AL5204
   lunid: 5000cca2c271be1c
   ident: 3FJ0K5UT
   rotationrate: 7200
   fwsectors: 63
   fwheads: 255

root@The-Archive:~ # geom disk list da122
Geom name: da122
Providers:
1. Name: da122
   Mediasize: 18000207937536 (16T)
   Sectorsize: 512
   Stripesize: 4096
   Stripeoffset: 0
   Mode: r2w2e4
   descr: WDC WUH721818AL5204
   lunid: 5000cca2c271be1c
   ident: 3FJ0K5UT
   rotationrate: 7200
   fwsectors: 63
   fwheads: 255
dak180 commented 4 months ago

I need to look into the Exos 2X line as I'm not certain I follow, I guess you are saying that the Exos 2X will display as two drives with different serial numbers.

@JoeSchmuck two drives with the same serial numbers.

Hmm, Maybe ask smart then use Logical Unit id + Serial number?

@gcs8 that seems like the right path; the only thing that continues to worry me is that apparently not all disks have a Logical Unit id and I am not sure what the reasons for that are (see 2 of 6 sata ssds in my system).

gcs8 commented 4 months ago

@gcs8 that seems like the right path; the only thing that continues to worry me is that apparently not all disks have a Logical Unit id and I am not sure what the reasons for that are (see 2 of 6 sata ssds in my system).

@dak180 so, I would say the LUN id is irrelevant for SATA, it may be a thing for nearline SAS and enterprise SATA, but not for consumer SATA. (did you mean to include a screenshot or snippet?) So it should only be in the SAS section.

Exos 2X

Q: How does an Exos® 2X SATA configuration differ from a SAS configuration?
A: For the SAS configuration, each actuator is assigned to a logical unit number (LUN 0
and LUN 1). For example, one 18TB SAS drive will present itself to the operating system
as two 9TB devices that the operating system can address independently, as it would
with any other HDD.
The Exos® 2X SATA configuration will present itself to the operating system as one logical
device since SATA does not support the concept of LUNs. The user must be aware that
the first 50% of the logical block addresses (LBAs) on the device correspond to one
actuator and the second 50% of the LBAs correspond to the other actuator. With both
configurations, the user must send commands to both actuators concurrently to see the
expected performance benefits.
Q: How do you identify which LBAs correspond to each actuator on an Exos® 2X
SATA device?
A: Seagate® has worked with the T13 ATA committee to propose and implement a new
log page for SATA—the Concurrent Positioning Ranges log page 47h identifies the number
of LBA ranges (in this case, actuators) within a device. For each LBA range the log page
specifies the lowest LBA and the number of LBAs. As a reminder, since LBA numbering
starts at zero, the last LBA of either range will be the lowest LBA + the number of LBAs – 1. 

https://www.seagate.com/content/dam/seagate/migrated-assets/www-content/solutions/mach-2-multi-actuator-hard-drive/files/sc702.2-2101us-mach-2-faq.pdf

dak180 commented 4 months ago

I would say the LUN id is irrelevant for SATA, it may be a thing for nearline SAS and enterprise SATA, but not for consumer SATA.

@gcs8 given that could you post the output of smartctl -jx /dev/da33 so I can see where it is in the json output?

gcs8 commented 4 months ago

root@The-Archive:~ # smartctl -jx /dev/da33

{
  "json_format_version": [
    1,
    0
  ],
  "smartctl": {
    "version": [
      7,
      2
    ],
    "svn_revision": "5236",
    "platform_info": "FreeBSD 13.1-RELEASE-p9 amd64",
    "build_info": "(local build)",
    "argv": [
      "smartctl",
      "-jx",
      "/dev/da33"
    ],
    "exit_status": 0
  },
  "device": {
    "name": "/dev/da33",
    "info_name": "/dev/da33",
    "type": "scsi",
    "protocol": "SCSI"
  },
  "vendor": "WDC",
  "product": "WUH721818AL5204",
  "model_name": "WDC WUH721818AL5204",
  "revision": "C232",
  "scsi_version": "SPC-5",
  "user_capacity": {
    "blocks": 35156656128,
    "bytes": 18000207937536
  },
  "logical_block_size": 512,
  "physical_block_size": 4096,
  "rotation_rate": 7200,
  "form_factor": {
    "scsi_value": 2,
    "name": "3.5 inches"
  },
  "serial_number": "3FJ0K5UT",
  "device_type": {
    "scsi_value": 0,
    "name": "disk"
  },
  "local_time": {
    "time_t": 1710866268,
    "asctime": "Tue Mar 19 12:37:48 2024 EDT"
  },
  "smart_status": {
    "passed": true
  },
  "temperature": {
    "current": 36,
    "drive_trip": 85
  },
  "scsi_grown_defect_list": 0,
  "scsi_error_counter_log": {
    "read": {
      "errors_corrected_by_eccfast": 0,
      "errors_corrected_by_eccdelayed": 0,
      "errors_corrected_by_rereads_rewrites": 0,
      "total_errors_corrected": 0,
      "correction_algorithm_invocations": 2213030,
      "gigabytes_processed": "198710.469",
      "total_uncorrected_errors": 0
    },
    "write": {
      "errors_corrected_by_eccfast": 0,
      "errors_corrected_by_eccdelayed": 0,
      "errors_corrected_by_rereads_rewrites": 0,
      "total_errors_corrected": 0,
      "correction_algorithm_invocations": 150431,
      "gigabytes_processed": "21605.409",
      "total_uncorrected_errors": 0
    },
    "verify": {
      "errors_corrected_by_eccfast": 0,
      "errors_corrected_by_eccdelayed": 0,
      "errors_corrected_by_rereads_rewrites": 0,
      "total_errors_corrected": 0,
      "correction_algorithm_invocations": 122,
      "gigabytes_processed": "0.000",
      "total_uncorrected_errors": 0
    }
  },
  "power_on_time": {
    "hours": 14923,
    "minutes": 6
  }
}
gcs8 commented 4 months ago

Here is this also

root@The-Archive:~ # smartctl --json=ov -x /dev/da33
{
  "json_format_version": [
    1,
    0
  ],
  "smartctl": {
    "version": [
      7,
      2
    ],
    "svn_revision": "5236",
    "platform_info": "FreeBSD 13.1-RELEASE-p9 amd64",
    "build_info": "(local build)",
    "argv": [
      "smartctl",
      "--json=ov",
      "-x",
      "/dev/da33"
    ],
    "output": [
      "smartctl 7.2 2021-09-14 r5236 [FreeBSD 13.1-RELEASE-p9 amd64] (local build)",
      "Copyright (C) 2002-20, Bruce Allen, Christian Franke, www.smartmontools.org",
      "",
      "=== START OF INFORMATION SECTION ===",
      "Vendor:               WDC",
      "Product:              WUH721818AL5204",
      "Revision:             C232",
      "Compliance:           SPC-5",
      "User Capacity:        18,000,207,937,536 bytes [18.0 TB]",
      "Logical block size:   512 bytes",
      "Physical block size:  4096 bytes",
      "LU is fully provisioned",
      "Rotation Rate:        7200 rpm",
      "Form Factor:          3.5 inches",
      "Logical Unit id:      0x5000cca2c271be1c",
      "Serial number:        3FJ0K5UT",
      "Device type:          disk",
      "Transport protocol:   SAS (SPL-3)",
      "Local Time is:        Tue Mar 19 12:43:04 2024 EDT",
      "SMART support is:     Available - device has SMART capability.",
      "SMART support is:     Enabled",
      "Temperature Warning:  Enabled",
      "Read Cache is:        Enabled",
      "Writeback Cache is:   Enabled",
      "",
      "=== START OF READ SMART DATA SECTION ===",
      "SMART Health Status: OK",
      "",
      "Grown defects during certification <not available>",
      "Total blocks reassigned during format <not available>",
      "Total new blocks reassigned <not available>",
      "Power on minutes since format <not available>",
      "Current Drive Temperature:     36 C",
      "Drive Trip Temperature:        85 C",
      "",
      "Manufactured in week 34 of year 2021",
      "Specified cycle count over device lifetime:  50000",
      "Accumulated start-stop cycles:  13",
      "Specified load-unload count over device lifetime:  600000",
      "Accumulated load-unload cycles:  635",
      "Elements in grown defect list: 0",
      "",
      "Error counter log:",
      "           Errors Corrected by           Total   Correction     Gigabytes    Total",
      "               ECC          rereads/    errors   algorithm      processed    uncorrected",
      "           fast | delayed   rewrites  corrected  invocations   [10^9 bytes]  errors",
      "read:          0        0         0         0    2213030     198710.505           0",
      "write:         0        0         0         0     150431      21605.412           0",
      "verify:        0        0         0         0        122          0.000           0",
      "",
      "Non-medium error count:        0",
      "",
      "SMART Self-test log",
      "Num  Test              Status                 segment  LifeTime  LBA_first_err [SK ASC ASQ]",
      "     Description                              number   (hours)",
      "# 1  Background short  Completed                   -   14910                 - [-   -    -]",
      "# 2  Background short  Completed                   -   14886                 - [-   -    -]",
      "# 3  Background short  Completed                   -   14862                 - [-   -    -]",
      "# 4  Background short  Completed                   -   14838                 - [-   -    -]",
      "# 5  Background short  Completed                   -   14792                 - [-   -    -]",
      "# 6  Background short  Completed                   -   14768                 - [-   -    -]",
      "# 7  Background short  Completed                   -   14744                 - [-   -    -]",
      "# 8  Background short  Completed                   -   14720                 - [-   -    -]",
      "# 9  Background short  Completed                   -   14697                 - [-   -    -]",
      "#10  Background short  Completed                   -   14673                 - [-   -    -]",
      "#11  Background short  Completed                   -   14649                 - [-   -    -]",
      "#12  Background short  Completed                   -   14625                 - [-   -    -]",
      "#13  Background short  Completed                   -   14601                 - [-   -    -]",
      "#14  Background short  Completed                   -   14577                 - [-   -    -]",
      "#15  Background short  Completed                   -   14553                 - [-   -    -]",
      "#16  Background short  Completed                   -   14529                 - [-   -    -]",
      "#17  Background short  Completed                   -   14505                 - [-   -    -]",
      "#18  Background short  Completed                   -   14481                 - [-   -    -]",
      "#19  Background short  Completed                   -   14457                 - [-   -    -]",
      "#20  Background short  Completed                   -   14433                 - [-   -    -]",
      "",
      "Long (extended) Self-test duration: 65535 seconds [1092.2 minutes]",
      "",
      "Background scan results log",
      "  Status: waiting until BMS interval timer expires",
      "    Accumulated power on time, hours:minutes 14923:11 [895391 minutes]",
      "    Number of background scans performed: 16,  scan progress: 0.00%",
      "    Number of background medium scans performed: 16",
      "",
      "Protocol Specific port log page for SAS SSP",
      "relative target port id = 1",
      "  generation code = 4",
      "  number of phys = 1",
      "  phy identifier = 0",
      "    attached device type: expander device",
      "    attached reason: SMP phy control function",
      "    reason: unknown",
      "    negotiated logical link rate: phy enabled; 12 Gbps",
      "    attached initiator port: ssp=0 stp=0 smp=0",
      "    attached target port: ssp=0 stp=0 smp=1",
      "    SAS address = 0x5000cca2c271be1d",
      "    attached SAS address = 0x500304802126a87f",
      "    attached phy identifier = 9",
      "    Invalid DWORD count = 0",
      "    Running disparity error count = 0",
      "    Loss of DWORD synchronization = 0",
      "    Phy reset problem = 0",
      "    Phy event descriptors:",
      "     Invalid word count: 0",
      "     Running disparity error count: 0",
      "     Loss of dword synchronization count: 0",
      "     Phy reset problem count: 0",
      "relative target port id = 2",
      "  generation code = 4",
      "  number of phys = 1",
      "  phy identifier = 1",
      "    attached device type: expander device",
      "    attached reason: SMP phy control function",
      "    reason: unknown",
      "    negotiated logical link rate: phy enabled; 12 Gbps",
      "    attached initiator port: ssp=0 stp=0 smp=0",
      "    attached target port: ssp=0 stp=0 smp=1",
      "    SAS address = 0x5000cca2c271be1e",
      "    attached SAS address = 0x500304802126a8ff",
      "    attached phy identifier = 9",
      "    Invalid DWORD count = 0",
      "    Running disparity error count = 0",
      "    Loss of DWORD synchronization = 0",
      "    Phy reset problem = 0",
      "    Phy event descriptors:",
      "     Invalid word count: 0",
      "     Running disparity error count: 0",
      "     Loss of dword synchronization count: 0",
      "     Phy reset problem count: 0",
      ""
    ],
    "exit_status": 0
  },
  "device": {
    "name": "/dev/da33",
    "info_name": "/dev/da33",
    "type": "scsi",
    "protocol": "SCSI"
  },
  "vendor": "WDC",
  "product": "WUH721818AL5204",
  "model_name": "WDC WUH721818AL5204",
  "revision": "C232",
  "scsi_version": "SPC-5",
  "user_capacity": {
    "blocks": 35156656128,
    "blocks_s": "35156656128",
    "bytes": 18000207937536,
    "bytes_s": "18000207937536"
  },
  "logical_block_size": 512,
  "physical_block_size": 4096,
  "rotation_rate": 7200,
  "form_factor": {
    "scsi_value": 2,
    "name": "3.5 inches"
  },
  "serial_number": "3FJ0K5UT",
  "device_type": {
    "scsi_value": 0,
    "name": "disk"
  },
  "local_time": {
    "time_t": 1710866584,
    "asctime": "Tue Mar 19 12:43:04 2024 EDT"
  },
  "smart_status": {
    "passed": true
  },
  "temperature": {
    "current": 36,
    "drive_trip": 85
  },
  "scsi_grown_defect_list": 0,
  "scsi_error_counter_log": {
    "read": {
      "errors_corrected_by_eccfast": 0,
      "errors_corrected_by_eccdelayed": 0,
      "errors_corrected_by_rereads_rewrites": 0,
      "total_errors_corrected": 0,
      "correction_algorithm_invocations": 2213030,
      "gigabytes_processed": "198710.505",
      "total_uncorrected_errors": 0
    },
    "write": {
      "errors_corrected_by_eccfast": 0,
      "errors_corrected_by_eccdelayed": 0,
      "errors_corrected_by_rereads_rewrites": 0,
      "total_errors_corrected": 0,
      "correction_algorithm_invocations": 150431,
      "gigabytes_processed": "21605.412",
      "total_uncorrected_errors": 0
    },
    "verify": {
      "errors_corrected_by_eccfast": 0,
      "errors_corrected_by_eccdelayed": 0,
      "errors_corrected_by_rereads_rewrites": 0,
      "total_errors_corrected": 0,
      "correction_algorithm_invocations": 122,
      "gigabytes_processed": "0.000",
      "total_uncorrected_errors": 0
    }
  },
  "power_on_time": {
    "hours": 14923,
    "minutes": 11
  }
}
root@The-Archive:~ # smartctl --json=ovg -x /dev/da33
json = {};
json.json_format_version = [];
json.json_format_version[0] = 1;
json.json_format_version[1] = 0;
json.smartctl = {};
json.smartctl.version = [];
json.smartctl.version[0] = 7;
json.smartctl.version[1] = 2;
json.smartctl.svn_revision = "5236";
json.smartctl.platform_info = "FreeBSD 13.1-RELEASE-p9 amd64";
json.smartctl.build_info = "(local build)";
json.smartctl.argv = [];
json.smartctl.argv[0] = "smartctl";
json.smartctl.argv[1] = "--json=ovg";
json.smartctl.argv[2] = "-x";
json.smartctl.argv[3] = "/dev/da33";
json.smartctl.output = [];
json.smartctl.output[0] = "smartctl 7.2 2021-09-14 r5236 [FreeBSD 13.1-RELEASE-p9 amd64] (local build)";
json.smartctl.output[1] = "Copyright (C) 2002-20, Bruce Allen, Christian Franke, www.smartmontools.org";
json.smartctl.output[2] = "";
json.smartctl.output[3] = "=== START OF INFORMATION SECTION ===";
json.smartctl.output[4] = "Vendor:               WDC";
json.smartctl.output[5] = "Product:              WUH721818AL5204";
json.smartctl.output[6] = "Revision:             C232";
json.smartctl.output[7] = "Compliance:           SPC-5";
json.smartctl.output[8] = "User Capacity:        18,000,207,937,536 bytes [18.0 TB]";
json.smartctl.output[9] = "Logical block size:   512 bytes";
json.smartctl.output[10] = "Physical block size:  4096 bytes";
json.smartctl.output[11] = "LU is fully provisioned";
json.smartctl.output[12] = "Rotation Rate:        7200 rpm";
json.smartctl.output[13] = "Form Factor:          3.5 inches";
json.smartctl.output[14] = "Logical Unit id:      0x5000cca2c271be1c";
json.smartctl.output[15] = "Serial number:        3FJ0K5UT";
json.smartctl.output[16] = "Device type:          disk";
json.smartctl.output[17] = "Transport protocol:   SAS (SPL-3)";
json.smartctl.output[18] = "Local Time is:        Tue Mar 19 12:43:46 2024 EDT";
json.smartctl.output[19] = "SMART support is:     Available - device has SMART capability.";
json.smartctl.output[20] = "SMART support is:     Enabled";
json.smartctl.output[21] = "Temperature Warning:  Enabled";
json.smartctl.output[22] = "Read Cache is:        Enabled";
json.smartctl.output[23] = "Writeback Cache is:   Enabled";
json.smartctl.output[24] = "";
json.smartctl.output[25] = "=== START OF READ SMART DATA SECTION ===";
json.smartctl.output[26] = "SMART Health Status: OK";
json.smartctl.output[27] = "";
json.smartctl.output[28] = "Grown defects during certification <not available>";
json.smartctl.output[29] = "Total blocks reassigned during format <not available>";
json.smartctl.output[30] = "Total new blocks reassigned <not available>";
json.smartctl.output[31] = "Power on minutes since format <not available>";
json.smartctl.output[32] = "Current Drive Temperature:     36 C";
json.smartctl.output[33] = "Drive Trip Temperature:        85 C";
json.smartctl.output[34] = "";
json.smartctl.output[35] = "Manufactured in week 34 of year 2021";
json.smartctl.output[36] = "Specified cycle count over device lifetime:  50000";
json.smartctl.output[37] = "Accumulated start-stop cycles:  13";
json.smartctl.output[38] = "Specified load-unload count over device lifetime:  600000";
json.smartctl.output[39] = "Accumulated load-unload cycles:  635";
json.smartctl.output[40] = "Elements in grown defect list: 0";
json.smartctl.output[41] = "";
json.smartctl.output[42] = "Error counter log:";
json.smartctl.output[43] = "           Errors Corrected by           Total   Correction     Gigabytes    Total";
json.smartctl.output[44] = "               ECC          rereads/    errors   algorithm      processed    uncorrected";
json.smartctl.output[45] = "           fast | delayed   rewrites  corrected  invocations   [10^9 bytes]  errors";
json.smartctl.output[46] = "read:          0        0         0         0    2213030     198710.509           0";
json.smartctl.output[47] = "write:         0        0         0         0     150431      21605.412           0";
json.smartctl.output[48] = "verify:        0        0         0         0        122          0.000           0";
json.smartctl.output[49] = "";
json.smartctl.output[50] = "Non-medium error count:        0";
json.smartctl.output[51] = "";
json.smartctl.output[52] = "SMART Self-test log";
json.smartctl.output[53] = "Num  Test              Status                 segment  LifeTime  LBA_first_err [SK ASC ASQ]";
json.smartctl.output[54] = "     Description                              number   (hours)";
json.smartctl.output[55] = "# 1  Background short  Completed                   -   14910                 - [-   -    -]";
json.smartctl.output[56] = "# 2  Background short  Completed                   -   14886                 - [-   -    -]";
json.smartctl.output[57] = "# 3  Background short  Completed                   -   14862                 - [-   -    -]";
json.smartctl.output[58] = "# 4  Background short  Completed                   -   14838                 - [-   -    -]";
json.smartctl.output[59] = "# 5  Background short  Completed                   -   14792                 - [-   -    -]";
json.smartctl.output[60] = "# 6  Background short  Completed                   -   14768                 - [-   -    -]";
json.smartctl.output[61] = "# 7  Background short  Completed                   -   14744                 - [-   -    -]";
json.smartctl.output[62] = "# 8  Background short  Completed                   -   14720                 - [-   -    -]";
json.smartctl.output[63] = "# 9  Background short  Completed                   -   14697                 - [-   -    -]";
json.smartctl.output[64] = "#10  Background short  Completed                   -   14673                 - [-   -    -]";
json.smartctl.output[65] = "#11  Background short  Completed                   -   14649                 - [-   -    -]";
json.smartctl.output[66] = "#12  Background short  Completed                   -   14625                 - [-   -    -]";
json.smartctl.output[67] = "#13  Background short  Completed                   -   14601                 - [-   -    -]";
json.smartctl.output[68] = "#14  Background short  Completed                   -   14577                 - [-   -    -]";
json.smartctl.output[69] = "#15  Background short  Completed                   -   14553                 - [-   -    -]";
json.smartctl.output[70] = "#16  Background short  Completed                   -   14529                 - [-   -    -]";
json.smartctl.output[71] = "#17  Background short  Completed                   -   14505                 - [-   -    -]";
json.smartctl.output[72] = "#18  Background short  Completed                   -   14481                 - [-   -    -]";
json.smartctl.output[73] = "#19  Background short  Completed                   -   14457                 - [-   -    -]";
json.smartctl.output[74] = "#20  Background short  Completed                   -   14433                 - [-   -    -]";
json.smartctl.output[75] = "";
json.smartctl.output[76] = "Long (extended) Self-test duration: 65535 seconds [1092.2 minutes]";
json.smartctl.output[77] = "";
json.smartctl.output[78] = "Background scan results log";
json.smartctl.output[79] = "  Status: waiting until BMS interval timer expires";
json.smartctl.output[80] = "    Accumulated power on time, hours:minutes 14923:12 [895392 minutes]";
json.smartctl.output[81] = "    Number of background scans performed: 16,  scan progress: 0.00%";
json.smartctl.output[82] = "    Number of background medium scans performed: 16";
json.smartctl.output[83] = "";
json.smartctl.output[84] = "Protocol Specific port log page for SAS SSP";
json.smartctl.output[85] = "relative target port id = 1";
json.smartctl.output[86] = "  generation code = 4";
json.smartctl.output[87] = "  number of phys = 1";
json.smartctl.output[88] = "  phy identifier = 0";
json.smartctl.output[89] = "    attached device type: expander device";
json.smartctl.output[90] = "    attached reason: SMP phy control function";
json.smartctl.output[91] = "    reason: unknown";
json.smartctl.output[92] = "    negotiated logical link rate: phy enabled; 12 Gbps";
json.smartctl.output[93] = "    attached initiator port: ssp=0 stp=0 smp=0";
json.smartctl.output[94] = "    attached target port: ssp=0 stp=0 smp=1";
json.smartctl.output[95] = "    SAS address = 0x5000cca2c271be1d";
json.smartctl.output[96] = "    attached SAS address = 0x500304802126a87f";
json.smartctl.output[97] = "    attached phy identifier = 9";
json.smartctl.output[98] = "    Invalid DWORD count = 0";
json.smartctl.output[99] = "    Running disparity error count = 0";
json.smartctl.output[100] = "    Loss of DWORD synchronization = 0";
json.smartctl.output[101] = "    Phy reset problem = 0";
json.smartctl.output[102] = "    Phy event descriptors:";
json.smartctl.output[103] = "     Invalid word count: 0";
json.smartctl.output[104] = "     Running disparity error count: 0";
json.smartctl.output[105] = "     Loss of dword synchronization count: 0";
json.smartctl.output[106] = "     Phy reset problem count: 0";
json.smartctl.output[107] = "relative target port id = 2";
json.smartctl.output[108] = "  generation code = 4";
json.smartctl.output[109] = "  number of phys = 1";
json.smartctl.output[110] = "  phy identifier = 1";
json.smartctl.output[111] = "    attached device type: expander device";
json.smartctl.output[112] = "    attached reason: SMP phy control function";
json.smartctl.output[113] = "    reason: unknown";
json.smartctl.output[114] = "    negotiated logical link rate: phy enabled; 12 Gbps";
json.smartctl.output[115] = "    attached initiator port: ssp=0 stp=0 smp=0";
json.smartctl.output[116] = "    attached target port: ssp=0 stp=0 smp=1";
json.smartctl.output[117] = "    SAS address = 0x5000cca2c271be1e";
json.smartctl.output[118] = "    attached SAS address = 0x500304802126a8ff";
json.smartctl.output[119] = "    attached phy identifier = 9";
json.smartctl.output[120] = "    Invalid DWORD count = 0";
json.smartctl.output[121] = "    Running disparity error count = 0";
json.smartctl.output[122] = "    Loss of DWORD synchronization = 0";
json.smartctl.output[123] = "    Phy reset problem = 0";
json.smartctl.output[124] = "    Phy event descriptors:";
json.smartctl.output[125] = "     Invalid word count: 0";
json.smartctl.output[126] = "     Running disparity error count: 0";
json.smartctl.output[127] = "     Loss of dword synchronization count: 0";
json.smartctl.output[128] = "     Phy reset problem count: 0";
json.smartctl.output[129] = "";
json.smartctl.exit_status = 0;
json.device = {};
json.device.name = "/dev/da33";
json.device.info_name = "/dev/da33";
json.device.type = "scsi";
json.device.protocol = "SCSI";
json.vendor = "WDC";
json.product = "WUH721818AL5204";
json.model_name = "WDC WUH721818AL5204";
json.revision = "C232";
json.scsi_version = "SPC-5";
json.user_capacity = {};
json.user_capacity.blocks = 35156656128;
json.user_capacity.blocks_s = "35156656128";
json.user_capacity.bytes = 18000207937536;
json.user_capacity.bytes_s = "18000207937536";
json.logical_block_size = 512;
json.physical_block_size = 4096;
json.rotation_rate = 7200;
json.form_factor = {};
json.form_factor.scsi_value = 2;
json.form_factor.name = "3.5 inches";
json.serial_number = "3FJ0K5UT";
json.device_type = {};
json.device_type.scsi_value = 0;
json.device_type.name = "disk";
json.local_time = {};
json.local_time.time_t = 1710866626;
json.local_time.asctime = "Tue Mar 19 12:43:46 2024 EDT";
json.smart_status = {};
json.smart_status.passed = true;
json.temperature = {};
json.temperature.current = 36;
json.temperature.drive_trip = 85;
json.scsi_grown_defect_list = 0;
json.scsi_error_counter_log = {};
json.scsi_error_counter_log.read = {};
json.scsi_error_counter_log.read.errors_corrected_by_eccfast = 0;
json.scsi_error_counter_log.read.errors_corrected_by_eccdelayed = 0;
json.scsi_error_counter_log.read.errors_corrected_by_rereads_rewrites = 0;
json.scsi_error_counter_log.read.total_errors_corrected = 0;
json.scsi_error_counter_log.read.correction_algorithm_invocations = 2213030;
json.scsi_error_counter_log.read.gigabytes_processed = "198710.509";
json.scsi_error_counter_log.read.total_uncorrected_errors = 0;
json.scsi_error_counter_log.write = {};
json.scsi_error_counter_log.write.errors_corrected_by_eccfast = 0;
json.scsi_error_counter_log.write.errors_corrected_by_eccdelayed = 0;
json.scsi_error_counter_log.write.errors_corrected_by_rereads_rewrites = 0;
json.scsi_error_counter_log.write.total_errors_corrected = 0;
json.scsi_error_counter_log.write.correction_algorithm_invocations = 150431;
json.scsi_error_counter_log.write.gigabytes_processed = "21605.412";
json.scsi_error_counter_log.write.total_uncorrected_errors = 0;
json.scsi_error_counter_log.verify = {};
json.scsi_error_counter_log.verify.errors_corrected_by_eccfast = 0;
json.scsi_error_counter_log.verify.errors_corrected_by_eccdelayed = 0;
json.scsi_error_counter_log.verify.errors_corrected_by_rereads_rewrites = 0;
json.scsi_error_counter_log.verify.total_errors_corrected = 0;
json.scsi_error_counter_log.verify.correction_algorithm_invocations = 122;
json.scsi_error_counter_log.verify.gigabytes_processed = "0.000";
json.scsi_error_counter_log.verify.total_uncorrected_errors = 0;
json.power_on_time = {};
json.power_on_time.hours = 14923;
json.power_on_time.minutes = 12;
root@The-Archive:~ #
dak180 commented 4 months ago

root@The-Archive:~ # smartctl -jx /dev/da33

@gcs8 since that did not include the info (in 7.2 anyway) lets try: smartctl -x --json=u /dev/da33

gcs8 commented 4 months ago
root@The-Archive:~ # smartctl -x --json=u /dev/da33
{
  "json_format_version": [
    1,
    0
  ],
  "smartctl": {
    "version": [
      7,
      2
    ],
    "svn_revision": "5236",
    "platform_info": "FreeBSD 13.1-RELEASE-p9 amd64",
    "build_info": "(local build)",
    "argv": [
      "smartctl",
      "-x",
      "--json=u",
      "/dev/da33"
    ],
    "exit_status": 0
  },
  "device": {
    "name": "/dev/da33",
    "info_name": "/dev/da33",
    "type": "scsi",
    "protocol": "SCSI"
  },
  "smartctl_0004_u": "=== START OF INFORMATION SECTION ===",
  "vendor": "WDC",
  "product": "WUH721818AL5204",
  "model_name": "WDC WUH721818AL5204",
  "revision": "C232",
  "scsi_version": "SPC-5",
  "user_capacity": {
    "blocks": 35156656128,
    "bytes": 18000207937536
  },
  "logical_block_size": 512,
  "physical_block_size": 4096,
  "smartctl_0012_u": "LU is fully provisioned",
  "rotation_rate": 7200,
  "form_factor": {
    "scsi_value": 2,
    "name": "3.5 inches"
  },
  "smartctl_0015_u": "Logical Unit id:      0x5000cca2c271be1c",
  "serial_number": "3FJ0K5UT",
  "device_type": {
    "scsi_value": 0,
    "name": "disk"
  },
  "smartctl_0018_u": "Transport protocol:   SAS (SPL-3)",
  "local_time": {
    "time_t": 1710867188,
    "asctime": "Tue Mar 19 12:53:08 2024 EDT"
  },
  "smartctl_0020_u": "SMART support is:     Available - device has SMART capability.",
  "smartctl_0021_u": "SMART support is:     Enabled",
  "smartctl_0022_u": "Temperature Warning:  Enabled",
  "smartctl_0023_u": "Read Cache is:        Enabled",
  "smartctl_0024_u": "Writeback Cache is:   Enabled",
  "smartctl_0026_u": "=== START OF READ SMART DATA SECTION ===",
  "smart_status": {
    "passed": true
  },
  "smartctl_0029_u": "Grown defects during certification <not available>",
  "smartctl_0030_u": "Total blocks reassigned during format <not available>",
  "smartctl_0031_u": "Total new blocks reassigned <not available>",
  "smartctl_0032_u": "Power on minutes since format <not available>",
  "temperature": {
    "current": 35,
    "drive_trip": 85
  },
  "smartctl_0036_u": "Manufactured in week 34 of year 2021",
  "smartctl_0037_u": "Specified cycle count over device lifetime:  50000",
  "smartctl_0038_u": "Accumulated start-stop cycles:  13",
  "smartctl_0039_u": "Specified load-unload count over device lifetime:  600000",
  "smartctl_0040_u": "Accumulated load-unload cycles:  635",
  "scsi_grown_defect_list": 0,
  "smartctl_0043_u": "Error counter log:",
  "smartctl_0044_u": "           Errors Corrected by           Total   Correction     Gigabytes    Total",
  "smartctl_0045_u": "               ECC          rereads/    errors   algorithm      processed    uncorrected",
  "smartctl_0046_u": "           fast | delayed   rewrites  corrected  invocations   [10^9 bytes]  errors",
  "scsi_error_counter_log": {
    "read": {
      "errors_corrected_by_eccfast": 0,
      "errors_corrected_by_eccdelayed": 0,
      "errors_corrected_by_rereads_rewrites": 0,
      "total_errors_corrected": 0,
      "correction_algorithm_invocations": 2213030,
      "gigabytes_processed": "198710.581",
      "total_uncorrected_errors": 0
    },
    "write": {
      "errors_corrected_by_eccfast": 0,
      "errors_corrected_by_eccdelayed": 0,
      "errors_corrected_by_rereads_rewrites": 0,
      "total_errors_corrected": 0,
      "correction_algorithm_invocations": 150432,
      "gigabytes_processed": "21605.677",
      "total_uncorrected_errors": 0
    },
    "verify": {
      "errors_corrected_by_eccfast": 0,
      "errors_corrected_by_eccdelayed": 0,
      "errors_corrected_by_rereads_rewrites": 0,
      "total_errors_corrected": 0,
      "correction_algorithm_invocations": 122,
      "gigabytes_processed": "0.000",
      "total_uncorrected_errors": 0
    }
  },
  "smartctl_0051_u": "Non-medium error count:        0",
  "smartctl_0053_u": "SMART Self-test log",
  "smartctl_0054_u": "Num  Test              Status                 segment  LifeTime  LBA_first_err [SK ASC ASQ]",
  "smartctl_0055_u": "     Description                              number   (hours)",
  "smartctl_0056_u": "# 1  Background short  Completed                   -   14910                 - [-   -    -]",
  "smartctl_0057_u": "# 2  Background short  Completed                   -   14886                 - [-   -    -]",
  "smartctl_0058_u": "# 3  Background short  Completed                   -   14862                 - [-   -    -]",
  "smartctl_0059_u": "# 4  Background short  Completed                   -   14838                 - [-   -    -]",
  "smartctl_0060_u": "# 5  Background short  Completed                   -   14792                 - [-   -    -]",
  "smartctl_0061_u": "# 6  Background short  Completed                   -   14768                 - [-   -    -]",
  "smartctl_0062_u": "# 7  Background short  Completed                   -   14744                 - [-   -    -]",
  "smartctl_0063_u": "# 8  Background short  Completed                   -   14720                 - [-   -    -]",
  "smartctl_0064_u": "# 9  Background short  Completed                   -   14697                 - [-   -    -]",
  "smartctl_0065_u": "#10  Background short  Completed                   -   14673                 - [-   -    -]",
  "smartctl_0066_u": "#11  Background short  Completed                   -   14649                 - [-   -    -]",
  "smartctl_0067_u": "#12  Background short  Completed                   -   14625                 - [-   -    -]",
  "smartctl_0068_u": "#13  Background short  Completed                   -   14601                 - [-   -    -]",
  "smartctl_0069_u": "#14  Background short  Completed                   -   14577                 - [-   -    -]",
  "smartctl_0070_u": "#15  Background short  Completed                   -   14553                 - [-   -    -]",
  "smartctl_0071_u": "#16  Background short  Completed                   -   14529                 - [-   -    -]",
  "smartctl_0072_u": "#17  Background short  Completed                   -   14505                 - [-   -    -]",
  "smartctl_0073_u": "#18  Background short  Completed                   -   14481                 - [-   -    -]",
  "smartctl_0074_u": "#19  Background short  Completed                   -   14457                 - [-   -    -]",
  "smartctl_0075_u": "#20  Background short  Completed                   -   14433                 - [-   -    -]",
  "smartctl_0077_u": "Long (extended) Self-test duration: 65535 seconds [1092.2 minutes]",
  "smartctl_0079_u": "Background scan results log",
  "smartctl_0080_u": "  Status: waiting until BMS interval timer expires",
  "power_on_time": {
    "hours": 14923,
    "minutes": 21
  },
  "smartctl_0082_u": "    Number of background scans performed: 16,  scan progress: 0.00%",
  "smartctl_0083_u": "    Number of background medium scans performed: 16",
  "smartctl_0085_u": "Protocol Specific port log page for SAS SSP",
  "smartctl_0086_u": "relative target port id = 1",
  "smartctl_0087_u": "  generation code = 4",
  "smartctl_0088_u": "  number of phys = 1",
  "smartctl_0089_u": "  phy identifier = 0",
  "smartctl_0090_u": "    attached device type: expander device",
  "smartctl_0091_u": "    attached reason: SMP phy control function",
  "smartctl_0092_u": "    reason: unknown",
  "smartctl_0093_u": "    negotiated logical link rate: phy enabled; 12 Gbps",
  "smartctl_0094_u": "    attached initiator port: ssp=0 stp=0 smp=0",
  "smartctl_0095_u": "    attached target port: ssp=0 stp=0 smp=1",
  "smartctl_0096_u": "    SAS address = 0x5000cca2c271be1d",
  "smartctl_0097_u": "    attached SAS address = 0x500304802126a87f",
  "smartctl_0098_u": "    attached phy identifier = 9",
  "smartctl_0099_u": "    Invalid DWORD count = 0",
  "smartctl_0100_u": "    Running disparity error count = 0",
  "smartctl_0101_u": "    Loss of DWORD synchronization = 0",
  "smartctl_0102_u": "    Phy reset problem = 0",
  "smartctl_0103_u": "    Phy event descriptors:",
  "smartctl_0104_u": "     Invalid word count: 0",
  "smartctl_0105_u": "     Running disparity error count: 0",
  "smartctl_0106_u": "     Loss of dword synchronization count: 0",
  "smartctl_0107_u": "     Phy reset problem count: 0",
  "smartctl_0108_u": "relative target port id = 2",
  "smartctl_0109_u": "  generation code = 4",
  "smartctl_0110_u": "  number of phys = 1",
  "smartctl_0111_u": "  phy identifier = 1",
  "smartctl_0112_u": "    attached device type: expander device",
  "smartctl_0113_u": "    attached reason: SMP phy control function",
  "smartctl_0114_u": "    reason: unknown",
  "smartctl_0115_u": "    negotiated logical link rate: phy enabled; 12 Gbps",
  "smartctl_0116_u": "    attached initiator port: ssp=0 stp=0 smp=0",
  "smartctl_0117_u": "    attached target port: ssp=0 stp=0 smp=1",
  "smartctl_0118_u": "    SAS address = 0x5000cca2c271be1e",
  "smartctl_0119_u": "    attached SAS address = 0x500304802126a8ff",
  "smartctl_0120_u": "    attached phy identifier = 9",
  "smartctl_0121_u": "    Invalid DWORD count = 0",
  "smartctl_0122_u": "    Running disparity error count = 0",
  "smartctl_0123_u": "    Loss of DWORD synchronization = 0",
  "smartctl_0124_u": "    Phy reset problem = 0",
  "smartctl_0125_u": "    Phy event descriptors:",
  "smartctl_0126_u": "     Invalid word count: 0",
  "smartctl_0127_u": "     Running disparity error count: 0",
  "smartctl_0128_u": "     Loss of dword synchronization count: 0",
  "smartctl_0129_u": "     Phy reset problem count: 0"
}
root@The-Archive:~ #
dak180 commented 4 months ago

@gcs8 let me know how b56359c works for you.

gcs8 commented 4 months ago
Parse error: bad token
<stdin>:1

Parse error: bad expression
<stdin>:1

Parse error: bad expression
<stdin>:1

Parse error: bad expression
<stdin>:1

Parse error: bad expression
<stdin>:1

Parse error: bad token
<stdin>:1

Parse error: bad token
<stdin>:1

Parse error: bad token
<stdin>:1

Parse error: bad expression
<stdin>:1
gcs8 commented 4 months ago

Well, it did send me something.

Gmail - Status Report and Configuration Backup for The-Archive - 2024-03-19 16_43.pdf

JoeSchmuck commented 4 months ago

I have a solution, I just need to test it out.

I also see an improvement for my script. I will post once I have verified it works.

dak180 commented 4 months ago

@gcs8 try the latest deduplicate and let me know how it works for you.

gcs8 commented 4 months ago

Looks good to me, my only complaint is that it seems to pice what to dedup at random? The easiest thing I can point to is the SAS SSDs in the pool for the metadata, it has the first 2 near the top and the last on at the bottom of the list. That is just my OCD though, I can live with it, so if it dosent bother you, I can live with it as the hellen keller of code.

Gmail - Status Report and Configuration Backup for The-Archive - 2024-03-19 22_15.pdf

dak180 commented 4 months ago

Looks good to me, my only complaint is that it seems to pice what to dedup at random?

The way the dedup code works is that uses the first instance of the disk it encounters from the list generated by the following command: sysctl -n kern.disks. I would be particularly interested in knowing if there is long term run to run consistency of the order. If I do not have to invest in reordering the list twice I would prefer to save the time.

gcs8 commented 4 months ago

huh, odd that it doesn't come out in order of enumeration.

root@The-Archive:~ # sysctl -n kern.disks
da86 da33 da119 da76 da79 da162 da137 da87 da32 da56 da167 da175 da168 da144 da174 da100 da35 da123 da12 da75 da171 da157 da36 da172 da158 da173 da42 da148 da160 da161 da39 da25 da159 da124 da127 da149 da153 da40 da135 da177 da26 da150 da41 da113 da151 da118 da47 da114 da170 da101 da80 da163 da83 da115 da156 da117 da154 da27 da169 da176 da164 da88 da131 da129 da30 da147 da38 da128 da24 da69 da31 da85 da37 da70 da146 da71 da152 da155 da130 da18 da29 da74 da116 da166 da125 da165 da136 da84 da126 da81 da73 da120 da106 da134 da21 da122 da34 da67 da22 da16 da82 da78 da57 da72 da145 da68 da140 da20 da95 da14 da104 da55 da138 da28 da15 da17 da121 da139 da90 da23 da77 da43 da105 da109 da133 da19 da91 da110 da132 da60 da46 da2 da13 da61 da65 da51 da7 da92 da62 da48 da4 da107 da63 da93 da49 da96 da66 da52 da8 da103 da89 da59 da45 da1 da108 da94 da64 da50 da6 da141 da97 da111 da53 da9 da102 da58 da44 da0 da112 da142 da98 da54 da10 da143 da99 da11 da5 da3 ada1 ada0 nvd3 nvd2 nvd1 nvd0
gcs8 commented 4 months ago

This is whats in demsg greped to da.

root@The-Archive:~ # dmesg | grep da
FreeBSD is a registered trademark of The FreeBSD Foundation.
efirtc0: registered as a time-of-day clock, resolution 1.000000s
atrtc0: registered as a time-of-day clock, resolution 1.000000s
pci0: <dasp, performance counters> at device 8.2 (no driver attached)
pci0: <dasp, performance counters> at device 9.2 (no driver attached)
pci0: <dasp, performance counters> at device 11.1 (no driver attached)
pci0: <dasp, performance counters> at device 11.2 (no driver attached)
pci0: <dasp, performance counters> at device 16.1 (no driver attached)
pci0: <dasp, performance counters> at device 16.6 (no driver attached)
pci0: <dasp, performance counters> at device 18.1 (no driver attached)
pci0: <dasp, performance counters> at device 18.5 (no driver attached)
pci1: <dasp, performance counters> at device 8.2 (no driver attached)
pci1: <dasp, performance counters> at device 9.2 (no driver attached)
pci1: <dasp, performance counters> at device 11.1 (no driver attached)
pci1: <dasp, performance counters> at device 11.2 (no driver attached)
pci1: <dasp, performance counters> at device 16.1 (no driver attached)
pci1: <dasp, performance counters> at device 16.6 (no driver attached)
pci1: <dasp, performance counters> at device 18.1 (no driver attached)
pci1: <dasp, performance counters> at device 18.5 (no driver attached)
isp0: <Qlogic ISP 2722 PCI FC Adapter> mem 0x39ffffa05000-0x39ffffa05fff,0x39ffffa02000-0x39ffffa03fff,0x39ffff900000-0x39ffff9fffff irq 50 at device 0.0 numa-domain 1 on pci14
isp1: <Qlogic ISP 2722 PCI FC Adapter> mem 0x39ffffa04000-0x39ffffa04fff,0x39ffffa00000-0x39ffffa01fff,0x39ffff800000-0x39ffff8fffff irq 52 at device 0.1 numa-domain 1 on pci14
ada0 at ahcich8 bus 0 scbus9 target 0 lun 0
ada0: <SuperMicro SSD SOB20R> ACS-2 ATA SATA 3.x device
ada0: Serial Number SMC0515D93717D7B1810
ada0: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 512bytes)
ada0: Command Queueing enabled
ada0: 120832MB (247463936 512 byte sectors)
ada1 at ahcich9 bus 0 scbus10 target 0 lun 0
ada1: <SuperMicro SSD SOB20R> ACS-2 ATA SATA 3.x device
ada1: Serial Number SMC0515D93717D7C6387
ada1: 600.000MB/s transfers (SATA 3.x, UDMA6, PIO 512bytes)
ada1: Command Queueing enabled
ada1: 120832MB (247463936 512 byte sectors)
da5 at mpr0 bus 0 scbus14 target 21 lun 0
da5: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da5: Serial Number 2EJ08K8X
da5: 1200.000MB/s transfers
da5: Command Queueing enabled
da5: 7630885MB (15628053168 512 byte sectors)
da3 at mpr0 bus 0 scbus14 target 19 lun 0
da3: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da3: Serial Number 2EJ03L9X
da3: 1200.000MB/s transfers
da3: Command Queueing enabled
da3: 7630885MB (15628053168 512 byte sectors)
da4 at mpr0 bus 0 scbus14 target 20 lun 0
da4: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da4: Serial Number 2EHYKX4X
da4: 1200.000MB/s transfers
da4: Command Queueing enabled
da4: 7630885MB (15628053168 512 byte sectors)
da7 at mpr0 bus 0 scbus14 target 23 lun 0
da7: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da7: Serial Number 2EHYP70X
da7: 1200.000MB/s transfers
da7: Command Queueing enabled
da7: 7630885MB (15628053168 512 byte sectors)
da0 at mpr0 bus 0 scbus14 target 16 lun 0
da0: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da0: Serial Number 2EHYKGEX
da0: 1200.000MB/s transfers
da0: Command Queueing enabled
da0: 7630885MB (15628053168 512 byte sectors)
da2 at mpr0 bus 0 scbus14 target 18 lun 0
da2: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da2: Serial Number 2EHZBWEX
da2: 1200.000MB/s transfers
da2: Command Queueing enabled
da2: 7630885MB (15628053168 512 byte sectors)
da6 at mpr0 bus 0 scbus14 target 22 lun 0
da6: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da6: Serial Number 2EHZ6M5X
da6: 1200.000MB/s transfers
da6: Command Queueing enabled
da6: 7630885MB (15628053168 512 byte sectors)
da8 at mpr0 bus 0 scbus14 target 24 lun 0
da8: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da8: Serial Number 2EHYSN8X
da8: 1200.000MB/s transfers
da8: Command Queueing enabled
da8: 7630885MB (15628053168 512 byte sectors)
da9 at mpr0 bus 0 scbus14 target 25 lun 0
da9: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da9: Serial Number 2EJ08NRX
da9: 1200.000MB/s transfers
da9: Command Queueing enabled
da9: 7630885MB (15628053168 512 byte sectors)
da10 at mpr0 bus 0 scbus14 target 26 lun 0
da10: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da10: Serial Number 2EHV5HHX
da10: 1200.000MB/s transfers
da10: Command Queueing enabled
da10: 7630885MB (15628053168 512 byte sectors)
da11 at mpr0 bus 0 scbus14 target 27 lun 0
da11: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da11: Serial Number 2EJ08K7X
da11: 1200.000MB/s transfers
da11: Command Queueing enabled
da11: 7630885MB (15628053168 512 byte sectors)
da1 at mpr0 bus 0 scbus14 target 17 lun 0
da1: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da1: Serial Number 2EJ08P9X
da1: 1200.000MB/s transfers
da1: Command Queueing enabled
da1: 7630885MB (15628053168 512 byte sectors)
da13 at mpr0 bus 0 scbus14 target 29 lun 0
da13: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da13: Serial Number VLJTJ13V
da13: 1200.000MB/s transfers
da13: Command Queueing enabled
da13: 7630885MB (15628053168 512 byte sectors)
da88 at mpr0 bus 0 scbus14 target 268 lun 0
da88: <SAMSUNG MZILT3T8HALS/007 GXF4> Fixed Direct Access SPC-5 SCSI device
da88: Serial Number S49PNA0N309254
da88: 1200.000MB/s transfers
da88: Command Queueing enabled
da88: 3662830MB (7501476528 512 byte sectors)
da87 at mpr0 bus 0 scbus14 target 267 lun 0
da87: <SAMSUNG MZILT3T8HALS/007 GXF2> Fixed Direct Access SPC-5 SCSI device
da87: Serial Number S49PNY0M300264
da87: 1200.000MB/s transfers
da87: Command Queueing enabled
da87: 3662830MB (7501476528 512 byte sectors)
ses13: pass175,da160 in 'Slot04', SAS Slot: 1 phys at slot 4
uhub4da177 at mpr1 bus 0 scbus15 target 268 lun 0
da177: <SAMSUNG MZILT3T8HALS/007 GXF4> Fixed Direct Access SPC-5 SCSI device
da177: Serial Number S49PNA0N309254
da177: 1200.000MB/s transfers
da177: Command Queueing enabled
da177: 3662830MB (7501476528 512 byte sectors)
da49 at mpr0 bus 0 scbus14 target 147 lun 0
da49: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da49: Serial Number 2EHZ6M5X
da49: 1200.000MB/s transfers
da49: Command Queueing enabled
da49: 7630885MB (15628053168 512 byte sectors)
da54 at mpr0 bus 0 scbus14 target 152 lun 0
da54: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da54: Serial Number 2EJ08K7X
da54: 1200.000MB/s transfers
da54: Command Queueing enabled
da54: 7630885MB (15628053168 512 byte sectors)
da50 at mpr0 bus 0 scbus14 target 148 lun 0
da50: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da50: Serial Number 2EHYP70X
da50: 1200.000MB/s transfers
da50: Command Queueing enabled
da50: 7630885MB (15628053168 512 byte sectors)
da175 at mpr1 bus 0 scbus15 target 266 lun 0
da175: <SAMSUNG MZILT3T8HALS/007 GXF4> Fixed Direct Access SPC-5 SCSI device
da175: Serial Number S49PNA0N309263
da175: 1200.000MB/s transfers
da175: Command Queueing enabled
da175: 3662830MB (7501476528 512 byte sectors)
da53 at mpr0 bus 0 scbus14 target 151 lun 0
da53: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da53: Serial Number 2EHV5HHX
da53: 1200.000MB/s transfers
da53: Command Queueing enabled
da53: 7630885MB (15628053168 512 byte sectors)
da48 at mpr0 bus 0 scbus14 target 146 lun 0
da48: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da48: Serial Number 2EJ08K8X
da48: 1200.000MB/s transfers
da48: Command Queueing enabled
da48: 7630885MB (15628053168 512 byte sectors)
da51 at mpr0 bus 0 scbus14 target 149 lun 0
da51: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da51: Serial Number 2EHYSN8X
da51: 1200.000MB/s transfers
da51: Command Queueing enabled
da51: 7630885MB (15628053168 512 byte sectors)
da46 at mpr0 bus 0 scbus14 target 144 lun 0
da46: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da46: Serial Number 2EJ03L9X
da46: 1200.000MB/s transfers
da46: Command Queueing enabled
da46: 7630885MB (15628053168 512 byte sectors)
da176 at mpr1 bus 0 scbus15 target 267 lun 0
da176: <SAMSUNG MZILT3T8HALS/007 GXF2> Fixed Direct Access SPC-5 SCSI device
da176: Serial Number S49PNY0M300264
da176: 1200.000MB/s transfers
da176: Command Queueing enabled
da176: 3662830MB (7501476528 512 byte sectors)
da94 at mpr1 bus 0 scbus15 target 21 lun 0
da94: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da94: Serial Number 2EJ08K8X
da94: 1200.000MB/s transfers
da94: Command Queueing enabled
da94: 7630885MB (15628053168 512 byte sectors)
da98 at mpr1 bus 0 scbus15 target 25 lun 0
da98: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da98: Serial Number 2EJ08NRX
da98: 1200.000MB/s transfers
da98: Command Queueing enabled
da98: 7630885MB (15628053168 512 byte sectors)
da62 at mpr0 bus 0 scbus14 target 160 lun 0
da62: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da62: Serial Number R6G6H3PY
da62: 1200.000MB/s transfers
da62: Command Queueing enabled
da62: 7630885MB (15628053168 512 byte sectors)
 numa-domain 0da45 at mpr0 bus 0 scbus14 target 143 lun 0
da45: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da45: Serial Number 2EHZBWEX
da45: 1200.000MB/s transfers
da45: Command Queueing enabled
da45: 7630885MB (15628053168 512 byte sectors)
da97 at mpr1 bus 0 scbus15 target 24 lun 0
da97: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da97: Serial Number 2EHYSN8X
da97: 1200.000MB/s transfers
da97: Command Queueing enabled
da97: 7630885MB (15628053168 512 byte sectors)
da93 at mpr1 bus 0 scbus15 target 20 lun 0
da93: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da93: Serial Number 2EHYKX4X
da93: 1200.000MB/s transfers
da93: Command Queueing enabled
da93: 7630885MB (15628053168 512 byte sectors)
da64 at mpr0 bus 0 scbus14 target 162 lun 0
da64: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da64: Serial Number R6G8SXUY
da64: 1200.000MB/s transfers
da64: Command Queueing enabled
da64: 7630885MB (15628053168 512 byte sectors)
da60 at mpr0 bus 0 scbus14 target 158 lun 0
da60: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da60: Serial Number R6G8AH3Y
da60: 1200.000MB/s transfers
da60: Command Queueing enabled
da60: 7630885MB (15628053168 512 byte sectors)
da111 at mpr1 bus 0 scbus15 target 38 lun 0
da111: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da111: Serial Number R6G8SXJY
da111: 1200.000MB/s transfers
da111: Command Queueing enabled
da111: 7630885MB (15628053168 512 byte sectors)
da59 at mpr0 bus 0 scbus14 target 157 lun 0
da59: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da59: Serial Number VLJT8XRV
da59: 1200.000MB/s transfers
da59: Command Queueing enabled
da59: 7630885MB (15628053168 512 byte sectors)
da44 at mpr0 bus 0 scbus14 target 142 lun 0
da44: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da44: Serial Number 2EJ08P9X
da44: 1200.000MB/s transfers
da44: Command Queueing enabled
da44: 7630885MB (15628053168 512 byte sectors)
da52 at mpr0 bus 0 scbus14 target 150 lun 0
da52: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da52: Serial Number 2EJ08NRX
da52: 1200.000MB/s transfers
da52: Command Queueing enabled
da52: 7630885MB (15628053168 512 byte sectors)
da142 at mpr1 bus 0 scbus15 target 151 lun 0
da142: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da142: Serial Number 2EHV5HHX
da142: 1200.000MB/s transfers
da142: Command Queueing enabled
da142: 7630885MB (15628053168 512 byte sectors)
da58 at mpr0 bus 0 scbus14 target 156 lun 0
da58: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da58: Serial Number VLJR444V
da58: 1200.000MB/s transfers
da58: Command Queueing enabled
da58: 7630885MB (15628053168 512 byte sectors)
da92 at mpr1 bus 0 scbus15 target 19 lun 0
da92: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da92: Serial Number 2EJ03L9X
da92: 1200.000MB/s transfers
da92: Command Queueing enabled
da92: 7630885MB (15628053168 512 byte sectors)
da65 at mpr0 bus 0 scbus14 target 163 lun 0
da65: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da65: Serial Number R6G8SXJY
da65: 1200.000MB/s transfers
da65: Command Queueing enabled
da65: 7630885MB (15628053168 512 byte sectors)
da66 at mpr0 bus 0 scbus14 target 164 lun 0
da66: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da66: Serial Number R6G8NN4Y
da66: 1200.000MB/s transfers
da66: Command Queueing enabled
da66: 7630885MB (15628053168 512 byte sectors)
da99 at mpr1 bus 0 scbus15 target 26 lun 0
da99: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da99: Serial Number 2EHV5HHX
da99: 1200.000MB/s transfers
da99: Command Queueing enabled
da99: 7630885MB (15628053168 512 byte sectors)
da141 at mpr1 bus 0 scbus15 target 150 lun 0
da141: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da141: Serial Number 2EJ08NRX
da141: 1200.000MB/s transfers
da141: Command Queueing enabled
da141: 7630885MB (15628053168 512 byte sectors)
da63 at mpr0 bus 0 scbus14 target 161 lun 0
da63: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da63: Serial Number R6G8V1EY
da63: 1200.000MB/s transfers
da63: Command Queueing enabled
da63: 7630885MB (15628053168 512 byte sectors)
da143 at mpr1 bus 0 scbus15 target 152 lun 0
da143: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da143: Serial Number 2EJ08K7X
da143: 1200.000MB/s transfers
da143: Command Queueing enabled
da143: 7630885MB (15628053168 512 byte sectors)
da89 at mpr1 bus 0 scbus15 target 16 lun 0
da89: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da89: Serial Number 2EHYKGEX
da89: 1200.000MB/s transfers
da89: Command Queueing enabled
da89: 7630885MB (15628053168 512 byte sectors)
da112 at mpr1 bus 0 scbus15 target 39 lun 0
da112: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da112: Serial Number R6G8NN4Y
da112: 1200.000MB/s transfers
da112: Command Queueing enabled
da112: 7630885MB (15628053168 512 byte sectors)
da136 at mpr1 bus 0 scbus15 target 145 lun 0
da136: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da136: Serial Number 2EHYKX4X
da136: 1200.000MB/s transfers
da136: Command Queueing enabled
da136: 7630885MB (15628053168 512 byte sectors)
da102 at mpr1 bus 0 scbus15 target 29 lun 0
da102: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da102: Serial Number VLJTJ13V
da102: 1200.000MB/s transfers
da102: Command Queueing enabled
da102: 7630885MB (15628053168 512 byte sectors)
da95 at mpr1 bus 0 scbus15 target 22 lun 0
da95: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da95: Serial Number 2EHZ6M5X
da95: 1200.000MB/s transfers
da95: Command Queueing enabled
da95: 7630885MB (15628053168 512 byte sectors)
da96 at mpr1 bus 0 scbus15 target 23 lun 0
da96: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da96: Serial Number 2EHYP70X
da96: 1200.000MB/s transfers
da96: Command Queueing enabled
da96: 7630885MB (15628053168 512 byte sectors)
da103 at mpr1 bus 0 scbus15 target 30 lun 0
da103: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da103: Serial Number VLJT870V
da103: 1200.000MB/s transfers
da103: Command Queueing enabled
da103: 7630885MB (15628053168 512 byte sectors)
da108 at mpr1 bus 0 scbus15 target 35 lun 0
da108: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da108: Serial Number R6G6H3PY
da108: 1200.000MB/s transfers
da108: Command Queueing enabled
da108: 7630885MB (15628053168 512 byte sectors)
da107 at mpr1 bus 0 scbus15 target 34 lun 0
da107: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da107: Serial Number R6G8SSUY
da107: 1200.000MB/s transfers
da107: Command Queueing enabled
da107: 7630885MB (15628053168 512 byte sectors)
da61 at mpr0 bus 0 scbus14 target 159 lun 0
da61: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da61: Serial Number R6G8SSUY
da61: 1200.000MB/s transfers
da61: Command Queueing enabled
da61: 7630885MB (15628053168 512 byte sectors)
da132 at mpr1 bus 0 scbus15 target 141 lun 0
da132: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da132: Serial Number 2EHYKGEX
da132: 1200.000MB/s transfers
da132: Command Queueing enabled
da132: 7630885MB (15628053168 512 byte sectors)
da110 at mpr1 bus 0 scbus15 target 37 lun 0
da110: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da110: Serial Number R6G8SXUY
da110: 1200.000MB/s transfers
da110: Command Queueing enabled
da110: 7630885MB (15628053168 512 byte sectors)
da91 at mpr1 bus 0 scbus15 target 18 lun 0
da91: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da91: Serial Number 2EHZBWEX
da91: 1200.000MB/s transfers
da91: Command Queueing enabled
da91: 7630885MB (15628053168 512 byte sectors)
da19 at mpr0 bus 0 scbus14 target 35 lun 0
da19: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da19: Serial Number R6G6H3PY
da19: 1200.000MB/s transfers
da19: Command Queueing enabled
da19: 7630885MB (15628053168 512 byte sectors)
da133 at mpr1 bus 0 scbus15 target 142 lun 0
da133: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da133: Serial Number 2EJ08P9X
da133: 1200.000MB/s transfers
da133: Command Queueing enabled
da133: 7630885MB (15628053168 512 byte sectors)
da90 at mpr1 bus 0 scbus15 target 17 lun 0
da90: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da90: Serial Number 2EJ08P9X
da90: 1200.000MB/s transfers
da90: Command Queueing enabled
da90: 7630885MB (15628053168 512 byte sectors)
da77 at mpr0 bus 0 scbus14 target 194 lun 0
da77: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da77: Serial Number 3FJ13DMT
da77: 1200.000MB/s transfers
da77: Command Queueing enabled
da77: 17166336MB (35156656128 512 byte sectors)
da43 at mpr0 bus 0 scbus14 target 141 lun 0
da43: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da43: Serial Number 2EHYKGEX
da43: 1200.000MB/s transfers
da43: Command Queueing enabled
da43: 7630885MB (15628053168 512 byte sectors)
da109 at mpr1 bus 0 scbus15 target 36 lun 0
da109: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da109: Serial Number R6G8V1EY
da109: 1200.000MB/s transfers
da109: Command Queueing enabled
da109: 7630885MB (15628053168 512 byte sectors)
da105 at mpr1 bus 0 scbus15 target 32 lun 0
da105: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da105: Serial Number VLJT8XRV
da105: 1200.000MB/s transfers
da105: Command Queueing enabled
da105: 7630885MB (15628053168 512 byte sectors)
da121 at mpr1 bus 0 scbus15 target 67 lun 0
da121: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da121: Serial Number 3FJ0J3VT
da121: 1200.000MB/s transfers
da121: Command Queueing enabled
da121: 17166336MB (35156656128 512 byte sectors)
da23 at mpr0 bus 0 scbus14 target 39 lun 0
da23: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da23: Serial Number R6G8NN4Y
da23: 1200.000MB/s transfers
da23: Command Queueing enabled
da23: 7630885MB (15628053168 512 byte sectors)
da139 at mpr1 bus 0 scbus15 target 148 lun 0
da139: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da139: Serial Number 2EHYP70X
da139: 1200.000MB/s transfers
da139: Command Queueing enabled
da139: 7630885MB (15628053168 512 byte sectors)
da17 at mpr0 bus 0 scbus14 target 33 lun 0
da17: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da17: Serial Number R6G8AH3Y
da17: 1200.000MB/s transfers
da17: Command Queueing enabled
da17: 7630885MB (15628053168 512 byte sectors)
da15 at mpr0 bus 0 scbus14 target 31 lun 0
da15: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da15: Serial Number VLJR444V
da15: 1200.000MB/s transfers
da15: Command Queueing enabled
da15: 7630885MB (15628053168 512 byte sectors)
da28 at mpr0 bus 0 scbus14 target 63 lun 0
da28: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da28: Serial Number 3FHLJ5ET
da28: 1200.000MB/s transfers
da28: Command Queueing enabled
da28: 17166336MB (35156656128 512 byte sectors)
da138 at mpr1 bus 0 scbus15 target 147 lun 0
da138: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da138: Serial Number 2EHZ6M5X
da138: 1200.000MB/s transfers
da138: Command Queueing enabled
da138: 7630885MB (15628053168 512 byte sectors)
da55 at mpr0 bus 0 scbus14 target 153 lun 0
da55: <WDC WUH721818AL5204 C680> Fixed Direct Access SPC-5 SCSI device
da55: Serial Number 4MHAMBEH
da55: 1200.000MB/s transfers
da55: Command Queueing enabled
da55: 17166336MB (35156656128 512 byte sectors)
da104 at mpr1 bus 0 scbus15 target 31 lun 0
da104: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da104: Serial Number VLJR444V
da104: 1200.000MB/s transfers
da104: Command Queueing enabled
da104: 7630885MB (15628053168 512 byte sectors)
da14 at mpr0 bus 0 scbus14 target 30 lun 0
da14: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da14: Serial Number VLJT870V
da14: 1200.000MB/s transfers
da14: Command Queueing enabled
da14: 7630885MB (15628053168 512 byte sectors)
da57 at mpr0 bus 0 scbus14 target 155 lun 0
da57: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da57: Serial Number VLJT870V
da57: 1200.000MB/s transfers
da57: Command Queueing enabled
da57: 7630885MB (15628053168 512 byte sectors)
da68 at mpr0 bus 0 scbus14 target 185 lun 0
da68: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da68: Serial Number 3FJ1J2VT
da68: 1200.000MB/s transfers
da68: Command Queueing enabled
da68: 17166336MB (35156656128 512 byte sectors)
da20 at mpr0 bus 0 scbus14 target 36 lun 0
da20: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da20: Serial Number R6G8V1EY
da20: 1200.000MB/s transfers
da20: Command Queueing enabled
da20: 7630885MB (15628053168 512 byte sectors)
da72 at mpr0 bus 0 scbus14 target 189 lun 0
da72: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da72: Serial Number 3FJ13GTT
da72: 1200.000MB/s transfers
da72: Command Queueing enabled
da72: 17166336MB (35156656128 512 byte sectors)
da140 at mpr1 bus 0 scbus15 target 149 lun 0
da140: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da140: Serial Number 2EHYSN8X
da140: 1200.000MB/s transfers
da140: Command Queueing enabled
da140: 7630885MB (15628053168 512 byte sectors)
da145 at mpr1 bus 0 scbus15 target 154 lun 0
da145: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da145: Serial Number VLJTJ13V
da145: 1200.000MB/s transfers
da145: Command Queueing enabled
da145: 7630885MB (15628053168 512 byte sectors)
da78 at mpr0 bus 0 scbus14 target 195 lun 0
da78: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da78: Serial Number 3FJ0STZT
da78: 1200.000MB/s transfers
da78: Command Queueing enabled
da78: 17166336MB (35156656128 512 byte sectors)
da82 at mpr0 bus 0 scbus14 target 199 lun 0
da82: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da82: Serial Number 3FJ0Z9PT
da82: 1200.000MB/s transfers
da82: Command Queueing enabled
da82: 17166336MB (35156656128 512 byte sectors)
da67 at mpr0 bus 0 scbus14 target 184 lun 0
da67: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da67: Serial Number 3FJ0ZE7T
da67: 1200.000MB/s transfers
da67: Command Queueing enabled
da67: 17166336MB (35156656128 512 byte sectors)
da122 at mpr1 bus 0 scbus15 target 68 lun 0
da122: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da122: Serial Number 3FJ0K5UT
da122: 1200.000MB/s transfers
da122: Command Queueing enabled
da122: 17166336MB (35156656128 512 byte sectors)
da22 at mpr0 bus 0 scbus14 target 38 lun 0
da22: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da22: Serial Number R6G8SXJY
da22: 1200.000MB/s transfers
da22: Command Queueing enabled
da22: 7630885MB (15628053168 512 byte sectors)
uhub5da76 at mpr0 bus 0 scbus14 target 193 lun 0
da76: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da76: Serial Number 3FJ0K5UT
da76: 1200.000MB/s transfers
da76: Command Queueing enabled
da76: 17166336MB (35156656128 512 byte sectors)
da34 at mpr0 bus 0 scbus14 target 69 lun 0
da34: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da34: Serial Number 3FJ13DMT
da34: 1200.000MB/s transfers
da34: Command Queueing enabled
da34: 17166336MB (35156656128 512 byte sectors)
da16 at mpr0 bus 0 scbus14 target 32 lun 0
da16: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da16: Serial Number VLJT8XRV
da16: 1200.000MB/s transfers
da16: Command Queueing enabled
da16: 7630885MB (15628053168 512 byte sectors)
da75 at mpr0 bus 0 scbus14 target 192 lun 0
da75: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da75: Serial Number 3FJ0J3VT
da75: 1200.000MB/s transfers
da75: Command Queueing enabled
da75: 17166336MB (35156656128 512 byte sectors)
da33 at mpr0 bus 0 scbus14 target 68 lun 0
da33: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da33: Serial Number 3FJ0K5UT
da33: 1200.000MB/s transfers
da33: Command Queueing enabled
da33: 17166336MB (35156656128 512 byte sectors)
da120 at mpr1 bus 0 scbus15 target 66 lun 0
da120: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da120: Serial Number 3FJ0J20T
da120: 1200.000MB/s transfers
da120: Command Queueing enabled
da120: 17166336MB (35156656128 512 byte sectors)
 numa-domain 0da21 at mpr0 bus 0 scbus14 target 37 lun 0
da21: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da21: Serial Number R6G8SXUY
da21: 1200.000MB/s transfers
da21: Command Queueing enabled
da21: 7630885MB (15628053168 512 byte sectors)
da73 at mpr0 bus 0 scbus14 target 190 lun 0
da73: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da73: Serial Number 3FHR0N0T
da73: 1200.000MB/s transfers
da73: Command Queueing enabled
da73: 17166336MB (35156656128 512 byte sectors)
da81 at mpr0 bus 0 scbus14 target 198 lun 0
da81: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da81: Serial Number 3FHZUXAT
da81: 1200.000MB/s transfers
da81: Command Queueing enabled
da81: 17166336MB (35156656128 512 byte sectors)
da84 at mpr0 bus 0 scbus14 target 201 lun 0
da84: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da84: Serial Number 3FJ0NN6T
da84: 1200.000MB/s transfers
da84: Command Queueing enabled
da84: 17166336MB (35156656128 512 byte sectors)
da126 at mpr1 bus 0 scbus15 target 72 lun 0
da126: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da126: Serial Number 3FJ045NT
da126: 1200.000MB/s transfers
da126: Command Queueing enabled
da126: 17166336MB (35156656128 512 byte sectors)
da32 at mpr0 bus 0 scbus14 target 67 lun 0
da32: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da32: Serial Number 3FJ0J3VT
da32: 1200.000MB/s transfers
da32: Command Queueing enabled
da32: 17166336MB (35156656128 512 byte sectors)
da134 at mpr1 bus 0 scbus15 target 143 lun 0
da134: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da134: Serial Number 2EHZBWEX
da134: 1200.000MB/s transfers
da134: Command Queueing enabled
da134: 7630885MB (15628053168 512 byte sectors)
da106 at mpr1 bus 0 scbus15 target 33 lun 0
da106: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da106: Serial Number R6G8AH3Y
da106: 1200.000MB/s transfers
da106: Command Queueing enabled
da106: 7630885MB (15628053168 512 byte sectors)
da86 at mpr0 bus 0 scbus14 target 266 lun 0
da86: <SAMSUNG MZILT3T8HALS/007 GXF4> Fixed Direct Access SPC-5 SCSI device
da86: Serial Number S49PNA0N309263
da86: 1200.000MB/s transfers
da86: Command Queueing enabled
da86: 3662830MB (7501476528 512 byte sectors)
da165 at mpr1 bus 0 scbus15 target 193 lun 0
da165: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da165: Serial Number 3FJ0K5UT
da165: 1200.000MB/s transfers
da165: Command Queueing enabled
da165: 17166336MB (35156656128 512 byte sectors)
da125 at mpr1 bus 0 scbus15 target 71 lun 0
da125: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da125: Serial Number 3FJ0SR4T
da125: 1200.000MB/s transfers
da125: Command Queueing enabled
da125: 17166336MB (35156656128 512 byte sectors)
da116 at mpr1 bus 0 scbus15 target 62 lun 0
da116: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da116: Serial Number 3FJ0SX9T
da116: 1200.000MB/s transfers
da116: Command Queueing enabled
da116: 17166336MB (35156656128 512 byte sectors)
da74 at mpr0 bus 0 scbus14 target 191 lun 0
da74: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da74: Serial Number 3FJ0J20T
da74: 1200.000MB/s transfers
da74: Command Queueing enabled
da74: 17166336MB (35156656128 512 byte sectors)
da166 at mpr1 bus 0 scbus15 target 194 lun 0
da166: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da166: Serial Number 3FJ13DMT
da166: 1200.000MB/s transfers
da166: Command Queueing enabled
da166: 17166336MB (35156656128 512 byte sectors)
da70 at mpr0 bus 0 scbus14 target 187 lun 0
da70: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da70: Serial Number 3FJ0SX9T
da70: 1200.000MB/s transfers
da70: Command Queueing enabled
da70: 17166336MB (35156656128 512 byte sectors)
da119 at mpr1 bus 0 scbus15 target 65 lun 0
da119: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da119: Serial Number 3FHR0N0T
da119: 1200.000MB/s transfers
da119: Command Queueing enabled
da119: 17166336MB (35156656128 512 byte sectors)
da130 at mpr1 bus 0 scbus15 target 76 lun 0
da130: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da130: Serial Number 3FJ0NN6T
da130: 1200.000MB/s transfers
da130: Command Queueing enabled
da130: 17166336MB (35156656128 512 byte sectors)
da123 at mpr1 bus 0 scbus15 target 69 lun 0
da123: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da123: Serial Number 3FJ13DMT
da123: 1200.000MB/s transfers
da123: Command Queueing enabled
da123: 17166336MB (35156656128 512 byte sectors)
da29 at mpr0 bus 0 scbus14 target 64 lun 0
da29: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da29: Serial Number 3FJ13GTT
da29: 1200.000MB/s transfers
da29: Command Queueing enabled
da29: 17166336MB (35156656128 512 byte sectors)
da118 at mpr1 bus 0 scbus15 target 64 lun 0
da118: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da118: Serial Number 3FJ13GTT
da118: 1200.000MB/s transfers
da118: Command Queueing enabled
da118: 17166336MB (35156656128 512 byte sectors)
ses2: pass12,da8 in 'Slot08', SAS Slot: 1 phys at slot 8
ses5: pass56,da49 in 'Slot06', SAS Slot: 1 phys at slot 6
ses3: pass36,da31 in 'Slot07', SAS Slot: 1 phys at slot 7
ses6: pass82,da74 in 'Slot07', SAS Slot: 1 phys at slot 7
da18 at mpr0 bus 0 scbus14 target 34 lun 0
da18: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da18: Serial Number R6G8SSUY
da18: 1200.000MB/s transfers
da18: Command Queueing enabled
da18: 7630885MB (15628053168 512 byte sectors)
da12 at mpr0 bus 0 scbus14 target 28 lun 0
da12: <WDC WUH721818AL5204 C680> Fixed Direct Access SPC-5 SCSI device
da12: Serial Number 4MHAMBEH
da12: 1200.000MB/s transfers
da12: Command Queueing enabled
da12: 17166336MB (35156656128 512 byte sectors)
da85 at mpr0 bus 0 scbus14 target 227 lun 0
da85: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da85: Serial Number 3FK6T9YT
da85: 1200.000MB/s transfers
da85: Command Queueing enabled
da85: 17166336MB (35156656128 512 byte sectors)
da114 at mpr1 bus 0 scbus15 target 60 lun 0
da114: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da114: Serial Number 3FJ1J2VT
da114: 1200.000MB/s transfers
da114: Command Queueing enabled
da114: 17166336MB (35156656128 512 byte sectors)
da71 at mpr0 bus 0 scbus14 target 188 lun 0
da71: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da71: Serial Number 3FHLJ5ET
da71: 1200.000MB/s transfers
da71: Command Queueing enabled
da71: 17166336MB (35156656128 512 byte sectors)
da155 at mpr1 bus 0 scbus15 target 164 lun 0
da155: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da155: Serial Number R6G8NN4Y
da155: 1200.000MB/s transfers
da155: Command Queueing enabled
da155: 7630885MB (15628053168 512 byte sectors)
da37 at mpr0 bus 0 scbus14 target 72 lun 0
da37: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da37: Serial Number 3FJ045NT
da37: 1200.000MB/s transfers
da37: Command Queueing enabled
da37: 17166336MB (35156656128 512 byte sectors)
da152 at mpr1 bus 0 scbus15 target 161 lun 0
da152: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da152: Serial Number R6G8V1EY
da152: 1200.000MB/s transfers
da152: Command Queueing enabled
da152: 7630885MB (15628053168 512 byte sectors)
da131 at mpr1 bus 0 scbus15 target 102 lun 0
da131: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da131: Serial Number 3FK6T9YT
da131: 1200.000MB/s transfers
da131: Command Queueing enabled
da131: 17166336MB (35156656128 512 byte sectors)
da69 at mpr0 bus 0 scbus14 target 186 lun 0
da69: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da69: Serial Number 3FHZRMZT
da69: 1200.000MB/s transfers
da69: Command Queueing enabled
da69: 17166336MB (35156656128 512 byte sectors)
da146 at mpr1 bus 0 scbus15 target 155 lun 0
da146: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da146: Serial Number VLJT870V
da146: 1200.000MB/s transfers
da146: Command Queueing enabled
da146: 7630885MB (15628053168 512 byte sectors)
da31 at mpr0 bus 0 scbus14 target 66 lun 0
da31: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da31: Serial Number 3FJ0J20T
da31: 1200.000MB/s transfers
da31: Command Queueing enabled
da31: 17166336MB (35156656128 512 byte sectors)
da129 at mpr1 bus 0 scbus15 target 75 lun 0
da129: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da129: Serial Number 3FHSULGT
da129: 1200.000MB/s transfers
da129: Command Queueing enabled
da129: 17166336MB (35156656128 512 byte sectors)
da24 at mpr0 bus 0 scbus14 target 59 lun 0
da24: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da24: Serial Number 3FJ0ZE7T
da24: 1200.000MB/s transfers
da24: Command Queueing enabled
da24: 17166336MB (35156656128 512 byte sectors)
da83 at mpr0 bus 0 scbus14 target 200 lun 0
da83: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da83: Serial Number 3FHSULGT
da83: 1200.000MB/s transfers
da83: Command Queueing enabled
da83: 17166336MB (35156656128 512 byte sectors)
da128 at mpr1 bus 0 scbus15 target 74 lun 0
da128: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da128: Serial Number 3FJ0Z9PT
da128: 1200.000MB/s transfers
da128: Command Queueing enabled
da128: 17166336MB (35156656128 512 byte sectors)
da169 at mpr1 bus 0 scbus15 target 197 lun 0
da169: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da169: Serial Number 3FJ045NT
da169: 1200.000MB/s transfers
da169: Command Queueing enabled
da169: 17166336MB (35156656128 512 byte sectors)
da38 at mpr0 bus 0 scbus14 target 73 lun 0
da38: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da38: Serial Number 3FHZUXAT
da38: 1200.000MB/s transfers
da38: Command Queueing enabled
da38: 17166336MB (35156656128 512 byte sectors)
da115 at mpr1 bus 0 scbus15 target 61 lun 0
da115: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da115: Serial Number 3FHZRMZT
da115: 1200.000MB/s transfers
da115: Command Queueing enabled
da115: 17166336MB (35156656128 512 byte sectors)
da30 at mpr0 bus 0 scbus14 target 65 lun 0
da30: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da30: Serial Number 3FHR0N0T
da30: 1200.000MB/s transfers
da30: Command Queueing enabled
da30: 17166336MB (35156656128 512 byte sectors)
da147 at mpr1 bus 0 scbus15 target 156 lun 0
da147: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da147: Serial Number VLJR444V
da147: 1200.000MB/s transfers
da147: Command Queueing enabled
da147: 7630885MB (15628053168 512 byte sectors)
da161 at mpr1 bus 0 scbus15 target 189 lun 0
da161: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da161: Serial Number 3FJ13GTT
da161: 1200.000MB/s transfers
da161: Command Queueing enabled
da161: 17166336MB (35156656128 512 byte sectors)
da164 at mpr1 bus 0 scbus15 target 192 lun 0
da164: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da164: Serial Number 3FJ0J3VT
da164: 1200.000MB/s transfers
da164: Command Queueing enabled
da164: 17166336MB (35156656128 512 byte sectors)
da156 at mpr1 bus 0 scbus15 target 184 lun 0
da156: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da156: Serial Number 3FJ0ZE7T
da156: 1200.000MB/s transfers
da156: Command Queueing enabled
da156: 17166336MB (35156656128 512 byte sectors)
da26 at mpr0 bus 0 scbus14 target 61 lun 0
da26: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da26: Serial Number 3FHZRMZT
da26: 1200.000MB/s transfers
da26: Command Queueing enabled
da26: 17166336MB (35156656128 512 byte sectors)
da80 at mpr0 bus 0 scbus14 target 197 lun 0
da80: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da80: Serial Number 3FJ045NT
da80: 1200.000MB/s transfers
da80: Command Queueing enabled
da80: 17166336MB (35156656128 512 byte sectors)
da137 at mpr1 bus 0 scbus15 target 146 lun 0
da137: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da137: Serial Number 2EJ08K8X
da137: 1200.000MB/s transfers
da137: Command Queueing enabled
da137: 7630885MB (15628053168 512 byte sectors)
da113 at mpr1 bus 0 scbus15 target 59 lun 0
da113: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da113: Serial Number 3FJ0ZE7T
da113: 1200.000MB/s transfers
da113: Command Queueing enabled
da113: 17166336MB (35156656128 512 byte sectors)
da27 at mpr0 bus 0 scbus14 target 62 lun 0
da27: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da27: Serial Number 3FJ0SX9T
da27: 1200.000MB/s transfers
da27: Command Queueing enabled
da27: 17166336MB (35156656128 512 byte sectors)
da40 at mpr0 bus 0 scbus14 target 75 lun 0
da40: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da40: Serial Number 3FHSULGT
da40: 1200.000MB/s transfers
da40: Command Queueing enabled
da40: 17166336MB (35156656128 512 byte sectors)
da154 at mpr1 bus 0 scbus15 target 163 lun 0
da154: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da154: Serial Number R6G8SXJY
da154: 1200.000MB/s transfers
da154: Command Queueing enabled
da154: 7630885MB (15628053168 512 byte sectors)
da35 at mpr0 bus 0 scbus14 target 70 lun 0
da35: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da35: Serial Number 3FJ0STZT
da35: 1200.000MB/s transfers
da35: Command Queueing enabled
da35: 17166336MB (35156656128 512 byte sectors)
da117 at mpr1 bus 0 scbus15 target 63 lun 0
da117: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da117: Serial Number 3FHLJ5ET
da117: 1200.000MB/s transfers
da117: Command Queueing enabled
da117: 17166336MB (35156656128 512 byte sectors)
da25 at mpr0 bus 0 scbus14 target 60 lun 0
da25: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da25: Serial Number 3FJ1J2VT
da25: 1200.000MB/s transfers
da25: Command Queueing enabled
da25: 17166336MB (35156656128 512 byte sectors)
da170 at mpr1 bus 0 scbus15 target 198 lun 0
da170: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da170: Serial Number 3FHZUXAT
da170: 1200.000MB/s transfers
da170: Command Queueing enabled
da170: 17166336MB (35156656128 512 byte sectors)
da163 at mpr1 bus 0 scbus15 target 191 lun 0
da163: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da163: Serial Number 3FJ0J20T
da163: 1200.000MB/s transfers
da163: Command Queueing enabled
da163: 17166336MB (35156656128 512 byte sectors)
da127 at mpr1 bus 0 scbus15 target 73 lun 0
da127: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da127: Serial Number 3FHZUXAT
da127: 1200.000MB/s transfers
da127: Command Queueing enabled
da127: 17166336MB (35156656128 512 byte sectors)
da101 at mpr1 bus 0 scbus15 target 28 lun 0
da101: <WDC WUH721818AL5204 C680> Fixed Direct Access SPC-5 SCSI device
da101: Serial Number 4MHAMBEH
da101: 1200.000MB/s transfers
da101: Command Queueing enabled
da101: 17166336MB (35156656128 512 byte sectors)
ses9: pass106,da95 in 'Slot06', SAS Slot: 1 phys at slot 6
da41 at mpr0 bus 0 scbus14 target 76 lun 0
da41: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da41: Serial Number 3FJ0NN6T
da41: 1200.000MB/s transfers
da41: Command Queueing enabled
da41: 17166336MB (35156656128 512 byte sectors)
da47 at mpr0 bus 0 scbus14 target 145 lun 0
da47: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da47: Serial Number 2EHYKX4X
da47: 1200.000MB/s transfers
da47: Command Queueing enabled
da47: 7630885MB (15628053168 512 byte sectors)
da151 at mpr1 bus 0 scbus15 target 160 lun 0
da151: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da151: Serial Number R6G6H3PY
da151: 1200.000MB/s transfers
da151: Command Queueing enabled
da151: 7630885MB (15628053168 512 byte sectors)
da124 at mpr1 bus 0 scbus15 target 70 lun 0
da124: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da124: Serial Number 3FJ0STZT
da124: 1200.000MB/s transfers
da124: Command Queueing enabled
da124: 17166336MB (35156656128 512 byte sectors)
da150 at mpr1 bus 0 scbus15 target 159 lun 0
da150: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da150: Serial Number R6G8SSUY
da150: 1200.000MB/s transfers
da150: Command Queueing enabled
da150: 7630885MB (15628053168 512 byte sectors)
da135 at mpr1 bus 0 scbus15 target 144 lun 0
da135: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da135: Serial Number 2EJ03L9X
da135: 1200.000MB/s transfers
da135: Command Queueing enabled
da135: 7630885MB (15628053168 512 byte sectors)
da153 at mpr1 bus 0 scbus15 target 162 lun 0
da153: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da153: Serial Number R6G8SXUY
da153: 1200.000MB/s transfers
da153: Command Queueing enabled
da153: 7630885MB (15628053168 512 byte sectors)
da159 at mpr1 bus 0 scbus15 target 187 lun 0
da159: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da159: Serial Number 3FJ0SX9T
da159: 1200.000MB/s transfers
da159: Command Queueing enabled
da159: 17166336MB (35156656128 512 byte sectors)
da149 at mpr1 bus 0 scbus15 target 158 lun 0
da149: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da149: Serial Number R6G8AH3Y
da149: 1200.000MB/s transfers
da149: Command Queueing enabled
da149: 7630885MB (15628053168 512 byte sectors)
da39 at mpr0 bus 0 scbus14 target 74 lun 0
da39: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da39: Serial Number 3FJ0Z9PT
da39: 1200.000MB/s transfers
da39: Command Queueing enabled
da39: 17166336MB (35156656128 512 byte sectors)
da173 at mpr1 bus 0 scbus15 target 201 lun 0
da173: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da173: Serial Number 3FJ0NN6T
da173: 1200.000MB/s transfers
da173: Command Queueing enabled
da173: 17166336MB (35156656128 512 byte sectors)
da160 at mpr1 bus 0 scbus15 target 188 lun 0
da160: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da160: Serial Number 3FHLJ5ET
da160: 1200.000MB/s transfers
da160: Command Queueing enabled
da160: 17166336MB (35156656128 512 byte sectors)
da162 at mpr1 bus 0 scbus15 target 190 lun 0
da162: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da162: Serial Number 3FHR0N0T
da162: 1200.000MB/s transfers
da162: Command Queueing enabled
da162: 17166336MB (35156656128 512 byte sectors)
da158 at mpr1 bus 0 scbus15 target 186 lun 0
da158: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da158: Serial Number 3FHZRMZT
da158: 1200.000MB/s transfers
da158: Command Queueing enabled
da158: 17166336MB (35156656128 512 byte sectors)
da42 at mpr0 bus 0 scbus14 target 102 lun 0
da42: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da42: Serial Number 3FK6T9YT
da42: 1200.000MB/s transfers
da42: Command Queueing enabled
da42: 17166336MB (35156656128 512 byte sectors)
da36 at mpr0 bus 0 scbus14 target 71 lun 0
da36: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da36: Serial Number 3FJ0SR4T
da36: 1200.000MB/s transfers
da36: Command Queueing enabled
da36: 17166336MB (35156656128 512 byte sectors)
da148 at mpr1 bus 0 scbus15 target 157 lun 0
da148: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da148: Serial Number VLJT8XRV
da148: 1200.000MB/s transfers
da148: Command Queueing enabled
da148: 7630885MB (15628053168 512 byte sectors)
ses12: pass150,da136 in 'Slot04', SAS Slot: 1 phys at slot 4
da172 at mpr1 bus 0 scbus15 target 200 lun 0
da172: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da172: Serial Number 3FHSULGT
da172: 1200.000MB/s transfers
da172: Command Queueing enabled
da172: 17166336MB (35156656128 512 byte sectors)
da157 at mpr1 bus 0 scbus15 target 185 lun 0
da157: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da157: Serial Number 3FJ1J2VT
da157: 1200.000MB/s transfers
da157: Command Queueing enabled
da157: 17166336MB (35156656128 512 byte sectors)
da168 at mpr1 bus 0 scbus15 target 196 lun 0
da168: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da168: Serial Number 3FJ0SR4T
da168: 1200.000MB/s transfers
da168: Command Queueing enabled
da168: 17166336MB (35156656128 512 byte sectors)
da100 at mpr1 bus 0 scbus15 target 27 lun 0
da100: <HGST HUH728080AL5200 A7J0> Fixed Direct Access SPC-4 SCSI device
da100: Serial Number 2EJ08K7X
da100: 1200.000MB/s transfers
da100: Command Queueing enabled
da100: 7630885MB (15628053168 512 byte sectors)
ses2: pass13,da9 in 'Slot09', SAS Slot: 1 phys at slot 9
ses6: pass83,da75 in 'Slot08', SAS Slot: 1 phys at slot 8
ses5: pass57,da50 in 'Slot07', SAS Slot: 1 phys at slot 7
ses3: pass37,da32 in 'Slot08', SAS Slot: 1 phys at slot 8
da171 at mpr1 bus 0 scbus15 target 199 lun 0
da171: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da171: Serial Number 3FJ0Z9PT
da171: 1200.000MB/s transfers
da171: Command Queueing enabled
da171: 17166336MB (35156656128 512 byte sectors)
ses13: pass176,da161 in 'Slot05', SAS Slot: 1 phys at slot 5
ses10: pass130,da118 in 'Slot05', SAS Slot: 1 phys at slot 5
 numa-domain 0da79 at mpr0 bus 0 scbus14 target 196 lun 0
da79: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da79: Serial Number 3FJ0SR4T
da79: 1200.000MB/s transfers
da79: Command Queueing enabled
da79: 17166336MB (35156656128 512 byte sectors)
da174 at mpr1 bus 0 scbus15 target 227 lun 0
da174: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da174: Serial Number 3FK6T9YT
da174: 1200.000MB/s transfers
da174: Command Queueing enabled
da174: 17166336MB (35156656128 512 byte sectors)
da144 at mpr1 bus 0 scbus15 target 153 lun 0
da144: <WDC WUH721818AL5204 C680> Fixed Direct Access SPC-5 SCSI device
da144: Serial Number 4MHAMBEH
da144: 1200.000MB/s transfers
da144: Command Queueing enabled
da144: 17166336MB (35156656128 512 byte sectors)
da167 at mpr1 bus 0 scbus15 target 195 lun 0
da167: <WDC WUH721818AL5204 C232> Fixed Direct Access SPC-5 SCSI device
da167: Serial Number 3FJ0STZT
da167: 1200.000MB/s transfers
da167: Command Queueing enabled
da167: 17166336MB (35156656128 512 byte sectors)
ses6: pass84,da76 in 'Slot09', SAS Slot: 1 phys at slot 9
ses2: pass14,da10 in 'Slot10', SAS Slot: 1 phys at slot 10
da56 at mpr0 bus 0 scbus14 target 154 lun 0
da56: <HGST HUH728080AL5200 A907> Fixed Direct Access SPC-4 SCSI device
da56: Serial Number VLJTJ13V
da56: 1200.000MB/s transfers
da56: Command Queueing enabled
da56: 7630885MB (15628053168 512 byte sectors)
ses13: pass177,da162 in 'Slot06', SAS Slot: 1 phys at slot 6
ses12: pass151,da137 in 'Slot05', SAS Slot: 1 phys at slot 5
ses9: pass107,da96 in 'Slot07', SAS Slot: 1 phys at slot 7
ums0ses10: pass131,da119 in 'Slot06', SAS Slot: 1 phys at slot 6
ses2: pass15,da11 in 'Slot11', SAS Slot: 1 phys at slot 11
ses3: pass38,da33 in 'Slot09', SAS Slot: 1 phys at slot 9
ses5: pass58,da51 in 'Slot08', SAS Slot: 1 phys at slot 8
GEOM: da3: the secondary GPT header is not in the last LBA.
ses12: pass152,da138 in 'Slot06', SAS Slot: 1 phys at slot 6
ses2: pass16,da12 in 'Slot12', SAS Slot: 1 phys at slot 12
ses13: pass178,da163 in 'Slot07', SAS Slot: 1 phys at slot 7
ses9: pass108,da97 in 'Slot08', SAS Slot: 1 phys at slot 8
ses6: pass85,da77 in 'Slot10', SAS Slot: 1 phys at slot 10
GEOM: da5: the secondary GPT header is not in the last LBA.
ses10: pass132,da120 in 'Slot07', SAS Slot: 1 phys at slot 7
ses12: pass153,da139 in 'Slot07', SAS Slot: 1 phys at slot 7
GEOM: da11: the secondary GPT header is not in the last LBA.
ses3: pass39,da34 in 'Slot10', SAS Slot: 1 phys at slot 10
ses5: pass59,da52 in 'Slot09', SAS Slot: 1 phys at slot 9
ses6: pass86,da78 in 'Slot11', SAS Slot: 1 phys at slot 11
ses13: pass179,da164 in 'Slot08', SAS Slot: 1 phys at slot 8
GEOM: da99: the secondary GPT header is not in the last LBA.
ses2: pass17,da13 in 'Slot13', SAS Slot: 1 phys at slot 13
GEOM: da143: the secondary GPT header is not in the last LBA.
ses9: pass109,da98 in 'Slot09', SAS Slot: 1 phys at slot 9
GEOM: da10: the secondary GPT header is not in the last LBA.
ses10: pass133,da121 in 'Slot08', SAS Slot: 1 phys at slot 8
ses3: pass40,da35 in 'Slot11', SAS Slot: 1 phys at slot 11
ses6: pass87,da79 in 'Slot12', SAS Slot: 1 phys at slot 12
ses12: pass154,da140 in 'Slot08', SAS Slot: 1 phys at slot 8
GEOM: da54: the secondary GPT header is not in the last LBA.
ses9: pass110,da99 in 'Slot10', SAS Slot: 1 phys at slot 10
ses13: pass180,da165 in 'Slot09', SAS Slot: 1 phys at slot 9
ses5: pass60,da53 in 'Slot10', SAS Slot: 1 phys at slot 10
ses2: pass18,da14 in 'Slot14', SAS Slot: 1 phys at slot 14
ses10: pass134,da122 in 'Slot09', SAS Slot: 1 phys at slot 9
GEOM: da98: the secondary GPT header is not in the last LBA.
ses6: pass88,da80 in 'Slot13', SAS Slot: 1 phys at slot 13
ses12: pass155,da141 in 'Slot09', SAS Slot: 1 phys at slot 9
ses3: pass41,da36 in 'Slot12', SAS Slot: 1 phys at slot 12
GEOM: da142: the secondary GPT header is not in the last LBA.
ses13: pass181,da166 in 'Slot10', SAS Slot: 1 phys at slot 10
ses5: pass61,da54 in 'Slot11', SAS Slot: 1 phys at slot 11
ses10: pass135,da123 in 'Slot10', SAS Slot: 1 phys at slot 10
ses9: pass111,da100 in 'Slot11', SAS Slot: 1 phys at slot 11
GEOM: da112: the secondary GPT header is not in the last LBA.
ses6: pass89,da81 in 'Slot14', SAS Slot: 1 phys at slot 14
ses2: pass19,da15 in 'Slot15', SAS Slot: 1 phys at slot 15
ses3: pass42,da37 in 'Slot13', SAS Slot: 1 phys at slot 13
GEOM: da0: the secondary GPT header is not in the last LBA.
ses12: pass156,da142 in 'Slot10', SAS Slot: 1 phys at slot 10
ses10: pass136,da124 in 'Slot11', SAS Slot: 1 phys at slot 11
ses9: pass112,da101 in 'Slot12', SAS Slot: 1 phys at slot 12
ses13: pass182,da167 in 'Slot11', SAS Slot: 1 phys at slot 11
GEOM: da44: the secondary GPT header is not in the last LBA.
ses5: pass62,da55 in 'Slot12', SAS Slot: 1 phys at slot 12
ses2: pass20,da16 in 'Slot16', SAS Slot: 1 phys at slot 16
ses3: pass43,da38 in 'Slot14', SAS Slot: 1 phys at slot 14
GEOM: da58: the secondary GPT header is not in the last LBA.
ses6: pass90,da82 in 'Slot15', SAS Slot: 1 phys at slot 15
ses10: pass137,da125 in 'Slot12', SAS Slot: 1 phys at slot 12
ses9: pass113,da102 in 'Slot13', SAS Slot: 1 phys at slot 13
ses3: pass44,da39 in 'Slot15', SAS Slot: 1 phys at slot 15
GEOM: da102: the secondary GPT header is not in the last LBA.
ses12: pass157,da143 in 'Slot11', SAS Slot: 1 phys at slot 11
ses10: pass138,da126 in 'Slot13', SAS Slot: 1 phys at slot 13
ses5: pass63,da56 in 'Slot13', SAS Slot: 1 phys at slot 13
ses13: pass183,da168 in 'Slot12', SAS Slot: 1 phys at slot 12
ses2: pass21,da17 in 'Slot17', SAS Slot: 1 phys at slot 17
GEOM: da9: the secondary GPT header is not in the last LBA.
ses9: pass114,da103 in 'Slot14', SAS Slot: 1 phys at slot 14
ses6: pass91,da83 in 'Slot16', SAS Slot: 1 phys at slot 16
GEOM: da53: the secondary GPT header is not in the last LBA.
ses5: pass64,da57 in 'Slot14', SAS Slot: 1 phys at slot 14
ses3: pass45,da40 in 'Slot16', SAS Slot: 1 phys at slot 16
ses2: pass22,da18 in 'Slot18', SAS Slot: 1 phys at slot 18
GEOM: da111: the secondary GPT header is not in the last LBA.
ses10: pass139,da127 in 'Slot14', SAS Slot: 1 phys at slot 14
ses12: pass158,da144 in 'Slot12', SAS Slot: 1 phys at slot 12
ses9: pass115,da104 in 'Slot15', SAS Slot: 1 phys at slot 15
ses13: pass184,da169 in 'Slot13', SAS Slot: 1 phys at slot 13
ses6: pass92,da84 in 'Slot17', SAS Slot: 1 phys at slot 17
GEOM: da97: the secondary GPT header is not in the last LBA.
ses5: pass65,da58 in 'Slot15', SAS Slot: 1 phys at slot 15
ses2: pass23,da19 in 'Slot19', SAS Slot: 1 phys at slot 19
GEOM: da141: the secondary GPT header is not in the last LBA.
ses3: pass46,da41 in 'Slot17', SAS Slot: 1 phys at slot 17
ses13: pass185,da170 in 'Slot14', SAS Slot: 1 phys at slot 14
ses10: pass140,da128 in 'Slot15', SAS Slot: 1 phys at slot 15
GEOM: da6: the secondary GPT header is not in the last LBA.
ses12: pass159,da145 in 'Slot13', SAS Slot: 1 phys at slot 13
ses9: pass116,da105 in 'Slot16', SAS Slot: 1 phys at slot 16
ses2: pass24,da20 in 'Slot20', SAS Slot: 1 phys at slot 20
GEOM: da50: the secondary GPT header is not in the last LBA.
ses5: pass66,da59 in 'Slot16', SAS Slot: 1 phys at slot 16
ses13: pass186,da171 in 'Slot15', SAS Slot: 1 phys at slot 15
GEOM: da64: the secondary GPT header is not in the last LBA.
ses2: pass25,da21 in 'Slot21', SAS Slot: 1 phys at slot 21
ses10: pass141,da129 in 'Slot16', SAS Slot: 1 phys at slot 16
ses12: pass160,da146 in 'Slot14', SAS Slot: 1 phys at slot 14
ses9: pass117,da106 in 'Slot17', SAS Slot: 1 phys at slot 17
ses13: pass187,da172 in 'Slot16', SAS Slot: 1 phys at slot 16
GEOM: da94: the secondary GPT header is not in the last LBA.
ses5: pass67,da60 in 'Slot17', SAS Slot: 1 phys at slot 17
ses9: pass118,da107 in 'Slot18', SAS Slot: 1 phys at slot 18
GEOM: da108: the secondary GPT header is not in the last LBA.
ses10: pass142,da130 in 'Slot17', SAS Slot: 1 phys at slot 17
ses12: pass161,da147 in 'Slot15', SAS Slot: 1 phys at slot 15
ses2: pass26,da22 in 'Slot22', SAS Slot: 1 phys at slot 22
ses13: pass188,da173 in 'Slot17', SAS Slot: 1 phys at slot 17
ses9: pass119,da108 in 'Slot19', SAS Slot: 1 phys at slot 19
GEOM: da1: the secondary GPT header is not in the last LBA.
ses5: pass68,da61 in 'Slot18', SAS Slot: 1 phys at slot 18
ses9: pass120,da109 in 'Slot20', SAS Slot: 1 phys at slot 20
GEOM: da45: the secondary GPT header is not in the last LBA.
ses12: pass162,da148 in 'Slot16', SAS Slot: 1 phys at slot 16
ses12: pass163,da149 in 'Slot17', SAS Slot: 1 phys at slot 17
GEOM: da59: the secondary GPT header is not in the last LBA.
ses5: pass69,da62 in 'Slot19', SAS Slot: 1 phys at slot 19
ses2: pass27,da23 in 'Slot23', SAS Slot: 1 phys at slot 23
ses12: pass164,da150 in 'Slot18', SAS Slot: 1 phys at slot 18
ses9: pass121,da110 in 'Slot21', SAS Slot: 1 phys at slot 21
ses12: pass165,da151 in 'Slot19', SAS Slot: 1 phys at slot 19
GEOM: da89: the secondary GPT header is not in the last LBA.
ses9: pass122,da111 in 'Slot22', SAS Slot: 1 phys at slot 22
ses5: pass70,da63 in 'Slot20', SAS Slot: 1 phys at slot 20
ses5: pass71,da64 in 'Slot21', SAS Slot: 1 phys at slot 21
GEOM: da103: the secondary GPT header is not in the last LBA.
ses5: pass72,da65 in 'Slot22', SAS Slot: 1 phys at slot 22
ses12: pass166,da152 in 'Slot20', SAS Slot: 1 phys at slot 20
ses5: pass73,da66 in 'Slot23', SAS Slot: 1 phys at slot 23
ses9: pass123,da112 in 'Slot23', SAS Slot: 1 phys at slot 23
GEOM: da8: the secondary GPT header is not in the last LBA.
ses12: pass167,da153 in 'Slot21', SAS Slot: 1 phys at slot 21
GEOM: da52: the secondary GPT header is not in the last LBA.
ses12: pass168,da154 in 'Slot22', SAS Slot: 1 phys at slot 22
GEOM: da66: the secondary GPT header is not in the last LBA.
ses12: pass169,da155 in 'Slot23', SAS Slot: 1 phys at slot 23
GEOM: da96: the secondary GPT header is not in the last LBA.
GEOM: da49: the secondary GPT header is not in the last LBA.
GEOM: da93: the secondary GPT header is not in the last LBA.
GEOM: da63: the secondary GPT header is not in the last LBA.
GEOM: da107: the secondary GPT header is not in the last LBA.
GEOM: da4: the secondary GPT header is not in the last LBA.
GEOM: da48: the secondary GPT header is not in the last LBA.
GEOM: da62: the secondary GPT header is not in the last LBA.
GEOM: da92: the secondary GPT header is not in the last LBA.
GEOM: da7: the secondary GPT header is not in the last LBA.
GEOM: da51: the secondary GPT header is not in the last LBA.
GEOM: da65: the secondary GPT header is not in the last LBA.
GEOM: da61: the secondary GPT header is not in the last LBA.
GEOM: da13: the secondary GPT header is not in the last LBA.
GEOM: da2: the secondary GPT header is not in the last LBA.
GEOM: da46: the secondary GPT header is not in the last LBA.
GEOM: da60: the secondary GPT header is not in the last LBA.
GEOM: da132: the secondary GPT header is not in the last LBA.
GEOM: da110: the secondary GPT header is not in the last LBA.
GEOM: da91: the secondary GPT header is not in the last LBA.
GEOM: da19: the secondary GPT header is not in the last LBA.
GEOM: da133: the secondary GPT header is not in the last LBA.
GEOM: da109: the secondary GPT header is not in the last LBA.
GEOM: da105: the secondary GPT header is not in the last LBA.
GEOM: da43: the secondary GPT header is not in the last LBA.
GEOM: da77: the secondary GPT header is not in the last LBA.
GEOM: da23: the secondary GPT header is not in the last LBA.
GEOM: da90: the secondary GPT header is not in the last LBA.
GEOM: da139: the secondary GPT header is not in the last LBA.
GEOM: da121: the secondary GPT header is not in the last LBA.
GEOM: da17: the secondary GPT header is not in the last LBA.
GEOM: da15: the secondary GPT header is not in the last LBA.
GEOM: da28: the secondary GPT header is not in the last LBA.
GEOM: da138: the secondary GPT header is not in the last LBA.
GEOM: da55: the secondary GPT header is not in the last LBA.
GEOM: da104: the secondary GPT header is not in the last LBA.
GEOM: da14: the secondary GPT header is not in the last LBA.
GEOM: da95: the secondary GPT header is not in the last LBA.
GEOM: da20: the secondary GPT header is not in the last LBA.
GEOM: da140: the secondary GPT header is not in the last LBA.
GEOM: da68: the secondary GPT header is not in the last LBA.
GEOM: da145: the secondary GPT header is not in the last LBA.
GEOM: da72: the secondary GPT header is not in the last LBA.
GEOM: da57: the secondary GPT header is not in the last LBA.
GEOM: da78: the secondary GPT header is not in the last LBA.
GEOM: da82: the secondary GPT header is not in the last LBA.
GEOM: da16: the secondary GPT header is not in the last LBA.
GEOM: da22: the secondary GPT header is not in the last LBA.
GEOM: da67: the secondary GPT header is not in the last LBA.
GEOM: da34: the secondary GPT header is not in the last LBA.
GEOM: da122: the secondary GPT header is not in the last LBA.
GEOM: da21: the secondary GPT header is not in the last LBA.
GEOM: da134: the secondary GPT header is not in the last LBA.
GEOM: da106: the secondary GPT header is not in the last LBA.
GEOM: da120: the secondary GPT header is not in the last LBA.
GEOM: da73: the secondary GPT header is not in the last LBA.
GEOM: da81: the secondary GPT header is not in the last LBA.
GEOM: da126: the secondary GPT header is not in the last LBA.
GEOM: da84: the secondary GPT header is not in the last LBA.
GEOM: da136: the secondary GPT header is not in the last LBA.
GEOM: da165: the secondary GPT header is not in the last LBA.
GEOM: da125: the secondary GPT header is not in the last LBA.
GEOM: da166: the secondary GPT header is not in the last LBA.
GEOM: da116: the secondary GPT header is not in the last LBA.
GEOM: da74: the secondary GPT header is not in the last LBA.
GEOM: da29: the secondary GPT header is not in the last LBA.
GEOM: da18: the secondary GPT header is not in the last LBA.
GEOM: da130: the secondary GPT header is not in the last LBA.
GEOM: da155: the secondary GPT header is not in the last LBA.
GEOM: da152: the secondary GPT header is not in the last LBA.
GEOM: da71: the secondary GPT header is not in the last LBA.
GEOM: da146: the secondary GPT header is not in the last LBA.
GEOM: da70: the secondary GPT header is not in the last LBA.
GEOM: da37: the secondary GPT header is not in the last LBA.
GEOM: da85: the secondary GPT header is not in the last LBA.
GEOM: da31: the secondary GPT header is not in the last LBA.
GEOM: da69: the secondary GPT header is not in the last LBA.
GEOM: da24: the secondary GPT header is not in the last LBA.
GEOM: da128: the secondary GPT header is not in the last LBA.
GEOM: da38: the secondary GPT header is not in the last LBA.
GEOM: da147: the secondary GPT header is not in the last LBA.
GEOM: da30: the secondary GPT header is not in the last LBA.
GEOM: da129: the secondary GPT header is not in the last LBA.
GEOM: da131: the secondary GPT header is not in the last LBA.
GEOM: da164: the secondary GPT header is not in the last LBA.
GEOM: da169: the secondary GPT header is not in the last LBA.
GEOM: da27: the secondary GPT header is not in the last LBA.
GEOM: da154: the secondary GPT header is not in the last LBA.
GEOM: da117: the secondary GPT header is not in the last LBA.
GEOM: da156: the secondary GPT header is not in the last LBA.
GEOM: da115: the secondary GPT header is not in the last LBA.
GEOM: da83: the secondary GPT header is not in the last LBA.
GEOM: da163: the secondary GPT header is not in the last LBA.
GEOM: da80: the secondary GPT header is not in the last LBA.
GEOM: da101: the secondary GPT header is not in the last LBA.
GEOM: da170: the secondary GPT header is not in the last LBA.
GEOM: da114: the secondary GPT header is not in the last LBA.
GEOM: da47: the secondary GPT header is not in the last LBA.
GEOM: da118: the secondary GPT header is not in the last LBA.
GEOM: da151: the secondary GPT header is not in the last LBA.
GEOM: da113: the secondary GPT header is not in the last LBA.
GEOM: da41: the secondary GPT header is not in the last LBA.
GEOM: da150: the secondary GPT header is not in the last LBA.
GEOM: da26: the secondary GPT header is not in the last LBA.
GEOM: da135: the secondary GPT header is not in the last LBA.
GEOM: da40: the secondary GPT header is not in the last LBA.
GEOM: da153: the secondary GPT header is not in the last LBA.
GEOM: da149: the secondary GPT header is not in the last LBA.
GEOM: da127: the secondary GPT header is not in the last LBA.
GEOM: da124: the secondary GPT header is not in the last LBA.
GEOM: da159: the secondary GPT header is not in the last LBA.
GEOM: da25: the secondary GPT header is not in the last LBA.
GEOM: da39: the secondary GPT header is not in the last LBA.
GEOM: da161: the secondary GPT header is not in the last LBA.
GEOM: da160: the secondary GPT header is not in the last LBA.
GEOM: da148: the secondary GPT header is not in the last LBA.
GEOM: da42: the secondary GPT header is not in the last LBA.
GEOM: da173: the secondary GPT header is not in the last LBA.
GEOM: da158: the secondary GPT header is not in the last LBA.
GEOM: da172: the secondary GPT header is not in the last LBA.
GEOM: da36: the secondary GPT header is not in the last LBA.
GEOM: da157: the secondary GPT header is not in the last LBA.
GEOM: da171: the secondary GPT header is not in the last LBA.
GEOM: da75: the secondary GPT header is not in the last LBA.
GEOM: da12: the secondary GPT header is not in the last LBA.
GEOM: da123: the secondary GPT header is not in the last LBA.
GEOM: da35: the secondary GPT header is not in the last LBA.
GEOM: da100: the secondary GPT header is not in the last LBA.
GEOM: da174: the secondary GPT header is not in the last LBA.
GEOM: da144: the secondary GPT header is not in the last LBA.
GEOM: da168: the secondary GPT header is not in the last LBA.
GEOM: da167: the secondary GPT header is not in the last LBA.
GEOM: da56: the secondary GPT header is not in the last LBA.
GEOM: da32: the secondary GPT header is not in the last LBA.
GEOM: da137: the secondary GPT header is not in the last LBA.
GEOM: da162: the secondary GPT header is not in the last LBA.
GEOM: da79: the secondary GPT header is not in the last LBA.
GEOM: da76: the secondary GPT header is not in the last LBA.
GEOM: da119: the secondary GPT header is not in the last LBA.
GEOM: da33: the secondary GPT header is not in the last LBA.
Dual Console: Video Primary, Serial Secondary
GEOM_MULTIPATH: da33 added to disk37
GEOM_MULTIPATH: da119 added to disk48
GEOM_MULTIPATH: da76 added to disk37
GEOM_MULTIPATH: da79 added to disk31
GEOM_MULTIPATH: da162 added to disk48
GEOM_MULTIPATH: da137 added to disk6
GEOM_MULTIPATH: da32 added to disk35
GEOM_MULTIPATH: da56 added to disk14
GEOM_MULTIPATH: da167 added to disk39
GEOM_MULTIPATH: da168 added to disk31
GEOM_MULTIPATH: da144 added to disk25
GEOM_MULTIPATH: da144 is now active path in disk25
GEOM_MULTIPATH: da174 added to disk1
GEOM_MULTIPATH: da174 is now active path in disk1
GEOM_MULTIPATH: da100 added to disk12
GEOM_MULTIPATH: da35 added to disk39
GEOM_MULTIPATH: da123 added to disk40
GEOM_MULTIPATH: da12 added to disk25
GEOM_MULTIPATH: da75 added to disk35
GEOM_MULTIPATH: da171 added to disk32
GEOM_MULTIPATH: da157 added to disk42
GEOM_MULTIPATH: da36 added to disk31
GEOM_MULTIPATH: da172 added to disk34
GEOM_MULTIPATH: da158 added to disk43
GEOM_MULTIPATH: da173 added to disk36
GEOM_MULTIPATH: da42 added to disk1
GEOM_MULTIPATH: da148 added to disk17
GEOM_MULTIPATH: da160 added to disk46
GEOM_MULTIPATH: da161 added to disk45
GEOM_MULTIPATH: da39 added to disk32
GEOM_MULTIPATH: da25 added to disk42
GEOM_MULTIPATH: da159 added to disk44
GEOM_MULTIPATH: da124 added to disk39
GEOM_MULTIPATH: da127 added to disk33
GEOM_MULTIPATH: da149 added to disk18
GEOM_MULTIPATH: da153 added to disk21
GEOM_MULTIPATH: da40 added to disk34
GEOM_MULTIPATH: da135 added to disk4
GEOM_MULTIPATH: da26 added to disk43
GEOM_MULTIPATH: da150 added to disk24
GEOM_MULTIPATH: da41 added to disk36
GEOM_MULTIPATH: da113 added to disk41
GEOM_MULTIPATH: da151 added to disk23
GEOM_MULTIPATH: da118 added to disk45
GEOM_MULTIPATH: da47 added to disk5
GEOM_MULTIPATH: da114 added to disk42
GEOM_MULTIPATH: da170 added to disk33
GEOM_MULTIPATH: da101 added to disk25
GEOM_MULTIPATH: da80 added to disk38
GEOM_MULTIPATH: da163 added to disk47
GEOM_MULTIPATH: da83 added to disk34
GEOM_MULTIPATH: da115 added to disk43
GEOM_MULTIPATH: da156 added to disk41
GEOM_MULTIPATH: da117 added to disk46
GEOM_MULTIPATH: da154 added to disk20
GEOM_MULTIPATH: da27 added to disk44
GEOM_MULTIPATH: da169 added to disk38
GEOM_MULTIPATH: da164 added to disk35
GEOM_MULTIPATH: da131 added to disk1
GEOM_MULTIPATH: da129 added to disk34
GEOM_MULTIPATH: da30 added to disk48
GEOM_MULTIPATH: da147 added to disk16
GEOM_MULTIPATH: da38 added to disk33
GEOM_MULTIPATH: da128 added to disk32
GEOM_MULTIPATH: da24 added to disk41
GEOM_MULTIPATH: da69 added to disk43
GEOM_MULTIPATH: da31 added to disk47
GEOM_MULTIPATH: da85 added to disk1
GEOM_MULTIPATH: da37 added to disk38
GEOM_MULTIPATH: da70 added to disk44
GEOM_MULTIPATH: da146 added to disk15
GEOM_MULTIPATH: da71 added to disk46
GEOM_MULTIPATH: da152 added to disk22
GEOM_MULTIPATH: da155 added to disk19
GEOM_MULTIPATH: da130 added to disk36
GEOM_MULTIPATH: da18 added to disk24
GEOM_MULTIPATH: da29 added to disk45
GEOM_MULTIPATH: da74 added to disk47
GEOM_MULTIPATH: da116 added to disk44
GEOM_MULTIPATH: da166 added to disk40
GEOM_MULTIPATH: da125 added to disk31
GEOM_MULTIPATH: da165 added to disk37
GEOM_MULTIPATH: da136 added to disk5
GEOM_MULTIPATH: da84 added to disk36
GEOM_MULTIPATH: da126 added to disk38
GEOM_MULTIPATH: da81 added to disk33
GEOM_MULTIPATH: da73 added to disk48
GEOM_MULTIPATH: da120 added to disk47
GEOM_MULTIPATH: da106 added to disk18
GEOM_MULTIPATH: da134 added to disk3
GEOM_MULTIPATH: da21 added to disk21
GEOM_MULTIPATH: da122 added to disk37
GEOM_MULTIPATH: da34 added to disk40
GEOM_MULTIPATH: da67 added to disk41
GEOM_MULTIPATH: da22 added to disk20
GEOM_MULTIPATH: da16 added to disk17
GEOM_MULTIPATH: da82 added to disk32
GEOM_MULTIPATH: da78 added to disk39
GEOM_MULTIPATH: da57 added to disk15
GEOM_MULTIPATH: da72 added to disk45
GEOM_MULTIPATH: da145 added to disk14
GEOM_MULTIPATH: da68 added to disk42
GEOM_MULTIPATH: da140 added to disk9
GEOM_MULTIPATH: da20 added to disk22
GEOM_MULTIPATH: da95 added to disk7
GEOM_MULTIPATH: da14 added to disk15
GEOM_MULTIPATH: da104 added to disk16
GEOM_MULTIPATH: da55 added to disk25
GEOM_MULTIPATH: da138 added to disk7
GEOM_MULTIPATH: da28 added to disk46
GEOM_MULTIPATH: da15 added to disk16
GEOM_MULTIPATH: da17 added to disk18
GEOM_MULTIPATH: da121 added to disk35
GEOM_MULTIPATH: da139 added to disk8
GEOM_MULTIPATH: da90 added to disk2
GEOM_MULTIPATH: da23 added to disk19
GEOM_MULTIPATH: da77 added to disk40
GEOM_MULTIPATH: da43 added to disk1-247915812
GEOM_MULTIPATH: da105 added to disk17
GEOM_MULTIPATH: da109 added to disk22
GEOM_MULTIPATH: da133 added to disk2
GEOM_MULTIPATH: da19 added to disk23
GEOM_MULTIPATH: da91 added to disk3
GEOM_MULTIPATH: da110 added to disk21
GEOM_MULTIPATH: da132 added to disk1-247915812
GEOM_MULTIPATH: da60 added to disk18
GEOM_MULTIPATH: da46 added to disk4
GEOM_MULTIPATH: da2 added to disk3
GEOM_MULTIPATH: da13 added to disk14
GEOM_MULTIPATH: da61 added to disk24
GEOM_MULTIPATH: da65 added to disk20
GEOM_MULTIPATH: da51 added to disk9
GEOM_MULTIPATH: da7 added to disk8
GEOM_MULTIPATH: da92 added to disk4
GEOM_MULTIPATH: da62 added to disk23
GEOM_MULTIPATH: da48 added to disk6
GEOM_MULTIPATH: da4 added to disk5
GEOM_MULTIPATH: da107 added to disk24
GEOM_MULTIPATH: da63 added to disk22
GEOM_MULTIPATH: da93 added to disk5
GEOM_MULTIPATH: da49 added to disk7
GEOM_MULTIPATH: da96 added to disk8
GEOM_MULTIPATH: da66 added to disk19
GEOM_MULTIPATH: da52 added to disk10
GEOM_MULTIPATH: da8 added to disk9
GEOM_MULTIPATH: da103 added to disk15
GEOM_MULTIPATH: da89 added to disk1-247915812
GEOM_MULTIPATH: da59 added to disk17
GEOM_MULTIPATH: da45 added to disk3
GEOM_MULTIPATH: da1 added to disk2
GEOM_MULTIPATH: da108 added to disk23
GEOM_MULTIPATH: da94 added to disk6
GEOM_MULTIPATH: da64 added to disk21
GEOM_MULTIPATH: da50 added to disk8
GEOM_MULTIPATH: da6 added to disk7
GEOM_MULTIPATH: da141 added to disk10
GEOM_MULTIPATH: da97 added to disk9
GEOM_MULTIPATH: da111 added to disk20
GEOM_MULTIPATH: da53 added to disk11
GEOM_MULTIPATH: da9 added to disk10
GEOM_MULTIPATH: da102 added to disk14
GEOM_MULTIPATH: da58 added to disk16
GEOM_MULTIPATH: da44 added to disk2
GEOM_MULTIPATH: da0 added to disk1-247915812
GEOM_MULTIPATH: da112 added to disk19
GEOM_MULTIPATH: da142 added to disk11
GEOM_MULTIPATH: da98 added to disk10
GEOM_MULTIPATH: da54 added to disk12
GEOM_MULTIPATH: da10 added to disk11
GEOM_MULTIPATH: da143 added to disk12
GEOM_MULTIPATH: da99 added to disk11
GEOM_MULTIPATH: da11 added to disk12
GEOM_MULTIPATH: da5 added to disk6
GEOM_MULTIPATH: da3 added to disk4
gcs8 commented 4 months ago

@dak180 maybe I can add a lower effort "fix", in the config add the ability to sort the table? aka sort by RPM or Capacity or SMART Status, or whatever? Least then the simular things will be grouped togeather. Though, as long as my list of disks is and the email cutoff, would want a if/then or a try catch if smart status = failed put that at the top of the list as an override?

dak180 commented 4 months ago

maybe I can add a lower effort "fix", in the config add the ability to sort the table? aka sort by RPM or Capacity or SMART Status, or whatever?

@gcs8 That would be difficult; the sort has already happened at that point and data has already been written out to the file by the time that info is gathered.

gcs8 commented 4 months ago

@dak180 well damn, guess I will go pound sand then.

dak180 commented 4 months ago

@gcs8 Hopefully the basic presort will help the order for you.

gcs8 commented 4 months ago

@dak180 hey, just glad you responded, thanks for your time and effort.

gcs8 commented 4 months ago

Oh, @dak180 you got a PayPal or something, I want to toss you some cash for your time and quick turn around.

dak180 commented 4 months ago

@dak180 hey, just glad you responded, thanks for your time and effort.

If you could send me a dumpfile once you upgrade to a version that supports smartmontools 7.4+ I would appreciate seeing how all of you sas drive report.

you got a PayPal

You can send it to dak180@users.sourceforge.net; thank you ☺️

gcs8 commented 4 months ago

If you could send me a dumpfile once you upgrade to a version that supports smartmontools 7.4+ I would appreciate seeing how all of you sas drive report.

Are you thinking that will be in a TrueNAS Core version for 13.3?

You can send it to dak180@users.sourceforge.net; thank you ☺️

did thing

dak180 commented 4 months ago

Are you thinking that will be in a TrueNAS Core version for 13.3?

According to ix, maybe sooner for scale.

JoeSchmuck commented 4 months ago

While you are at it, @gcs8 could you also send me three files please for one of your multipath drives and the pool. smartctl -x --json=u /dev/daX so I have both halves of your drive, also zpool -v status. Please send to joeschmuck2023@hotmail.com and your email address will not be shared. I want to make sure I also capture Multipath handling properly.