File tree Expand file tree Collapse file tree
x-pack/metricbeat/module/aws/cloudwatch/metadata/rds Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -237,6 +237,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
237237- Fix list_docker.go {pull}28374[28374]
238238- Use xpack.enabled on SM modules to write into .monitoring indices when using Metricbeat standalone {pull}28365[28365]
239239- Fix in rename processor to ingest metrics for `write.iops` to proper field instead of `write_iops` in rds metricset. {pull}28960[28960]
240+ - Fix rds metadata in cloudwatch metricset. {pull}29106[29106]
240241
241242*Packetbeat*
242243
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