Skip to content

Commit

Permalink
(chore) APM: Fix Bedrock Integration Refactor
Browse files Browse the repository at this point in the history
- see #5137
  • Loading branch information
tlhunter committed Feb 14, 2025
1 parent 560236e commit 3eb96e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/datadog-instrumentations/src/aws-sdk.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ function getMessage (request, error, result) {

function getChannelSuffix (name) {
// some resource identifiers have spaces between ex: bedrock runtime
name = name.replaceAll(' ', '')
name = String(name).replaceAll(' ', '')
return [
'cloudwatchlogs',
'dynamodb',
Expand Down

0 comments on commit 3eb96e3

Please sign in to comment.