mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-06 09:35:20 +00:00
12 lines
489 B
Plaintext
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")
|