Skip to content

Commit

Permalink
Fix dashboard rendering (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
xorxsan authored Sep 7, 2021
1 parent 872fbf1 commit b59fd79
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dashboards.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resource "newrelic_one_dashboard" "dashboard" {
title = "Latency (seconds)"
row = 1
column = 1
width = 3
width = 12
nrql_query {
query = <<-EOF
SELECT
Expand All @@ -33,7 +33,7 @@ resource "newrelic_one_dashboard" "dashboard" {
title = "Traffic (requests per minute)"
row = 2
column = 1
width = 1
width = 5
nrql_query {
query = <<-EOF
SELECT rate(count(*), 1 minute) AS 'Requests per minute'
Expand All @@ -49,8 +49,8 @@ resource "newrelic_one_dashboard" "dashboard" {
widget_line {
title = "Errors"
row = 2
column = 2
width = 2
column = 6
width = 7
nrql_query {
query = <<-EOF
SELECT
Expand Down

0 comments on commit b59fd79

Please sign in to comment.