Skip to main content

sentry cli feedback

Submit feedback about your experience with the Sentry CLI. All text after feedback is sent as your message.

Usage

Arguments

  • message (required) - Your feedback message (all remaining arguments are joined into a single message)

Examples

Positive Feedback

Feature Request

Report Confusion

Multi-word Messages

No quotes needed—all arguments are automatically joined into a single message.

How It Works

  1. Your feedback is sent to Sentry via the @sentry/bun SDK’s captureFeedback() method
  2. The CLI waits up to 3 seconds to ensure the feedback is sent before exiting
  3. Feedback is associated with your CLI version and platform for context

Telemetry Requirement

Feedback requires telemetry to be enabled. If telemetry is disabled:

Enabling Feedback

To enable feedback, unset the SENTRY_CLI_NO_TELEMETRY environment variable:

Success Confirmation

When feedback is successfully sent:

Network Timeout

If the feedback cannot be sent within 3 seconds (network issues):
The CLI does not retry automatically. Try again when you have a stable internet connection.

Empty Messages

Empty or whitespace-only messages are rejected:

Privacy

Feedback submissions include:
  • Your feedback message
  • CLI version (e.g., 0.5.0)
  • Platform/OS (e.g., darwin, linux, win32)
  • Timestamp
Not included:
  • Authentication tokens
  • Project/organization data
  • File paths or code from your machine
  • Personal information (unless you include it in your message)

Use Cases

Report Bugs

Note: For detailed bug reports, consider opening an issue at https://github.com/getsentry/sentry-cli/issues

Suggest Features

Report Confusion

Express Appreciation

Feedback vs. GitHub Issues

When to use feedback:
  • Quick thoughts or impressions
  • Don’t need a response
  • Want to remain anonymous
When to use GitHub issues:
  • Need detailed troubleshooting
  • Want to track progress
  • Need to share logs, screenshots, or code

Exit Codes

  • 0 - Feedback sent successfully (or telemetry disabled)
  • 1 - Validation error (empty message)

External Resources