osquery-1/specs/utility/osquery_schedule.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

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