-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[exporter/awsemfexporter] fix awsemfexporter Namespace dimension (#17024
) * see related issue * Namespace of Cloudwatch was used as dimension * this conflicted when the metric has namespace metadata (for e.g. k8s metrics) * this is caused because AWs Embedded metric format depends on the ordering of the keys in `CloudWatchMetrics`, if the Namespace of cloudwatch comes first it is used in the dimensions too
- Loading branch information
Claus Riegg
committed
Dec 21, 2022
1 parent
bc29302
commit 9cf5e18
Showing
2 changed files
with
25 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' | ||
change_type: bug_fix | ||
|
||
# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver) | ||
component: exporter/awsemfexporter | ||
|
||
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). | ||
note: Fixing inheritance of the value of cloudwatch `Namespace` to a dimension which is named `Namespace` too. | ||
|
||
# One or more tracking issues related to the change | ||
issues: [17024] | ||
|
||
# (Optional) One or more lines of additional information to render under the primary note. | ||
# These lines will be padded with 2 spaces and then inserted directly into the document. | ||
# Use pipe (|) for multiline entries. | ||
subtext: | | ||
When pushing metrics to cloudwatch which have a Dimension named `Namespace` (for e.g. k8s metrics) it was always | ||
overriden by the value from `Namespace` of cloudwatch where the metrics get written to. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters