User Feedback
Use the .NET SDK
When a user experiences an error, Sentry provides the ability to collect additional feedback. You can create a form to collect the user input in your prefered framework, and use the SDK's API to send the information to Sentry.
using Sentry;
var eventId = SentrySdk.CaptureMessage("An event that will receive user feedback.");
SentrySdk.CaptureUserFeedback(eventId, "user@example.com", "It broke.", "The User");
On the Web
On a website, this type of feedback is useful when you may typically render a plain error page (the classic 500.html
).
To collect feedback, use the embeddable JavaScript widget, which requests and collects the user's name, email address, and a description of what occurred. When feedback is provided, Sentry pairs the feedback with the original event, giving you additional insights into issues.
The screenshot below provides an example of the User Feedback widget, though yours may differ depending on your customization:
Integration
To integrate the widget, you'll need to be running version 2.1 or newer of our JavaScript SDK. The widget authenticates with your public DSN, then passes in the Event ID that was generated on your backend.
If you'd prefer an alternative to the widget or do not have a JavaScript frontend, you can use the .NET API mentioned above, or a Web API.
Make sure you've got the JavaScript SDK available:
<script
src="https://browser.sentry-cdn.com/5.29.0/bundle.min.js"
integrity="sha384-/dYT/04VSU9ItKRPTkWeVZ0kqRsVh/T/5rNCjzBwpx7sYeeueKgJzGMNXSal3xoo"
crossorigin="anonymous"
></script>
If you are rendering the page from the server, for example on ASP.NET Core MVC, the Error.cshtml
razor page can be:
@using Sentry
@using Sentry.AspNetCore
@inject Microsoft.Extensions.Options.IOptions<SentryAspNetCoreOptions> SentryOptions
@if (SentrySdk.LastEventId != Sentry.Protocol.SentryId.Empty) {
<script>
Sentry.init({ dsn: "@(SentryOptions.Value.Dsn)" });
Sentry.showReportDialog({ eventId: "@SentrySdk.LastEventId" });
</script>
}
Customizing the Widget
You can customize the widget to your organization's needs, especially for localization purposes. All options can be passed through the showReportDialog
call.
An override for Sentry’s automatic language detection (e.g. lang=de
)
Param | Default |
---|---|
eventId | Manually set the id of the event. |
dsn | Manually set dsn to report to. |
user | Manually set user data [an object with keys listed below]. |
user.email | User's email address. |
user.name | User's name. |
lang | [automatic] – override for Sentry’s language code |
title | It looks like we’re having issues. |
subtitle | Our team has been notified. |
subtitle2 | If you’d like to help, tell us what happened below. – not visible on small screen resolutions |
labelName | Name |
labelEmail | |
labelComments | What happened? |
labelClose | Close |
labelSubmit | Submit |
errorGeneric | An unknown error occurred while submitting your report. Please try again. |
errorFormEntry | Some fields were invalid. Please correct the errors and try again. |
successMessage | Your feedback has been sent. Thank you! |
onLoad | n/a |
- Package:
- nuget:Sentry.AspNetCore
- Version:
- 2.1.8
- Repository:
- https://github.com/getsentry/sentry-dotnet