osquery-1/specs/utility/osquery_extensions.table
Teddy Reed a105924804 Move specs to a top-level path, add query examples
1. Example queries will run with an (optional) integration test.
2. Fix bad accesses with OS X package BOMs
3. Move spec files from ./osquery/tables/specs to ./specs
4. Remove server parsers (netlib) from client builds.
2015-06-03 10:39:05 -07:00

13 lines
573 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, "Extenion'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")