mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
12 lines
477 B
Plaintext
12 lines
477 B
Plaintext
|
table_name("system_controls")
|
||
|
description("sysctl names, values, and settings information.")
|
||
|
schema([
|
||
|
Column("name", TEXT, "Full sysctl MIB name"),
|
||
|
Column("oid", TEXT, "Control MIB"),
|
||
|
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")
|