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

12 lines
489 B
Plaintext

table_name("osquery_registry")
description("List the osquery registry plugins.")
schema([
Column("registry", TEXT, "Name of the osquery registry"),
Column("name", TEXT, "Name of the plugin item"),
Column("owner_uuid", INTEGER, "Extension route UUID (0 for core)"),
Column("internal", INTEGER, "1 If the plugin is internal else 0"),
Column("active", INTEGER, "1 If this plugin is active else 0"),
])
attributes(utility=True)
implementation("osquery@genOsqueryRegistry")