Issue
Issues or events show the title <unlabeled event>, so I cannot tell what failed from the issue stream. I need to know why the title is missing and how to fix it.
Applies To
All SaaS Customers and Self-Hosted Users
Error Monitoring
SDK Setup
Resolution
<unlabeled event> is Sentry’s placeholder title when a default event has no usable message. Sentry sets that title when logentry has no formatted or message value. Error events that lack exception metadata use a different placeholder (<unknown>), not <unlabeled event>.
Common causes:
Empty or missing message data (for example
captureMessage(""), or a payload with nologentrymessage).Custom
beforeSendlogic that removes the message or strips exception data so the event no longer has a title. See filtering documentation.Manual SDK or API events that omit required fields. See capturing errors and messages.
An outdated SDK sending incomplete event payloads.
Steps to fix:
Open an affected event in Sentry. Check the event JSON for
logentry/messageand for any “error encountered while processing this event” notices.Search your codebase for empty
captureMessage/captureExceptioncalls and forbeforeSendthat deletesevent.message,event.logentry, orevent.exception.Temporarily remove or no-op
beforeSend. If titles return, restore scrubbing without clearing message or exception fields.Upgrade to the latest SDK version for your platform.
After you fix the payload, new events get normal titles. Existing
<unlabeled event>issues keep their old title unless new events update the issue.
If the event JSON still has no message after these steps, contact Sentry support.
