Skip to content

Commit

Permalink
Account for db_to_db backup logs
Browse files Browse the repository at this point in the history
  • Loading branch information
asteel-gsa committed Nov 20, 2024
1 parent bed2190 commit 094b87d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/shared/modules/newrelic/logreview.tf
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ resource "newrelic_one_dashboard" "log_review_dashboard" {
height = 3

nrql_query {
query = "SELECT `timestamp`,`message` FROM Log WHERE allColumnSearch('STARTUP_CHECK', insensitive: true) AND `message` LIKE '%db_to_s3%' AND `message` LIKE '%PASS%' AND `tags.space_name` = '${var.cf_space_name}' SINCE 2 hours ago"
query = "SELECT `timestamp`,`message` FROM Log WHERE allColumnSearch('STARTUP_CHECK', insensitive: true) AND `message` LIKE '%db_to_s3%' OR `message` LIKE '%db_to_db%' AND `message` LIKE '%PASS%' AND `tags.space_name` = '${var.cf_space_name}' SINCE 2 hours ago"
}
legend_enabled = true
}
Expand Down

0 comments on commit 094b87d

Please sign in to comment.