mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 02:18:53 +00:00
18 lines
879 B
Plaintext
18 lines
879 B
Plaintext
table_name("system_info")
|
|
description("System information for identification.")
|
|
schema([
|
|
Column("hostname", TEXT, "Network hostname including domain"),
|
|
Column("uuid", TEXT, "Unique ID provided by the system"),
|
|
Column("cpu_type", TEXT, "CPU type"),
|
|
Column("cpu_subtype", TEXT, "CPU subtype"),
|
|
Column("cpu_brand", TEXT, "CPU brand string"),
|
|
Column("cpu_physical_cores", INTEGER, "Max number of CPU physical cores"),
|
|
Column("cpu_logical_cores", INTEGER, "Max number of CPU logical cores"),
|
|
Column("physical_memory", BIGINT, "Total physical memory in bytes"),
|
|
Column("hardware_model", TEXT, "Hardware model string"),
|
|
Column("hardware_serial", TEXT,
|
|
"System serial number frequently used for asset tracking"),
|
|
Column("computer_name", TEXT, "Friendly computer name (optional)"),
|
|
])
|
|
implementation("system/system_info@genSystemInfo")
|