由于raven
已被弃用,我需要一种替代方法来在我的html模板中显示Sentry引用ID。
上一个版本的示例如下:
<p>You've encountered an error, oh noes!</p>
{% if request.sentry.id %}
<p>
If you need assistance, you may reference this error as
<strong>{{ request.sentry.id }}</strong>.
</p>
{% endif %}
我现在该怎么做?我尝试使用sentry_sdk.capture_exception()
或sentry_sdk.last_event_id()
方法。第一个在我的模板中返回None,第二个看起来就是我现在要找的。
Sentry有一个新的用户反馈功能。
以下是文档:https://docs.sentry.io/platforms/python/guides/django/enriching-events/user-feedback/