-
Notifications
You must be signed in to change notification settings - Fork 612
feat(pymongo): Add span streaming support #6253
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
+281
−53
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,10 +2,12 @@ | |
| import json | ||
|
|
||
| import sentry_sdk | ||
| from sentry_sdk.consts import SPANSTATUS, SPANDATA, OP | ||
| from sentry_sdk.consts import OP, SPANDATA, SPANSTATUS | ||
| from sentry_sdk.integrations import DidNotEnable, Integration | ||
| from sentry_sdk.scope import should_send_default_pii | ||
| from sentry_sdk.traces import SpanStatus, StreamedSpan | ||
| from sentry_sdk.tracing import Span | ||
| from sentry_sdk.tracing_utils import has_span_streaming_enabled | ||
| from sentry_sdk.utils import capture_internal_exceptions | ||
|
|
||
| try: | ||
|
|
@@ -87,12 +89,11 @@ def _strip_pii(command: "Dict[str, Any]") -> "Dict[str, Any]": | |
| def _get_db_data(event: "Any") -> "Dict[str, Any]": | ||
| data = {} | ||
|
|
||
| data[SPANDATA.DB_SYSTEM] = "mongodb" | ||
| data[SPANDATA.DB_DRIVER_NAME] = "pymongo" | ||
| client = sentry_sdk.get_client() | ||
| is_span_streaming_enabled = has_span_streaming_enabled(client.options) | ||
|
|
||
| data[SPANDATA.DB_DRIVER_NAME] = "pymongo" | ||
| db_name = event.database_name | ||
| if db_name is not None: | ||
| data[SPANDATA.DB_NAME] = db_name | ||
|
|
||
| server_address = event.connection_id[0] | ||
| if server_address is not None: | ||
|
|
@@ -102,12 +103,23 @@ def _get_db_data(event: "Any") -> "Dict[str, Any]": | |
| if server_port is not None: | ||
| data[SPANDATA.SERVER_PORT] = server_port | ||
|
|
||
| if is_span_streaming_enabled: | ||
| data["db.system.name"] = "mongodb" | ||
|
|
||
| if db_name is not None: | ||
| data["db.namespace"] = db_name | ||
|
ericapisani marked this conversation as resolved.
|
||
| else: | ||
| data[SPANDATA.DB_SYSTEM] = "mongodb" | ||
|
|
||
| if db_name is not None: | ||
| data[SPANDATA.DB_NAME] = db_name | ||
|
|
||
| return data | ||
|
|
||
|
|
||
| class CommandTracer(monitoring.CommandListener): | ||
| def __init__(self) -> None: | ||
| self._ongoing_operations: "Dict[int, Span]" = {} | ||
| self._ongoing_operations: "Dict[int, Union[Span, StreamedSpan]]" = {} | ||
|
|
||
| def _operation_key( | ||
| self, | ||
|
|
@@ -116,7 +128,8 @@ def _operation_key( | |
| return event.request_id | ||
|
|
||
| def started(self, event: "CommandStartedEvent") -> None: | ||
| if sentry_sdk.get_client().get_integration(PyMongoIntegration) is None: | ||
| client = sentry_sdk.get_client() | ||
| if client.get_integration(PyMongoIntegration) is None: | ||
| return | ||
|
|
||
| with capture_internal_exceptions(): | ||
|
|
@@ -126,56 +139,88 @@ def started(self, event: "CommandStartedEvent") -> None: | |
| command.pop("$clusterTime", None) | ||
| command.pop("$signature", None) | ||
|
|
||
| tags = { | ||
| "db.name": event.database_name, | ||
| SPANDATA.DB_SYSTEM: "mongodb", | ||
| SPANDATA.DB_DRIVER_NAME: "pymongo", | ||
| SPANDATA.DB_OPERATION: event.command_name, | ||
| SPANDATA.DB_MONGODB_COLLECTION: command.get(event.command_name), | ||
| } | ||
|
|
||
| try: | ||
|
ericapisani marked this conversation as resolved.
|
||
| tags["net.peer.name"] = event.connection_id[0] | ||
| tags["net.peer.port"] = str(event.connection_id[1]) | ||
| except TypeError: | ||
| pass | ||
| db_data = _get_db_data(event) | ||
|
|
||
| data: "Dict[str, Any]" = {"operation_ids": {}} | ||
| data["operation_ids"]["operation"] = event.operation_id | ||
| data["operation_ids"]["request"] = event.request_id | ||
|
|
||
| data.update(_get_db_data(event)) | ||
|
|
||
| try: | ||
| lsid = command.pop("lsid")["id"] | ||
| data["operation_ids"]["session"] = str(lsid) | ||
| except KeyError: | ||
| pass | ||
| collection_name = command.get(event.command_name) | ||
| operation_name = event.command_name | ||
| db_name = event.database_name | ||
|
|
||
| lsid = command.pop("lsid", None) | ||
| if not should_send_default_pii(): | ||
| command = _strip_pii(command) | ||
|
|
||
| query = json.dumps(command, default=str) | ||
| span = sentry_sdk.start_span( | ||
| op=OP.DB, | ||
| name=query, | ||
| origin=PyMongoIntegration.origin, | ||
| ) | ||
|
|
||
| for tag, value in tags.items(): | ||
| # set the tag for backwards-compatibility. | ||
| # TODO: remove the set_tag call in the next major release! | ||
| span.set_tag(tag, value) | ||
| if has_span_streaming_enabled(client.options): | ||
| span_first_data = { | ||
| "db.operation.name": operation_name, | ||
| "db.collection.name": collection_name, | ||
| "sentry.op": OP.DB, | ||
| "sentry.origin": PyMongoIntegration.origin, | ||
| **db_data, | ||
| } | ||
|
cursor[bot] marked this conversation as resolved.
|
||
|
|
||
| span = sentry_sdk.traces.start_span( | ||
| name=query, attributes=span_first_data | ||
| ) | ||
|
|
||
| with capture_internal_exceptions(): | ||
| sentry_sdk.add_breadcrumb( | ||
| message=query, | ||
| category="query", | ||
| type=OP.DB, | ||
| data=span_first_data, | ||
| ) | ||
|
|
||
| else: | ||
| tags = { | ||
| "db.name": db_name, | ||
| SPANDATA.DB_SYSTEM: "mongodb", | ||
| SPANDATA.DB_DRIVER_NAME: "pymongo", | ||
| SPANDATA.DB_OPERATION: operation_name, | ||
| # The below is a deprecated field, but leaving for legacy reasons. | ||
| # The v2 spans will use `db.collection.name` instead. | ||
| SPANDATA.DB_MONGODB_COLLECTION: collection_name, | ||
| } | ||
|
|
||
| try: | ||
| tags["net.peer.name"] = event.connection_id[0] | ||
| tags["net.peer.port"] = str(event.connection_id[1]) | ||
| except TypeError: | ||
| pass | ||
|
|
||
| data: "Dict[str, Any]" = {"operation_ids": {}} | ||
| data["operation_ids"]["operation"] = event.operation_id | ||
| data["operation_ids"]["request"] = event.request_id | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are also kept for legacy reasons, are being removed for streamed spans. |
||
|
|
||
| data.update(db_data) | ||
|
|
||
| try: | ||
| if lsid: | ||
| lsid_id = lsid["id"] | ||
| data["operation_ids"]["session"] = str(lsid_id) | ||
| except KeyError: | ||
| pass | ||
|
|
||
| span = sentry_sdk.start_span( | ||
| op=OP.DB, | ||
| name=query, | ||
| origin=PyMongoIntegration.origin, | ||
| ) | ||
|
|
||
| span.set_data(tag, value) | ||
| for tag, value in tags.items(): | ||
| # set the tag for backwards-compatibility. | ||
| # TODO: remove the set_tag call in the next major release! | ||
| span.set_tag(tag, value) | ||
| span.set_data(tag, value) | ||
|
|
||
| for key, value in data.items(): | ||
| span.set_data(key, value) | ||
| for key, value in data.items(): | ||
| span.set_data(key, value) | ||
|
|
||
| with capture_internal_exceptions(): | ||
| sentry_sdk.add_breadcrumb( | ||
| message=query, category="query", type=OP.DB, data=tags | ||
| ) | ||
| with capture_internal_exceptions(): | ||
| sentry_sdk.add_breadcrumb( | ||
| message=query, category="query", type=OP.DB, data=tags | ||
| ) | ||
|
|
||
| self._ongoing_operations[self._operation_key(event)] = span.__enter__() | ||
|
|
||
|
|
@@ -185,7 +230,11 @@ def failed(self, event: "CommandFailedEvent") -> None: | |
|
|
||
| try: | ||
| span = self._ongoing_operations.pop(self._operation_key(event)) | ||
| span.set_status(SPANSTATUS.INTERNAL_ERROR) | ||
| # Ignoring NoOpStreamedSpan as it will always have a status of "ok" | ||
| if type(span) is StreamedSpan: | ||
| span.status = SpanStatus.ERROR | ||
| elif type(span) is Span: | ||
| span.set_status(SPANSTATUS.INTERNAL_ERROR) | ||
| span.__exit__(None, None, None) | ||
| except KeyError: | ||
| return | ||
|
|
@@ -196,7 +245,8 @@ def succeeded(self, event: "CommandSucceededEvent") -> None: | |
|
|
||
| try: | ||
| span = self._ongoing_operations.pop(self._operation_key(event)) | ||
| span.set_status(SPANSTATUS.OK) | ||
| if type(span) is Span: | ||
| span.set_status(SPANSTATUS.OK) | ||
| span.__exit__(None, None, None) | ||
| except KeyError: | ||
| pass | ||
|
|
||
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Accessing a non-indexable
event.connection_idin_get_db_dataraises aTypeErrorthat is silently caught, causing the entire pymongo span to be dropped.Severity: MEDIUM
Suggested Fix
Wrap the access to
event.connection_idwithin atry...except TypeErrorblock. This will prevent the unhandled exception from halting execution, allowing the span to be created even if peer address data cannot be extracted.Prompt for AI Agent
Did we get this right? 👍 / 👎 to inform future reviews.