Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
crontab
Line parsed values from system and user cron/tab.
Column | Type | Description |
---|---|---|
command | text | Raw command string |
day_of_month | text | The day of the month for the job |
day_of_week | text | The day of the week for the job |
event | text | The job @event name (rare) |
hour | text | The hour of the day for the job |
minute | text | The exact minute for the job |
month | text | The month of the year for the job |
path | text | File parsed |
pid_with_namespace | integer | Pids that contain a namespace Only available on Windows |
List commands scheduled for execution as cron jobs
SELECT * FROM crontab;