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

Python tracing docs refresh #13125

Open
wants to merge 31 commits into
base: master
Choose a base branch
from

Conversation

sfanahata
Copy link

@sfanahata sfanahata commented Mar 25, 2025

DESCRIBE YOUR PR

Closes issue: https://linear.app/getsentry/project/tracing-improvements-python-120f4a3d71f2/overview
improve the structure of the tracing docs to match the structure we built for the JavaScript ones.

  • Add span metrics section

    • Example instrumentation

    • Sending performance metrics

  • Reformat Python tracing section to mirror JS structure

    • trace propagation -> distributed tracing, review section docs

    • Add configure sampling doc

    • Review instrumentation section

       - Add new content to the index.mdx file to make more similar to the JS file  
      
    • Add troubleshooting doc

    • Delete performance-metrics.mdx file under instrumentation (was redundant to the span-netsed doc I created)

PRE-MERGE CHECKLIST

Make sure you've checked the following before merging your changes:

  • Checked Vercel preview for correctness, including links
  • PR was reviewed and approved by any necessary SMEs (subject matter experts)
  • PR was reviewed and approved by a member of the Sentry docs team

Copy link

vercel bot commented Mar 25, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
sentry-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Apr 1, 2025 7:15pm
2 Skipped Deployments
Name Status Preview Comments Updated (UTC)
changelog ⬜️ Ignored (Inspect) Visit Preview Apr 1, 2025 7:15pm
develop-docs ⬜️ Ignored (Inspect) Visit Preview Apr 1, 2025 7:15pm


with sentry_sdk.start_span(op="task", name="Create User"):
# Your code here
# The span will automatically end when exiting this block
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not familiar enough with Python to know, but is there a way to illustrate what closing this code block would look like?

Copy link
Author

@sfanahata sfanahata Mar 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like the with statement is used to automatically close the block, hence the comment, but I extended the block to demonstrate what it would look like within a larger set of code. LMK if that helps with what you were thinking!


## Span Starting Options

The following options can be used when creating spans:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great use of a table!

Copy link

codecov bot commented Mar 26, 2025

Bundle Report

Changes will increase total bundle size by 1.05kB (0.01%) ⬆️. This is within the configured threshold ✅

Detailed changes
Bundle name Size Change
sentry-docs-server-cjs 10.6MB 1.06kB (0.01%) ⬆️
sentry-docs-client-array-push 9.43MB -6 bytes (-0.0%) ⬇️

Affected Assets, Files, and Routes:

view changes for bundle: sentry-docs-server-cjs

Assets Changed:

Asset Name Size Change Total Size Change (%)
1729.js -3 bytes 1.58MB -0.0%
../instrumentation.js -3 bytes 910.48kB -0.0%
9523.js -3 bytes 886.53kB -0.0%
../app/[[...path]]/page.js.nft.json 356 bytes 383.49kB 0.09%
../app/platform-redirect/page.js.nft.json 356 bytes 383.41kB 0.09%
../app/sitemap.xml/route.js.nft.json 356 bytes 381.38kB 0.09%
view changes for bundle: sentry-docs-client-array-push

Assets Changed:

Asset Name Size Change Total Size Change (%)
static/chunks/pages/_app-*.js -3 bytes 869.5kB -0.0%
static/chunks/4741-*.js -3 bytes 394.85kB -0.0%
server/middleware-*.js -5.55kB 1.0kB -84.74%
server/middleware-*.js 5.55kB 6.55kB 555.3% ⚠️
static/DOBMYW2wKdnVFhtDf3XJ9/_buildManifest.js (New) 578 bytes 578 bytes 100.0% 🚀
static/DOBMYW2wKdnVFhtDf3XJ9/_ssgManifest.js (New) 77 bytes 77 bytes 100.0% 🚀
static/RM9RW3Qo3h-*.js (Deleted) -77 bytes 0 bytes -100.0% 🗑️
static/RM9RW3Qo3h-*.js (Deleted) -578 bytes 0 bytes -100.0% 🗑️

@sfanahata sfanahata changed the title [DRAFT] ShannonA python tracing docs refresh ShannonA python tracing docs refresh Mar 26, 2025
@sfanahata sfanahata marked this pull request as ready for review March 26, 2025 22:24
@sfanahata sfanahata requested a review from codyde March 26, 2025 22:24
Copy link
Member

@szokeasaurusrex szokeasaurusrex left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did another quick pass review, looks better now than it was before but I still found some items to improve.

As I mentioned, I am at a conference this week, so please work with @antonpirker for further reviews (@sentrivana is out today, you can also work with her once she is back hopefully later this week)

Comment on lines +224 to +246
## Inheritance in Distributed Tracing

In distributed systems, trace information is propagated between services. You can implement inheritance logic like this:

```python
def traces_sampler(sampling_context):
# Examine provided context data
if "transaction_context" in sampling_context:
name = sampling_context["transaction_context"].get("name", "")

# Apply specific rules first
if "critical-path" in name:
return 1.0 # Always sample

# Inherit parent sampling decision if available
if sampling_context.get("parent_sampled") is not None:
return sampling_context["parent_sampled"]

# Otherwise use a default rate
return 0.1
```

This approach ensures consistent sampling decisions across your entire distributed trace. All transactions in a given trace will share the same sampling decision, preventing broken or incomplete traces.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Idk, I do still think having this snippet adds too much complexity to the page

what do you all think @antonpirker @sentrivana?

Comment on lines +38 to +51
Alternatively, you can create spans manually and control their lifecycle yourself, which gives you more flexibility but also more responsibility:

```python
import sentry_sdk

span = sentry_sdk.start_span(op="task", name="Create User")
try:
# Your code here
finally:
# Remember to always end your spans
# If you don't call span.finish(), the span will remain open indefinitely,
# causing memory leaks and incorrect timing data
span.finish()
```
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should avoid mentioning this configuration method. Correct me if I am wrong @antonpirker, but I don't think we generally recommend using this manual method. Folks should use the with context manager.

If someone really needs to manage the spans manually, they can call .__enter__() and .__exit__() on the span (.__exit__() internally calls .finish()). Since this is actually how the with block works in Python, there is no need for us to describe how to do this; because we support with, we already automatically support using __enter__ and __exit__.

Suggested change
Alternatively, you can create spans manually and control their lifecycle yourself, which gives you more flexibility but also more responsibility:
```python
import sentry_sdk
span = sentry_sdk.start_span(op="task", name="Create User")
try:
# Your code here
finally:
# Remember to always end your spans
# If you don't call span.finish(), the span will remain open indefinitely,
# causing memory leaks and incorrect timing data
span.finish()
```

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there any common use case in which this would unblock a developer in setting up tracing?

Comment on lines +114 to +147
## Creating Spans Manually

In some cases, you might need more control over when a span starts and ends. For this, you can create spans manually:

```python
import sentry_sdk

def process_file(file_path):
# Create a span
span = sentry_sdk.start_span(op="file", name="Process File")

try:
# Your processing logic
with open(file_path, 'r') as f:
content = f.read()

# Set additional attributes
span.set_attribute("file_size", len(content))

# Process the content
result = process_content(content)

return result
except Exception as e:
# Mark the span as failed
span.set_status("error")
# You can also add error details as attributes
span.set_attribute("error_type", type(e).__name__)
span.set_attribute("error_message", str(e))
raise
finally:
# Always end the span
span.finish()
```
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Following from my previous suggestion, I would delete this section on manual span management.

Suggested change
## Creating Spans Manually
In some cases, you might need more control over when a span starts and ends. For this, you can create spans manually:
```python
import sentry_sdk
def process_file(file_path):
# Create a span
span = sentry_sdk.start_span(op="file", name="Process File")
try:
# Your processing logic
with open(file_path, 'r') as f:
content = f.read()
# Set additional attributes
span.set_attribute("file_size", len(content))
# Process the content
result = process_content(content)
return result
except Exception as e:
# Mark the span as failed
span.set_status("error")
# You can also add error details as attributes
span.set_attribute("error_type", type(e).__name__)
span.set_attribute("error_message", str(e))
raise
finally:
# Always end the span
span.finish()
```

The example is also not very good, since (as far as I can tell), it would be possible and in fact easier to just use the with sentry_sdk.start_span syntax here, like so:

with sentry_sdk.start_span(...) as span:  # note the "as span"
    try:
         ...
    except Exception as e:
         span.set_status("error")
         span.set_attribute(...)
         ...
    # no need for finally

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@codyde - did you have any particular users in mind when thinking about this use case?

@@ -1,7 +1,297 @@
---
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, this looks quite a bit better!

@sfanahata sfanahata changed the title ShannonA python tracing docs refresh Python tracing docs refresh Apr 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants