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
862 B
Plaintext
16 lines
862 B
Plaintext
table_name("osquery_schedule")
|
|
description("Information about the current queries that are scheduled in osquery.")
|
|
schema([
|
|
Column("name", TEXT, "The given name for this query"),
|
|
Column("query", TEXT, "The exact query to run"),
|
|
Column("interval", INTEGER, "The interval in seconds to run this query, not an exact interval"),
|
|
Column("executions", BIGINT, "Number of times the query was executed"),
|
|
Column("output_size", BIGINT, "Total number of bytes generated by the query"),
|
|
Column("wall_time", BIGINT, "Total wall time spent executing"),
|
|
Column("user_time", BIGINT, "Total user time spent executing"),
|
|
Column("system_time", BIGINT, "Total system time spent executing"),
|
|
Column("average_memory", BIGINT, "Average private memory left after executing"),
|
|
])
|
|
attributes(utility=True)
|
|
implementation("osquery@genOsquerySchedule")
|