Skip to content

Commit

Permalink
Merge pull request #2354 from falcon-tech/bugfix/newrelic-quickstarts…
Browse files Browse the repository at this point in the history
…-issue_#2353

Fix incorrect attribute in NRQL FACET for AWS Lambda dashboard
  • Loading branch information
mdumpati authored Apr 4, 2024
2 parents 9ed9377 + d2b93a7 commit 6843ec9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dashboards/aws-lambda/aws-lambda.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"nrqlQueries": [
{
"accountId": 0,
"query": "SELECT average(`aws.lambda.Duration.byFunction`) / 1000 FROM Metric SINCE 1 hour ago UNTIL 6 minutes ago TIMESERIES AUTO FACET `aws.lambda.resource`"
"query": "SELECT average(`aws.lambda.Duration.byFunction`) / 1000 FROM Metric SINCE 1 hour ago UNTIL 6 minutes ago TIMESERIES AUTO FACET `aws.lambda.FunctionName`"
}
]
}
Expand Down Expand Up @@ -56,7 +56,7 @@
"nrqlQueries": [
{
"accountId": 0,
"query": "SELECT sum(`aws.lambda.Invocations.byFunction`) FROM Metric SINCE 1 hour ago UNTIL 6 minutes ago TIMESERIES AUTO FACET `aws.lambda.resource`"
"query": "SELECT sum(`aws.lambda.Invocations.byFunction`) FROM Metric SINCE 1 hour ago UNTIL 6 minutes ago TIMESERIES AUTO FACET `aws.lambda.FunctionName`"
}
]
}
Expand All @@ -76,7 +76,7 @@
"nrqlQueries": [
{
"accountId": 0,
"query": "SELECT sum(`aws.lambda.Throttles.byFunction`) FROM Metric SINCE 1 hour ago UNTIL 6 minutes ago TIMESERIES AUTO FACET `aws.lambda.resource`"
"query": "SELECT sum(`aws.lambda.Throttles.byFunction`) FROM Metric SINCE 1 hour ago UNTIL 6 minutes ago TIMESERIES AUTO FACET `aws.lambda.FunctionName`"
}
]
}
Expand All @@ -96,7 +96,7 @@
"nrqlQueries": [
{
"accountId": 0,
"query": "SELECT sum(`aws.lambda.Errors.byFunction`) FROM Metric SINCE 1 hour ago UNTIL 6 minutes ago TIMESERIES AUTO FACET `aws.lambda.resource`"
"query": "SELECT sum(`aws.lambda.Errors.byFunction`) FROM Metric SINCE 1 hour ago UNTIL 6 minutes ago TIMESERIES AUTO FACET `aws.lambda.FunctionName`"
}
]
}
Expand Down

0 comments on commit 6843ec9

Please sign in to comment.