nvme-telem 0.3.0

NVMe S.M.A.R.T. / telemetry collection for Linux
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! NVMe telemetry and data collection.

pub mod io;
pub mod ocp;
pub mod telemetry;
pub mod types;

// Re-export public types
pub use types::*;

// Re-export high-level telemetry API (what most users should use)
pub use telemetry::*;

// Re-export ocp functions
pub use ocp::*;