mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 09:58:54 +00:00
a105924804
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.
16 lines
686 B
Plaintext
16 lines
686 B
Plaintext
table_name("osquery_info")
|
|
description("Top level information about the running version of osquery.")
|
|
schema([
|
|
Column("pid", INTEGER, "Process (or thread) ID"),
|
|
Column("version", TEXT, "osquery toolkit version"),
|
|
Column("config_md5", TEXT, "md5 hash of the working configuration"),
|
|
Column("config_path", TEXT,
|
|
"Optional: path to filesystem config plugin content"),
|
|
Column("extensions", TEXT, "osquery extensions status"),
|
|
Column("build_platform", TEXT, "osquery toolkit build platform"),
|
|
Column("build_distro", TEXT,
|
|
"osquery toolkit platform distribution name (os version)"),
|
|
])
|
|
attributes(utility=True)
|
|
implementation("osquery@genOsqueryInfo")
|