We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e233c8e commit db30467Copy full SHA for db30467
src/ServiceControl.Transports.SQS/AmazonSQSQuery.cs
@@ -215,12 +215,16 @@ public override async IAsyncEnumerable<QueueThroughput> GetThroughputPerDay(IBro
215
Namespace = "AWS/SQS",
216
MetricName = "NumberOfMessagesDeleted",
217
StartTime = startUtc,
218
- EndTime = endUtc, // exclusive
+ EndTime = endUtc, // exclusive
219
Period = SecondsInDay,
220
Statistics = ["Sum"],
221
- Dimensions = [
222
- new Dimension { Name = "QueueName", Value = brokerQueue.QueueName }
223
- ],
+ Dimensions =
+ [
+ new Dimension
224
+ {
225
+ Name = "QueueName", Value = brokerQueue.QueueName
226
+ }
227
+ ]
228
};
229
230
var resp = await cloudWatch!.GetMetricStatisticsAsync(req, cancellationToken);
0 commit comments