Skip to content

Commit

Permalink
docs: standardize account_id format in a few docs (#2516)
Browse files Browse the repository at this point in the history
  • Loading branch information
smcavallo authored Dec 19, 2023
1 parent 0b91527 commit baf5db2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions website/docs/r/nrql_alert_condition.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ resource "newrelic_alert_policy" "foo" {
}
resource "newrelic_nrql_alert_condition" "foo" {
account_id = <Your Account ID>
account_id = 12345678
policy_id = newrelic_alert_policy.foo.id
type = "static"
name = "foo"
Expand Down Expand Up @@ -150,7 +150,7 @@ resource "newrelic_alert_policy" "foo" {
resource "newrelic_nrql_alert_condition" "foo" {
type = "baseline"
account_id = <Your Account ID>
account_id = 12345678
name = "foo"
policy_id = newrelic_alert_policy.foo.id
description = "Alert when transactions are taking too long"
Expand Down Expand Up @@ -213,7 +213,7 @@ resource "newrelic_alert_policy" "foo" {
}
resource "newrelic_nrql_alert_condition" "foo" {
account_id = <Your Account ID>
account_id = 12345678
policy_id = newrelic_alert_policy.foo.id
type = "static"
name = "foo"
Expand Down
6 changes: 3 additions & 3 deletions website/docs/r/one_dashboard.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ widget_line {
height = 3
nrql_query {
account_id = <Another Account ID>
account_id = Another_Account_ID
query = "FROM Transaction SELECT average(duration) FACET appName"
}
Expand Down Expand Up @@ -409,11 +409,11 @@ resource "newrelic_one_dashboard" "multi_page_dashboard" {
column = 1
width = 12
nrql_query {
account_id = <First Account ID>
account_id = First_Account_ID
query = "FROM Metric SELECT rate(count(apm.service.transaction.duration), 1 minute) as 'First Account Throughput' TIMESERIES"
}
nrql_query {
account_id = <Second Account ID>
account_id = Second_Account_ID
query = "FROM Metric SELECT rate(count(apm.service.transaction.duration), 1 minute) as 'Second Account Throughput' TIMESERIES"
}
y_axis_left_zero = false
Expand Down

0 comments on commit baf5db2

Please sign in to comment.