Last active
June 25, 2020 02:04
-
-
Save honewatson/b7579af4df466376bf9324228f45a9c2 to your computer and use it in GitHub Desktop.
New Relic SRE SLI Availability % percentage proportion insights
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 (100 - (filter(count(*), WHERE (httpResponseCode = '429') OR httpResponseCode > '499')/count(*)*100)) as 'Success (%)' | |
FROM Transaction | |
WHERE httpResponseCode IS NOT NULL | |
SINCE 30 days ago |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment