File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
x-pack/metricbeat/module/aws/cloudwatch/metadata/rds Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -212,6 +212,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
212212- Groups same timestamp metric values to one event in the app_insights metricset. {pull}20403[20403]
213213- `beat` module respects `basepath` config option. {pull}28162[28162]
214214- Fix list_docker.go {pull}28374[28374]
215+ - Fix rds metadata in cloudwatch metricset. {pull}29106[29106]
215216
216217*Packetbeat*
217218
Original file line number Diff line number Diff line change @@ -87,7 +87,8 @@ func getDBInstancesPerRegion(svc rdsiface.ClientAPI) (map[string]*rds.DBInstance
8787
8888 instancesOutputs := map [string ]* rds.DBInstance {}
8989 for _ , dbInstance := range output .DBInstances {
90- instancesOutputs [* dbInstance .DBInstanceIdentifier ] = & dbInstance
90+ instance := dbInstance
91+ instancesOutputs [* instance .DBInstanceIdentifier ] = & instance
9192 }
9293 return instancesOutputs , nil
9394}
You can’t perform that action at this time.
0 commit comments