osquery-1/specs/utility/osquery_extensions.table
aporlebeke@gmail.com 96e0cd2fd6 Fix typo: "Extensions" (#5388)
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
2019-01-23 09:50:49 -08:00

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")