User Feedback Beta Launch: We Want to Hear Your Feedback #60134
Replies: 16 comments 41 replies
-
Is there a webhook, or way to create a Slack integration for inbound feedback? I couldn't see in docs. One of the most valuable aspects of feedback buttons like this is surfacing said feedback to developers and designers, revealing loads of quick-win suggestions to improve a product. If it's only visible in Sentry's web app it'll be largely forgotten. Border radius could be a configurable property too. It's hardcoded 20px atm. |
Beta Was this translation helpful? Give feedback.
-
The current version of the JavaScript SDK I'm using is 7.86.0. After configuring the feedback feature, I encountered an error message saying, "You are using new Feedback() even though this bundle does not include Feedback." |
Beta Was this translation helpful? Give feedback.
-
Environment:
Description: Steps to Reproduce:
Observations:
Questions:
Any suggestions or insights into this issue would be greatly appreciated. |
Beta Was this translation helpful? Give feedback.
-
Is a
In https://docs.sentry.io/platforms/javascript/user-feedback/configuration/#crash-report-modal
|
Beta Was this translation helpful? Give feedback.
-
Suggestion Add ability to export feedback as CSV/other formats. |
Beta Was this translation helpful? Give feedback.
-
how to ignore some errors? (always set it in 'dropped' and skip quote use) |
Beta Was this translation helpful? Give feedback.
-
Is there a way to exclude the feedback on certain URLs without us having to manually do it? i.e. right now it shows up on logged out pages too, and I'd love to have a list of URLs it doesnt show up on. For context we are using nextjs. This could also be something we missed reading in the config. |
Beta Was this translation helpful? Give feedback.
-
Is there a way to add custom data to a feedback form submission? I don't see one. We would like to add some context to the submissions to better handle the feedback. |
Beta Was this translation helpful? Give feedback.
-
Is there some way that a user can see their submissions to check for status, responses, etc.? |
Beta Was this translation helpful? Give feedback.
-
H @jas-kas Thank you for this nice feature, I was waiting it for a long time. I would know if you have a plan for creating another components for another type of feedback ( Like / Dislike ). Example |
Beta Was this translation helpful? Give feedback.
-
Hi @jas-kas , Thank you for these new improvements, I would suggest a classification for the feedback ( reaction, feature request, issue ) like Microsoft: |
Beta Was this translation helpful? Give feedback.
-
I've been using User Feedback in a simple Flashcard app, and I noticed an issue when it comes to the way the app functions that I don't really know if it's solvable, but thought I would share: Because of the way the issue was, the associated replay didn't even show the dialog portion, so the issue was actually untraceably from the UF. In this instance, it was also not a code error and so there was no way to actually see the issue. |
Beta Was this translation helpful? Give feedback.
-
Where do I find the tags I send? Codeexport function sendFeedback(feedback: Feedback) {
const { name, email, message, reaction, category } = feedback
const eventId = Sentry.lastEventId()
const userFeedback = {
name,
email,
message,
associatedEventId: eventId,
captureContext: {
tags: [{ key: reaction }, { key: category }],
},
}
Sentry.captureFeedback(userFeedback)
// Sentry.setTag("user_reaction", reaction)
// Sentry.setTag("feedback_category", category)
} I recieved the feedback , however I want to see where I can find the tags ( reaction = happy , categroy = compliment ) but I did not find them : I use both of : captureContext: {
tags: [{ key: reaction }, { key: category }],
}, and Sentry.setTag("user_reaction", reaction)
Sentry.setTag("feedback_category", category) But I could not find the tags. |
Beta Was this translation helpful? Give feedback.
-
Hi, i am sending feedback via API - it worked earlier but after few months of not receiving any feedbacks i tried it myself and i found out despite 200 response, the feedbacks are not displayed in the cloud sentry.io.
Response 200 ok:
Could anyone say what is wrong? I have checked as well the official Sentry postman collection again and it seems okay. Even after sending GET for feedbacks, they are not returned:
|
Beta Was this translation helpful? Give feedback.
-
It would be great if you could export user feedback. I've tried using Discover but it's appears to be using issuePlatform and doesn't show all the feedback shown in the feedback portal. |
Beta Was this translation helpful? Give feedback.
-
Id like to merge it other feedback sources (App Store, play store) so I can
have a unified feedback dataset. Which I’ll then use to analyze common
trends by using things like sentiment analysis.
Daniel
…On Wed, Sep 11, 2024 at 2:35 PM Jasmin ***@***.***> wrote:
Hey @djnugent <https://github.com/djnugent> -- thanks for sharing your
feedback. What is your motivation/use-cade for exporting user feedback?
—
Reply to this email directly, view it on GitHub
<#60134 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABTLXO43XYIM7WYVEGFJUD3ZWCLO3AVCNFSM6AAAAAA7OZ5SKOVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTANRRHA2DCNQ>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
New and Improved User Feedback - Beta Launch
While Sentry automatically detects errors thrown by your application, such as performance issues and user experience problems like rage clicks, there are other bugs your users may encounter (e.g., broken permission flows, broken links, typos, misleading UX, etc.). To identify and troubleshoot these cases quickly, we revamped our User Feedback product…
The new and improved User Feedback product is now available in beta to all Early Adopters. 🎉 🎉🎉 We would love for you to try it out and hear your feedback. To learn how to install User Feedback and customize the widget to match your application and needs, see here. Thank you all for your early feedback on our GitHub discussion a few months ago.
How it Works
The latest changes to User Feedback include an out-of-the-box web widget you can add on your application to collect user feedback at any time. This widget is compatible with all web platforms. If you’d like to use your own widget, see the instructions here.
Example of how the widget could look on your site.
When an end-user submits a feedback, we will then link that to available rich debugging context, including replays, errors, and tags such as URL, so you can get to the root of the problem faster. Check out this quick video demo for a walk-thru.
Example User Feedback Details page with Session Replay.
If you’ve set up Session Replay, you’ll be able to save more time and quickly understand the context of the user problem because you’ll be able to see exactly what they experienced before submitting their feedback. Note that Session Replay is not required to use this product.
Here are some functionalities you’ll see as part of the beta User Feedback product:
We Want to Hear Your Feedback
If you have any questions or concerns, please let us know. Once you’ve tried our new and improved User Feedback product, please share your feedback below. 👇
Note: If you are currently using our existing User Feedback product where we attach written user messages to Sentry issues, rest assured that this functionality will not be going away. New incoming submissions from this modal will live in the new UI we built for User Feedback shown above.
Beta Was this translation helpful? Give feedback.
All reactions