osquery-1/specs/crontab.table

14 lines
608 B
Plaintext
Raw Normal View History

table_name("crontab")
2014-11-11 16:35:25 +00:00
description("Line parsed values from system and user cron/tab.")
schema([
2014-11-12 18:27:44 +00:00
Column("event", TEXT, "The job @event name (rare)"),
2015-02-10 04:13:11 +00:00
Column("minute", TEXT, "The exact minute for the job"),
Column("hour", TEXT, "The hour of the day for the job"),
Column("day_of_month", TEXT, "The day of the month for the job"),
Column("month", TEXT, "The month of the year for the job"),
Column("day_of_week", TEXT, "The day of the week for the job"),
2014-11-12 18:27:44 +00:00
Column("command", TEXT, "Raw command string"),
Column("path", TEXT, "File parsed"),
])
2014-11-11 16:35:25 +00:00
implementation("crontab@genCronTab")