Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ with sentry_sdk.start_transaction(
# Create the span
with sentry_sdk.start_span(
op="queue.publish",
name="queue_producer",
description="queue_producer",
) as span:
# Set span data
span.set_data("messaging.message.id", message_id)
Expand Down Expand Up @@ -118,7 +118,7 @@ with sentry_sdk.start_transaction(transaction):
# Create the span
with sentry_sdk.start_span(
op="queue.process",
name="queue_consumer",
description="queue_consumer",
) as span:
# Set span data
span.set_data("messaging.message.id", message["message_id"])
Expand Down
Loading