osquery-1/specs/system_info.table

20 lines
1.0 KiB
Plaintext
Raw Normal View History

2015-08-25 23:26:57 +00:00
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, contains vendor and model"),
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_vendor", TEXT, "Hardware or board vendor"),
Column("hardware_model", TEXT, "Hardware or board model"),
Column("hardware_version", TEXT, "Hardware or board version"),
Column("hardware_serial", TEXT, "Device or board serial number"),
Column("computer_name", TEXT, "Friendly computer name (optional)"),
2017-06-02 23:15:50 +00:00
Column("local_hostname", TEXT, "Local hostname (optional)"),
2015-08-25 23:26:57 +00:00
])
implementation("system/system_info@genSystemInfo")