hdd: instruments for querying ATA and SCSI disks

Documentation.

This is work in progress.

Why?

Mainly because I was disappointed in all the available options for putting SMART and SCSI log info into various monitoring systems.

How?

Prerequisites

This crate can be built on Rust >= 1.21.

Building CLI tool

sh git clone https://github.com/vthriller/hdd-rs.git cd hdd-rs cargo build --release --features='bin serializable' --bin=hdd sudo ./target/release/hdd /dev/sda attrs --json

(Sorry if that looks complicated.)

You can build static binary if, say, you want it for remote GNU/Linux system that runs older version of glibc:

Using library in your code

Put this into your Cargo.toml: toml [dependencies] hdd = "0.10"

What's supported?

Platforms and transports:

SCSI/ATA translation is also supported.

¹ Note that in Linux, ATA is only supported through SAT, although SG_IO kindly emulates that for SATA (and, possibly, PATA?) disks for us.

Features:

To Do

Acknowledgements

Here goes obligatory mention of smartmontools contributors who laid foundations of what this crate currently is.

License

This crate is distributed under the terms of Mozilla Public License version 2.0.