Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abelorian/96fcbb44503dc71eb83cbacc00400deb to your computer and use it in GitHub Desktop.
Save abelorian/96fcbb44503dc71eb83cbacc00400deb to your computer and use it in GitHub Desktop.
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%'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment