Metrics (Trace Connected) For Python #5042
AbhiPrasad
started this conversation in
Features / New Integrations / Ideas
Replies: 1 comment 1 reply
-
|
is there any reason why we can't alias |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Sentry is introducing metrics that let you send counters, gauges, and distributions from your code to track things like
email.sent,checkout.failed, orqueue.depth— and pivot directly into the related traces, logs, and errors when something looks off.TraceConnectedMetrics.mp4
Note
To get early access to the Sentry metrics product and to see how it works, see the announcement post.
To use the new Metric APIs to send metrics directly to Sentry, you'll have to upgrade to 2.44.0 of the Python SDK or higher. An experimental API is available in 2.43.0.
Once the SDK is initialized, you can send metrics using the
sentry_sdk.metricsAPIs.The
metricsnamespace exposes three methods that you can use to capture different types of metric information:count,gauge, anddistribution.You can also pass additional attributes directly to
count,gauge, anddistributionvia theattributeskwarg.Beta Was this translation helpful? Give feedback.
All reactions