Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/platforms/python/configuration/options.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,18 @@ The threshold in milliseconds for adding the source location to database queries

</SdkOption>

<SdkOption name="enable_http_request_source" type='bool' defaultValue='True'>

When enabled, the source location will be added to outgoing HTTP requests.

</SdkOption>

<SdkOption name="http_request_source_threshold_ms" type='int' defaultValue='100'>

The threshold in milliseconds for adding the source location to an outgoing HTTP request. The request location will be added to the request for requests slower than the specified threshold.

</SdkOption>

<SdkOption name="trace_ignore_status_codes" type='bool' defaultValue='frozenset()'>

An optional property that disables tracing for HTTP requests with certain status codes.
Expand Down
Loading