Skip to content

Commit aa248cf

Browse files
authored
Cloudwatch metrics: fix uppercase for metrics and prepare 0.38.7 (#252)
* Cloudwatch metrics: fix uppercase for metrics * Prepare 0.38.7
1 parent 83bf544 commit aa248cf

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## 0.38.7
6+
7+
- Cloudwatch metrics: fix uppercase for metrics in [#252](https://github.com/grafana/grafana-aws-sdk/pull/252)
8+
59
## 0.38.6
610

711
- Fix: use configured externalID when not using Grafana Assume Role by @njvrzm in [#248](https://github.com/grafana/grafana-aws-sdk/pull/248)

pkg/cloudWatchConsts/metrics.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1378,8 +1378,8 @@ var NamespaceMetricsMap = map[string][]string{
13781378
"DeadLetterInvocations",
13791379
"Events",
13801380
"FailedInvocations",
1381-
"IngestiontoInvocationCompleteLatency",
1382-
"IngestiontoInvocationStartLatency",
1381+
"IngestionToInvocationCompleteLatency",
1382+
"IngestionToInvocationStartLatency",
13831383
"InvocationAttempts",
13841384
"Invocations",
13851385
"InvocationsCreated",

0 commit comments

Comments
 (0)