Skip to content

Commit

Permalink
Remove unnecessary columns
Browse files Browse the repository at this point in the history
  • Loading branch information
asteel-gsa committed Aug 23, 2024
1 parent cb4317d commit f6ee380
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/shared/modules/newrelic/logreview.tf
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ resource "newrelic_one_dashboard" "log_review_dashboard" {
height = 3

nrql_query {
query = "SELECT `message`,`newrelic.source`,`tags.app_name`,`tags.space_name` FROM Log WHERE `tags.space_name` = '${var.cf_space_name}' AND allColumnSearch('CHECKTABLESPASS', insensitive: true) SINCE 7 days ago"
query = "SELECT `message` FROM Log WHERE `tags.space_name` = '${var.cf_space_name}' AND allColumnSearch('CHECKTABLESPASS', insensitive: true) SINCE 7 days ago"
}

legend_enabled = true
Expand Down Expand Up @@ -262,7 +262,7 @@ resource "newrelic_one_dashboard" "log_review_dashboard" {
height = 3

nrql_query {
query = "SELECT `message`,`newrelic.source`,`tags.app_name`,`tags.space_name` FROM Log WHERE `tags.space_name` = '${var.cf_space_name}' AND allColumnSearch('DBMISSINGTABLES', insensitive: true) SINCE 7 days ago"
query = "SELECT `message` FROM Log WHERE `tags.space_name` = '${var.cf_space_name}' AND allColumnSearch('DBMISSINGTABLES', insensitive: true) SINCE 7 days ago"
}

legend_enabled = true
Expand Down

0 comments on commit f6ee380

Please sign in to comment.