mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 02:18:53 +00:00
19 lines
511 B
Plaintext
19 lines
511 B
Plaintext
table_name("pci_devices")
|
|
description("PCI devices that are active on the host system.")
|
|
schema([
|
|
Column("pci_slot", TEXT),
|
|
Column("pci_class", TEXT),
|
|
Column("driver", TEXT),
|
|
Column("vendor", TEXT),
|
|
Column("vendor_id", TEXT),
|
|
Column("model", TEXT),
|
|
Column("model_id", TEXT),
|
|
|
|
# Optional columns
|
|
#Column("subsystem", TEXT),
|
|
#Column("express", INTEGER),
|
|
#Column("thunderbolt", INTEGER),
|
|
#Column("removable", INTEGER),
|
|
])
|
|
implementation("pci_devices@genPCIDevices")
|