osquery-1/specs/system_controls.table
Teddy Reed c2be670806 Table results caching
1. Table implementations (spec files) can mark the table as 'cachable'.
2. Cached results depend on the shortest/quickest interval of scheduled
queries that act on results of the table.
3. The table API generator blocks caching on index/additional/required
table column options.
2015-11-14 15:57:23 -08:00

12 lines
501 B
Plaintext

table_name("system_controls")
description("sysctl names, values, and settings information.")
schema([
Column("name", TEXT, "Full sysctl MIB name", index=True),
Column("oid", TEXT, "Control MIB", index=True),
Column("subsystem", TEXT, "Subsystem ID, control type"),
Column("current_value", TEXT, "Value of setting"),
Column("config_value", TEXT, "The MIB value set in /etc/sysctl.conf"),
Column("type", TEXT, "Data type"),
])
implementation("system_controls@genSystemControls")