osquery-1/osquery/tables/specs/x/acpi_tables.table

9 lines
283 B
Plaintext
Raw Normal View History

2015-01-16 05:37:02 +00:00
table_name("acpi_tables")
2015-02-05 05:47:02 +00:00
description("Current ACPI tables")
2015-01-16 05:37:02 +00:00
schema([
2015-02-05 05:47:02 +00:00
Column("name", TEXT, "ACPI table name"),
Column("size", INTEGER, "Size of compiled table data"),
Column("md5", TEXT, "MD5 hash of table content"),
2015-01-16 05:37:02 +00:00
])
implementation("system/acpi_tables@genACPITables")