mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
96e0cd2fd6
Summary: Fix minor typo in description. Moved original PR (#5380) from master to experimental Pull Request resolved: https://github.com/facebook/osquery/pull/5388 Differential Revision: D13781801 Pulled By: guliashvili fbshipit-source-id: d57d5e45c1597c6d640dbf908a42ced4f4bbf54c
13 lines
574 B
Plaintext
13 lines
574 B
Plaintext
table_name("osquery_extensions")
|
|
description("List of active osquery extensions.")
|
|
schema([
|
|
Column("uuid", BIGINT, "The transient ID assigned for communication"),
|
|
Column("name", TEXT, "Extension's name"),
|
|
Column("version", TEXT, "Extension's version"),
|
|
Column("sdk_version", TEXT, "osquery SDK version used to build the extension"),
|
|
Column("path", TEXT, "Path of the extenion's domain socket or library path"),
|
|
Column("type", TEXT, "SDK extension type: extension or module")
|
|
])
|
|
attributes(utility=True)
|
|
implementation("osquery@genOsqueryExtensions")
|