Created
October 27, 2014 18:14
-
-
Save brianr/82ff15b17c839ff14748 to your computer and use it in GitHub Desktop.
Rollbar RQL: Search for occurrences in last 24 hours by url pattern
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
Thank you! <3