mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 01:55:20 +00:00
10 lines
344 B
Plaintext
10 lines
344 B
Plaintext
table_name("md_drives")
|
|
description("Drive devices used for Software RAID.")
|
|
schema([
|
|
Column("md_device_name", TEXT, "md device name"),
|
|
Column("drive_name", TEXT, "Drive device name"),
|
|
Column("slot", INTEGER, "Slot position of disk"),
|
|
Column("state", TEXT, "State of the drive"),
|
|
])
|
|
implementation("system/md_stat@genMDDrives")
|