Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cherry-pick #19433 to 7.x: [MetricBeat] set tags correctly if the dimension value is ARN #19582

Merged
merged 1 commit into from
Jul 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,7 @@ field. You can revert this change by configuring tags for the module and omittin
- Fix incorrect usage of hints builder when exposed port is a substring of the hint {pull}19052[19052]
- Stop counterCache only when already started {pull}19103[19103]
- Remove dedot for tag values in aws module. {issue}19112[19112] {pull}19221[19221]
- Set tags correctly if the dimension value is ARN {issue}19111[19111] {pull}19433[19433]
- Fix bug incorrect parsing of float numbers as integers in Couchbase module {issue}18949[18949] {pull}19055[19055]

*Packetbeat*
Expand Down
7 changes: 7 additions & 0 deletions x-pack/metricbeat/module/aws/cloudwatch/cloudwatch.go
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,13 @@ func insertTags(events map[string]mb.Event, identifier string, resourceTagMap ma
subIdentifiers := strings.Split(identifier, dimensionSeparator)
for _, v := range subIdentifiers {
tags := resourceTagMap[v]
// some metric dimension values are arn format, eg: AWS/DDOS namespace metric
if len(tags) == 0 && strings.HasPrefix(v, "arn:") {
resourceID, err := aws.FindIdentifierFromARN(v)
if err == nil {
tags = resourceTagMap[resourceID]
}
}
if len(tags) != 0 {
// By default, replace dot "." using underscore "_" for tag keys.
// Note: tag values are not dedotted.
Expand Down
16 changes: 16 additions & 0 deletions x-pack/metricbeat/module/aws/cloudwatch/cloudwatch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1407,10 +1407,14 @@ func TestInsertTags(t *testing.T) {
tagValue1 := "engineering"
tagKey2 := "owner"
tagValue2 := "foo"
identifierContainsArn := "arn:aws:ec2:ap-northeast-1:111111111111:eip-allocation/eipalloc-0123456789abcdef,SYNFlood"
tagKey3 := "env"
tagValue3 := "dev"

events := map[string]mb.Event{}
events[identifier1] = aws.InitEvent(regionName, accountName, accountID)
events[identifier2] = aws.InitEvent(regionName, accountName, accountID)
events[identifierContainsArn] = aws.InitEvent(regionName, accountName, accountID)

resourceTagMap := map[string][]resourcegroupstaggingapi.Tag{}
resourceTagMap["test-s3-1"] = []resourcegroupstaggingapi.Tag{
Expand All @@ -1425,6 +1429,12 @@ func TestInsertTags(t *testing.T) {
Value: awssdk.String(tagValue2),
},
}
resourceTagMap["eipalloc-0123456789abcdef"] = []resourcegroupstaggingapi.Tag{
{
Key: awssdk.String(tagKey3),
Value: awssdk.String(tagValue3),
},
}

cases := []struct {
title string
Expand All @@ -1444,6 +1454,12 @@ func TestInsertTags(t *testing.T) {
"aws.tags.owner",
tagValue2,
},
{
"test identifier with arn value",
identifierContainsArn,
"aws.tags.env",
tagValue3,
},
}

for _, c := range cases {
Expand Down
6 changes: 3 additions & 3 deletions x-pack/metricbeat/module/aws/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -188,9 +188,9 @@ func GetResourcesTags(svc resourcegroupstaggingapiiface.ClientAPI, resourceTypeF
}

for _, resourceTag := range output.ResourceTagMappingList {
identifier, err := findIdentifierFromARN(*resourceTag.ResourceARN)
identifier, err := FindIdentifierFromARN(*resourceTag.ResourceARN)
if err != nil {
err = errors.Wrap(err, "error findIdentifierFromARN")
err = errors.Wrap(err, "error FindIdentifierFromARN")
return nil, err
}
resourceTagMap[identifier] = resourceTag.Tags
Expand All @@ -199,7 +199,7 @@ func GetResourcesTags(svc resourcegroupstaggingapiiface.ClientAPI, resourceTypeF
return resourceTagMap, nil
}

func findIdentifierFromARN(resourceARN string) (string, error) {
func FindIdentifierFromARN(resourceARN string) (string, error) {
arnParsed, err := arn.Parse(resourceARN)
if err != nil {
err = errors.Wrap(err, "error Parse arn")
Expand Down
2 changes: 1 addition & 1 deletion x-pack/metricbeat/module/aws/utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ func TestFindIdentifierFromARN(t *testing.T) {
}

for _, c := range cases {
identifier, err := findIdentifierFromARN(c.resourceARN)
identifier, err := FindIdentifierFromARN(c.resourceARN)
assert.NoError(t, err)
assert.Equal(t, c.expectedIdentifier, identifier)
}
Expand Down