Options
Learn more about how the SDK can be configured via options. These are being passed to the init function and therefore set when the SDK is first initialized.
Options are passed into sentry_init as a pointer to an options object created via sentry_options_new(). There are functions that allow to set all options individually.
#include <sentry.h>
int main(void) {
sentry_options_t *options = sentry_options_new();
sentry_options_set_dsn(options, "___PUBLIC_DSN___");
sentry_options_set_release(options, "my-project-name@2.3.12");
sentry_options_set_debug(options, 1);
sentry_init(options);
/* ... */
}
#include <sentry.h>
int main(void) {
sentry_options_t *options = sentry_options_new();
sentry_options_set_dsn(options, "___PUBLIC_DSN___");
sentry_options_set_release(options, "my-project-name@2.3.12");
sentry_options_set_debug(options, 1);
sentry_init(options);
/* ... */
}
Options that can be read from an environment variable (SENTRY_DSN, SENTRY_ENVIRONMENT, SENTRY_RELEASE) are read automatically.
dsn
| Type | string |
|---|
The DSN tells the SDK where to send the events. If this value is not provided, the SDK will try to read it from the SENTRY_DSN environment variable. If that variable also does not exist, the SDK will just not send any events.
Learn more about DSN utilization.
database_path
| Type | string |
|---|---|
| Default | .sentry-native |
Allows you to specify a path to the local event- and crash-database of the Native SDK. This path will default to .sentry-native relative to the current working directory (CWD). While this is a convenient setting for development, we strongly urge you to provide an explicit database path for our production deployments. In many deployment scenarios, the path relative to the CWD will not be writable. For this reason, you should store the database in your application's user-specific data/cache directory (e.g., under %AppData%\Local on Windows, ~/Library/Application Support on macOS, or XDG_CACHE_HOME on Linux).
debug
| Type | bool |
|---|---|
| Default | false |
Turns debug mode on or off. If debug is enabled, the SDK will attempt to print out useful debugging information if something goes wrong. If you run a debug-build (NDEBUG isn't defined), it will default to true; otherwise, the default is always false. You can provide a SENTRY_DEBUG environment variable with either "0" or "1" for "off" and "on" respectively, which will override the defaults. It's generally not recommended to turn it on in production, though turning debug mode on will not cause any safety concerns. You can limit the output by setting logger_level to an appropriate level for your production use case.
release
| Type | string |
|---|
Sets the release. Release names are strings, but some formats are detected by Sentry and might be rendered differently. Learn more about how to send release data so Sentry can tell you about regressions between releases and identify the potential source in the releases documentation or the sandbox.
By default the SDK will try to read this value from the SENTRY_RELEASE environment variable.
environment
| Type | string |
|---|---|
| Default | production |
Sets the environment. This string is freeform and set by default. A release can be associated with more than one environment to separate them in the UI (think staging vs prod or similar).
By default the SDK will try to read this value from the SENTRY_ENVIRONMENT environment variable. Otherwise, the default environment is production.
sample_rate
| Type | float |
|---|---|
| Default | 1.0 |
Configures the sample rate for error events, in the range of 0.0 to 1.0. The default is 1.0, which means that 100% of error events will be sent. If set to 0.1, only 10% of error events will be sent. Events are picked randomly.
max_breadcrumbs
| Type | int |
|---|---|
| Default | 100 |
This variable controls the total amount of breadcrumbs that should be captured. This defaults to 100, but you can set this to any number. However, you should be aware that Sentry has a maximum payload size and any events exceeding that payload size will be dropped.
crashpad_wait_for_upload
| Type | bool |
|---|---|
| Default | false |
Whether Crashpad should delay application shutdown until the upload of the crash report in the crashpad_handler is complete. This is useful for deployment in Docker (Linux and Windows containers) or systemd, where the life cycle of all processes is bound by the root process (typically the application being monitored).
crash_reporting_mode
| Available since | 0.13.2 |
|---|---|
| Type | sentry_crash_reporting_mode_t |
| Default | SENTRY_CRASH_REPORTING_MODE_NATIVE_WITH_MINIDUMP |
Controls which crash report format the native backend sends when the application crashes. This setting only affects the native backend. See Crash Reporting Modes.
minidump_mode
| Available since | 0.13.2 |
|---|---|
| Type | sentry_minidump_mode_t |
| Default | SENTRY_MINIDUMP_MODE_SMART |
Controls how much memory the native backend captures in minidumps. This setting only affects the native backend and crash reporting modes that send a minidump. See Minidump Capture Modes.
propagate_traceparent
| Available since | 0.11.3 |
|---|---|
| Type | bool |
| Default | false |
Controls whether the SDK should propagate the W3C traceparent HTTP header alongside the sentry-trace header for distributed tracing.
If your backend uses an OTel collector with tail-based sampling, see Sentry with OTel for an important interaction with this option.
send_client_reports
| Available since | 0.13.6 |
|---|---|
| Type | bool |
| Default | true |
Set this boolean to false to disable client reports. Client reports are a protocol feature that allows clients to send status information about themselves to Sentry. They’re currently used mainly to report outcomes for events that were never sent.
These options can be used to hook the SDK in various ways to customize the reporting of events.
before_send
| Type | function |
|---|
This function is called with an SDK-specific message or error event object, and can return a modified event object, or sentry_value_new_null() to skip reporting the event. This can be used, for instance, for manual PII stripping before sending.
By the time before_send is executed, all scope data has already been applied to the event. Further modification of the scope won't have any effect.
on_crash
| Type | function |
|---|
This function is called with a backend-specific event object, and can return a modified event object or nothing to skip reporting the event. In contrast to before_send, it is only called when a crash occurred. You can find detailed information concerning its usage in Filtering.
before_transaction
| Type | function |
|---|
This function is called with an SDK-specific transaction event object, and can return a modified transaction event object, or sentry_value_new_null() to skip reporting the event. One way this might be used is for manual PII stripping before sending.
traces_sample_rate
| Type | float |
|---|---|
| Default | 0.0 |
A number between 0.0 and 1.0, controlling the percentage chance a given transaction will be sent to Sentry. (0.0 represents 0% while 1.0 represents 100%.) Applies equally to all transactions created in the app. Either this or traces_sampler must be defined to enable tracing.
traces_sampler
| Type | function |
|---|
A function responsible for determining the percentage chance a given transaction will be sent to Sentry. It will automatically be passed information about the transaction and the context in which it's being created, and must return a number between 0 (0% chance of being sent) and 1 (100% chance of being sent). Can also be used for filtering transactions, by returning 0 for those that are unwanted. Either this or traces_sample_rate must be defined to enable tracing. An example can be found in the Sampling section.
enable_logs
| Type | bool |
|---|---|
| Default | true |
This option enables the logging integration, which allows the SDK to capture logs and send them to Sentry.
before_send_log
| Type | function |
|---|
This function is called with an SDK-specific log object, and can return a modified log object, or sentry_value_new_null() to drop the log.
logs_with_attributes
| Type | bool |
|---|---|
| Default | false |
Whether calls to sentry_log_X() expect an attributes object as the second argument, allowing users to pass in custom log attributes. An example can be found on the Logs page.
These options control in-process app-hang detection. See the App Hangs page for a full explanation and usage example.
enable_app_hang_tracking
| Available since | 0.15.2 |
|---|---|
| Type | bool |
| Default | false |
Enables or disables in-process app-hang detection. When enabled, a background watchdog thread monitors heartbeats from the watched thread. If no heartbeat is received within app_hang_timeout, an app-hang event is captured and sent to Sentry.
Must be combined with regular calls to sentry_app_hang_heartbeat() from the thread you want monitored. The first heartbeat latches the calling thread as the monitored thread; heartbeats from any other thread are ignored.
app_hang_timeout
| Available since | 0.15.2 |
|---|---|
| Type | uint64_t |
| Default | 5000 (milliseconds) |
Sets the app-hang detection timeout, in milliseconds. If enable_app_hang_tracking is enabled and no heartbeat is received from the monitored thread within this window, an app-hang event is captured.
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").