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 57c4914 commit ab41434Copy full SHA for ab41434
src/collections/_documentation/performance-monitoring/configuration/python.md
@@ -75,7 +75,7 @@ import sentry_sdk
75
while True:
76
item = get_from_queue()
77
78
- with sentry_sdk.start_span(op="task", transaction=item.get_transaction()):
+ with sentry_sdk.start_transaction(op="task", name=item.get_transaction_name()):
79
# process_item may create more spans internally (see next examples)
80
process_item(item)
81
```
0 commit comments