Skip to content

Instantly share code, notes, and snippets.

View avelis's full-sized avatar

Andrew Velis avelis

View GitHub Profile
@avelis
avelis / gist:bd8cea804328ff2ab5aaf93200ce3dab
Created April 25, 2023 21:00 — forked from brianr/gist:82ff15b17c839ff14748
Rollbar RQL: Search for occurrences in last 24 hours by url pattern
select *
from item_occurrence
where timestamp >= unix_timestamp() - 24 * 60 * 60
and request.url like '%mydomain.com%'