2023-02-23 14:35:38 +00:00
|
|
|
-- Return the list of watched file events (must be configured)
|
|
|
|
--
|
2024-09-24 19:36:03 +00:00
|
|
|
-- tags: postmortem events
|
2023-02-23 14:35:38 +00:00
|
|
|
-- platform: posix
|
2023-05-12 20:35:00 +00:00
|
|
|
-- interval: 900
|
2024-02-16 22:21:00 +00:00
|
|
|
SELECT
|
|
|
|
*
|
|
|
|
FROM
|
|
|
|
file_events
|
|
|
|
WHERE
|
|
|
|
time > (strftime('%s', 'now') -900)
|