osquery-1/specs/utility/osquery_flags.table
2015-07-15 23:23:42 -07:00

13 lines
464 B
Plaintext

table_name("osquery_flags")
description("Configurable flags that modify osquery's behavior.")
schema([
Column("name", TEXT, "Flag name"),
Column("type", TEXT, "Flag type"),
Column("description", TEXT, "Flag description"),
Column("default_value", TEXT, "Flag default value"),
Column("value", TEXT, "Flag value"),
Column("shell_only", INTEGER, "Is the flag shell only?"),
])
attributes(utility=True)
implementation("osquery@genOsqueryFlags")