Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@brianr
Created October 27, 2014 18:14
Show Gist options
  • Star 11 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save brianr/82ff15b17c839ff14748 to your computer and use it in GitHub Desktop.
Save brianr/82ff15b17c839ff14748 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%'
@igabesz
Copy link

igabesz commented May 19, 2021

Thank you! <3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment