Skip to content

Instantly share code, notes, and snippets.

@andrewchilds
Last active September 10, 2021 16:22
Show Gist options
  • Select an option

  • Save andrewchilds/11831dc82093e53d41af to your computer and use it in GitHub Desktop.

Select an option

Save andrewchilds/11831dc82093e53d41af to your computer and use it in GitHub Desktop.
Rollbar RQL Cheat Sheet
# List users by average and maximum session length.
SELECT person, max(client.runtime_ms), avg(client.runtime_ms)
FROM item_occurrence
GROUP BY 1
ORDER BY 2 DESC
# List active date ranges for each deploy.
SELECT client.javascript.code_version, min(timestamp), max(timestamp)
FROM item_occurrence
GROUP BY 1
@fgilio
Copy link

fgilio commented Mar 25, 2020

Thanks!

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