Attachments

Sentry can enrich your events for further investigation by storing additional files, such as config or log files, as attachments.

Uploading Attachments

Attachments live on the Scope and will be sent with all events.

Copied
sentry.ConfigureScope(func(scope *sentry.Scope) {
	// Add an attachment
	scope.AddAttachment(&Attachment{
		Filename:    "report.html",
		ContentType: "text/html",
		Payload:     []byte("<h1>Look, HTML</h1>"),
	})
})

An attachment has the following fields:

Filename
The filename that will be displayed in sentry.io.

Payload
The content of the attachment in bytes.

ContentType
(Optional) The type of content stored in this attachment. Any MIME type may be used.

Attachments persist for 30 days; if your total storage included in your

quotaThe monthly number of events that you pay Sentry to track.
is exceeded, attachments will not be stored. You can delete attachments or their containing events at any time. Deleting an attachment does not affect your quota - Sentry counts an attachment toward your quota as soon as it is stored.

Learn more about how attachments impact your quota.

Access to Attachments

To limit access to attachments, navigate to your organization's General Settings, then select the Attachments Access dropdown to set appropriate access — any member of your organization, the organization billing owner, member, admin, manager, or owner.

Attachments Access

By default, access is granted to all members when storage is enabled. If a member does not have access to the

projectRepresents your service in Sentry and allows you to scope events to a distinct application.
, the ability to download an attachment is not available; the button will be greyed out in Sentry. The member may only view that an attachment is stored.

Viewing Attachments

Attachments display on the bottom of the Issue Details page for the event that is shown.

Attachments Access Denied

Alternately, attachments also appear in the Attachments tab on the Issue Details page, where you can view the Type of attachment, as well as associated events. Click the Event ID to open the Issue Details of that specific event.

Attachments List Example

Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").