We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 457634f commit 467e513Copy full SHA for 467e513
instrumentation/opentelemetry-instrumentation-boto/src/opentelemetry/instrumentation/boto/__init__.py
@@ -235,6 +235,8 @@ def truncate_arg_value(value, max_len=1024):
235
if not span.is_recording():
236
return
237
238
+ # Do not trace `Key Management Service` or `Secure Token Service` API calls
239
+ # over concerns of security leaks.
240
if aws_service not in {"kms", "sts"}:
241
tags = dict(
242
(name, value)
0 commit comments