Created
September 15, 2023 16:24
-
-
Save tdeedlesATX/a61a535a675d5a178b838ee70d139027 to your computer and use it in GitHub Desktop.
deploy levels examples
This file contains hidden or 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
{ | |
"prod": { | |
"canary": { | |
"rollbackOverrideWaitSeconds": 300, | |
"healthChecks": { | |
"delaySeconds": 1800, | |
"rollbar": { | |
"maximumErrorCount": 0 | |
}, | |
"tracker": { | |
"minimumEventCount": 0 | |
} | |
} | |
}, | |
"master": { | |
"rollbackOverrideWaitSeconds": 300, | |
"healthChecks": { | |
"delaySeconds": 600, | |
"rollbar": { | |
"maximumErrorCount": 0 | |
}, | |
"tracker": { | |
"minimumEventCount": 1, | |
"browserThresholds": { | |
"Chrome": 30, | |
"Safari": 20, | |
"Firefox": 2 | |
}, | |
"apiThresholds": { | |
"urls": { | |
"GET /api/v4/loans/.*": [10, "WARN"], | |
"GET /api/v3/loans/.*": 3, | |
"https://www.affirm.com/api/v3/virtual_cards/.active=1": [7, "ERROR"] | |
}, | |
"browsers": { | |
"Chrome": 0.4, | |
"Safari": [0.3, "WARN"] | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment