Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: adjust IdP CloudWatch alarm error filter #849

Merged
merged 1 commit into from
Sep 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions aws/alarms/locals.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
locals {
# Define the pattern that will be used to detect errors in the IdP logs
# Any log message that contains a word from `idp_error` and does not contain a word from `idp_error_ignore` will be detected
idp_error = ["level=error"]
idp_error_ignore = ["context canceled"]
idp_error = [
"level=error",
"level=ERROR"
]
idp_error_ignore = [
"context canceled", # user cancels request before it completes
"Errors.AuthNKey.NotFound" # user requests an access token with an invalid key
]
idp_error_pattern = "[(w1=\"*${join("*\" || w1=\"*", local.idp_error)}*\") && w1!=\"*${join("*\" && w1!=\"*", local.idp_error_ignore)}*\"]"

lambda_submission_expect_invocation_in_period = var.env == "production" ? var.lambda_submission_expect_invocation_in_period : 60 * 24 # expect once a day in non-prod envs
Expand Down