Skip to content

Commit

Permalink
fix: Added missing open parens (#96)
Browse files Browse the repository at this point in the history
* fix: Added missing open paren

Added missing open paren in the select clause of infra.awskinesisdeliverystream.getRecordsThroughput

* fix: another missing open paren
  • Loading branch information
rcrocker authored Feb 23, 2021
1 parent 6cd0bc6 commit 110e25e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions definitions/infra-awskinesisdeliverystream/golden_metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ putThroughput:
getThroughput:
title: Bytes out per sec
query:
select: rate(sum(`provider.deliveryToElasticsearchBytes.Sum`) + sum(`provider.deliveryToS3Bytes.Sum`)
select: rate((sum(`provider.deliveryToElasticsearchBytes.Sum`) + sum(`provider.deliveryToS3Bytes.Sum`)
+ sum(`provider.deliveryToRedshiftBytes.Sum`)), 1 second)
from: QueueSample
where: provider='KinesisDeliveryStream'
Expand All @@ -26,7 +26,7 @@ putRecordThroughput:
getRecordsThroughput:
title: Records out per sec
query:
select: rate(sum(`provider.deliveryToElasticsearchRecords.Sum`) + sum(`provider.deliveryToS3Records.Sum`)
select: rate((sum(`provider.deliveryToElasticsearchRecords.Sum`) + sum(`provider.deliveryToS3Records.Sum`)
+ sum(`provider.deliveryToRedshiftRecords.Sum`)), 1 second)
from: QueueSample
where: provider='KinesisDeliveryStream'
Expand Down

0 comments on commit 110e25e

Please sign in to comment.