We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2591050 commit dd7e987Copy full SHA for dd7e987
aws_lambda_powertools/tracing/tracer.py
@@ -14,6 +14,10 @@
14
15
is_cold_start = True
16
logger = logging.getLogger(__name__)
17
+# Set the streaming threshold to 0 on the default recorder to force sending
18
+# subsegments individually, rather than batching them.
19
+# See https://github.com/awslabs/aws-lambda-powertools-python/issues/283
20
+aws_xray_sdk.core.xray_recorder.configure(streaming_threshold=0)
21
22
23
class Tracer:
0 commit comments