Skip to content
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

Make continuous profiler work in POtel span_processor #4098

Merged
merged 4 commits into from
Mar 31, 2025
Merged
Show file tree
Hide file tree
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
18 changes: 17 additions & 1 deletion sentry_sdk/integrations/opentelemetry/span_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from sentry_sdk.profiler.continuous_profiler import (
try_autostart_continuous_profiler,
get_profiler_id,
try_profile_lifecycle_trace_start,
)
from sentry_sdk.profiler.transaction_profiler import Profile
from sentry_sdk.integrations.opentelemetry.sampler import create_sampling_context
Expand Down Expand Up @@ -80,7 +81,8 @@ def on_end(self, span):

is_root_span = not span.parent or span.parent.is_remote
if is_root_span:
# if have a root span ending, we build a transaction and send it
# if have a root span ending, stop the profiler, build a transaction and send it
self._stop_profile(span)
self._flush_root_span(span)
else:
self._append_child_span(span)
Expand Down Expand Up @@ -113,6 +115,7 @@ def _add_root_span(self, span, parent_span):
def _start_profile(self, span):
# type: (Span) -> None
try_autostart_continuous_profiler()

profiler_id = get_profiler_id()
thread_id, thread_name = get_current_thread_meta()

Expand All @@ -131,13 +134,26 @@ def _start_profile(self, span):
# unix timestamp that is on span.start_time
# setting it to 0 means the profiler will internally measure time on start
profile = Profile(sampled, 0)

sampling_context = create_sampling_context(
span.name, span.attributes, span.parent, span.context.trace_id
)
profile._set_initial_sampling_decision(sampling_context)
profile.__enter__()
set_sentry_meta(span, "profile", profile)

continuous_profile = try_profile_lifecycle_trace_start()
profiler_id = get_profiler_id()
if profiler_id:
span.set_attribute(SPANDATA.PROFILER_ID, profiler_id)
set_sentry_meta(span, "continuous_profile", continuous_profile)

def _stop_profile(self, span):
# type: (ReadableSpan) -> None
continuous_profiler = get_sentry_meta(span, "continuous_profile")
if continuous_profiler:
continuous_profiler.stop()

def _flush_root_span(self, span):
# type: (ReadableSpan) -> None
transaction_event = self._root_span_to_transaction_event(span)
Expand Down
6 changes: 3 additions & 3 deletions tests/profiler/test_continuous_profiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def test_continuous_profiler_auto_start_and_manual_stop(

with sentry_sdk.start_span(name="profiling"):
with sentry_sdk.start_span(op="op"):
time.sleep(0.05)
time.sleep(0.1)

assert_single_transaction_with_profile_chunks(envelopes, thread)

Expand All @@ -250,7 +250,7 @@ def test_continuous_profiler_auto_start_and_manual_stop(

with sentry_sdk.start_span(name="profiling"):
with sentry_sdk.start_span(op="op"):
time.sleep(0.05)
time.sleep(0.1)

assert_single_transaction_without_profile_chunks(envelopes)

Expand All @@ -260,7 +260,7 @@ def test_continuous_profiler_auto_start_and_manual_stop(

with sentry_sdk.start_span(name="profiling"):
with sentry_sdk.start_span(op="op"):
time.sleep(0.05)
time.sleep(0.1)

assert_single_transaction_with_profile_chunks(envelopes, thread)

Expand Down
Loading