Data Collected

See what data is collected by the Sentry SDK.

Sentry takes data privacy very seriously and has default settings in place that prioritize data safety, especially when it comes to personally identifiable information (PII) data. When you add the Sentry SDK to your application, you allow it to collect data and send it to Sentry during the runtime of your application.

The category types and amount of data collected vary, depending on the integrations you've enabled in the Sentry SDK. Here's a list of data categories the Sentry Native SDK collects:

By default, the Sentry SDK doesn't send any information about users, such as email address, user ID, or username. However, if the send_default_pii option is enabled, Sentry backend services will infer the user's IP address based on the incoming request.

You can also set user information from code:

Copied
var user := SentryUser.new()
user.id = "custom_id"
user.email = "bob@example.com"
user.username = "bob"
user.ip_address = "127.0.0.1"
SentrySDK.set_user(user)

The Sentry SDK collects information about the device, such as the name, version and build of your operating system or Linux distribution. This information is sent to Sentry by default.

The screenshot feature is disabled by default. If you choose to enable this feature in options, any screenshots captured may contain sensitive data visible in the application at the time of the error.

By default, the Sentry SDK automatically attaches the Godot log file to events it sends. Since this log file contains all messages printed in your code and by the engine itself, it may inadvertently include sensitive information. To enhance privacy protection, you can disable the attach_log option in the Godot Project Settings.

At the time of a crash, the stack of each thread is collected and sent to Sentry as part of the Minidump snapshot for crashpad backend. This information is sent to Sentry by default, but dropped after processing the event in the backend.

These files are not stored by default, but you can enable Minidump Storage in the Sentry organization or project settings.

Was this helpful?
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").