2023-02-23 14:35:38 +00:00
|
|
|
-- Return the list of socket events
|
|
|
|
--
|
2024-09-24 19:36:03 +00:00
|
|
|
-- tags: postmortem events extra
|
2023-05-12 14:49:50 +00:00
|
|
|
-- platform: posix
|
2023-05-12 20:17:10 +00:00
|
|
|
-- interval: 600
|
2023-05-08 17:20:47 +00:00
|
|
|
SELECT
|
|
|
|
*
|
|
|
|
FROM
|
2023-05-12 20:26:44 +00:00
|
|
|
socket_events
|
2024-02-16 22:21:00 +00:00
|
|
|
WHERE
|
|
|
|
time > (strftime('%s', 'now') -600)
|