-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Python tracing docs refresh #13125
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
docs/platforms/python/tracing/distributed-tracing/custom-instrumentation/index.mdx
Outdated
Show resolved
Hide resolved
|
||
with sentry_sdk.start_span(op="task", name="Create User"): | ||
# Your code here | ||
# The span will automatically end when exiting this block |
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.
I'm not familiar enough with Python to know, but is there a way to illustrate what closing this code block would look like?
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.
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: |
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.
Great use of a table!
docs/platforms/python/tracing/span-metrics/performance-metrics.mdx
Outdated
Show resolved
Hide resolved
Bundle ReportChanges will increase total bundle size by 1.05kB (0.01%) ⬆️. This is within the configured threshold ✅ Detailed changes
Affected Assets, Files, and Routes:view changes for bundle: sentry-docs-client-array-pushAssets Changed:
view changes for bundle: sentry-docs-server-cjsAssets Changed:
|
Co-authored-by: Alex Krawiec <[email protected]>
Co-authored-by: Alex Krawiec <[email protected]>
| ------------- | --------------- | ----------------------------------------------- | | ||
| `op` | `string` | The operation of the span. | | ||
| `name` | `string` | The name of the span. | | ||
| `start_time` | `datetime/float`| The start time of the span. | |
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.
| `start_time` | `datetime/float`| The start time of the span. | | |
| `start_timestamp` | `datetime/float`| The start time of the span. | |
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.
@sfanahata Thanks for incorporating my feedback! And sorry for leaving that many comments (it's a big PR).
I've marked most threads resolved; there's still a handful open. If you prefer, happy to sync online -- I'm at a conference on Monday but available from Tuesday onwards. I don't want to block this though so if you want to merge it go ahead, just please have a look at the open stuff.
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.
Looks good!
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 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: