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 to the init() method as an array:

Copied
\Sentry\init([
    'dsn' => 'https://examplePublicKey@o0.ingest.sentry.io/0',
    'max_breadcrumbs' => 50,
]);

    Options that can be read from an environment variable (SENTRY_DSN, SENTRY_ENVIRONMENT, SENTRY_RELEASE) are read automatically.

    dsn

    Typestring
    ENV VariableSENTRY_DSN

    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.

    logger

    TypeLoggerInterface
    Defaultnull

    If enabled, the SDK prints out debug information about if something went wrong while sending events. It isn't recommended to use this in production.

    Copied
    // This logs messages to the provided file path
    Sentry\init([
        'logger' => new \Sentry\Logger\DebugFileLogger(filePath: ROOT . DS . 'sentry.log'),
    ]);
    
    // This logs messages to stdout
    Sentry\init([
        'logger' => new \Sentry\Logger\DebugStdOutLogger(),
    ]);
    

    release

    Typestring
    ENV VariableSENTRY_RELEASE

    Sets the release. Some SDKs will try to automatically configure a release out of the box but it's a better idea to manually set it to guarantee that the release is in sync with your deploy integrations or source map uploads. 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

    Typestring
    Defaultproduction
    ENV VariableSENTRY_ENVIRONMENT

    Sets the environment. This string is freeform and set to production by default. A release can be associated with more than one environment to separate them in the UI (think staging vs production or similar).

    Copied
    \Sentry\init([
        'environment' => 'production',
    ]);
    

    By default, the SDK will try to read this value from the SENTRY_ENVIRONMENT environment variable.

    max_breadcrumbs

    Typeint
    Default100

    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.

    attach_stacktrace

    Typebool
    Defaultfalse

    When enabled, stack traces are automatically attached to all messages logged. Stack traces are always attached to exceptions; however, when this option is set, stack traces are also sent with messages. This option, for instance, means that stack traces appear next to all log messages.

    Grouping in Sentry is different for events with stack traces and without. As a result, you will get new groups as you enable or disable this flag for certain events.

    send_default_pii

    Typebool
    Defaultfalse

    If this flag is enabled, certain personally identifiable information (PII) is added by active integrations.

    This option is turned off by default.

    If you enable this option, be sure to manually remove what you don't want to send using our features for managing Sensitive Data.

    server_name

    Typestring
    Defaultgethostname()

    This option can be used to supply a server name. When provided, the name of the server is sent along and persisted in the event. For many integrations, the server name actually corresponds to the device hostname, even in situations where the machine is not actually a server.

    in_app_include

    Typestring[]
    Default[]

    A list of string prefixes of module names that belong to the app. This option takes precedence over in_app_exclude.

    Sentry differentiates stack frames that are directly related to your application ("in application") from stack frames that come from other packages such as the standard library, frameworks, or other dependencies. The application package is automatically marked as inApp. The difference is visible in sentry.io, where only the "in application" frames are displayed by default.

    in_app_exclude

    Typestring[]
    Default[]

    A list of string prefixes of module names that do not belong to the app, but rather to third-party packages. Modules considered not part of the app will be hidden from stack traces by default.

    This option can be overridden using in_app_include.

    max_request_body_size

    Typestring
    Defaultmedium

    This parameter controls whether integrations should capture HTTP request bodies. It can be set to one of the following values:

    • never: Request bodies are never sent.
    • small: Only small request bodies will be captured. The cutoff for small depends on the SDK (typically 4KB).
    • medium: Medium and small requests will be captured (typically 10KB).
    • always: The SDK will always capture the request body as long as Sentry can make sense of it.

    max_value_length

    Typeint
    Default1024

    The number of characters after which the values containing text in the event payload will be truncated.

    before_breadcrumb

    Typefunction (Breadcrumb $breadcrumb): Breadcrumb

    This function is called with an SDK-specific breadcrumb object before the breadcrumb is added to the scope. When nothing is returned from the function, the breadcrumb is dropped. To pass the breadcrumb through, return the first argument, which contains the breadcrumb object.

    The callback typically gets a second argument (called a "hint") which contains the original object from which the breadcrumb was created to further customize what the breadcrumb should look like.

    sample_rate

    Typefloat
    Default1.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.

    before_send

    Typefunction (Event $event): Event

    This function is called with an SDK-specific message or error event object, and can return a modified event object, or 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.

    ignore_exceptions

    Typestring[]

    A list of class names that matches exceptions that shouldn't be sent to Sentry. Checks whether the provided class name is of a given type or subtype.

    error_types

    Typeint
    DefaultE_ALL

    Sets which errors are reported. It takes the same values as PHP's error_reporting configuration parameter.

    By default all types of errors are be reported (equivalent to E_ALL).

    context_lines

    Typeint
    Default5

    The number of context lines for each frame in the stack trace when loading a file.

    traces_sample_rate

    Typefloat
    Defaultnull

    A number between 0 and 1, controlling the percentage chance a given transaction will be sent to Sentry. (0 represents 0% while 1 represents 100%.) Applies equally to all transactions created in the app.

    Either this or traces_sampler must be defined to enable tracing.

    traces_sampler

    Typefunction
    Defaultnull

    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.

    ignore_transactions

    Typestring[]

    A list of strings that match transaction names that shouldn't be sent to Sentry.

    before_send_transaction

    Typefunction (Event $transaction): Event

    This function is called with an SDK-specific transaction event object, and can return a modified transaction event object, or null to skip reporting the event. One way this might be used is for manual PII stripping before sending.

    trace_propagation_targets

    Typestring[]
    Defaultnull

    An optional property that controls which downstream services receive tracing data, in the form of a sentry-trace and a baggage header attached to any outgoing HTTP requests.

    The option may contain a list of strings against which the hosts of outgoing requests are matched. If one of the entries in the list matches the host of an outgoing request, trace data will be attached to that request.

    If trace_propagation_targets is not provided (or set to null), trace data is attached to every outgoing request from the instrumented client. To disable sending trace data to any downstream service, set this option to an empty array ([]).

    before_send_check_in

    Typefunction (Event $checkIn): Event

    This function is called with an SDK-specific check-in event object, and can return a modified check-in event object, or null to skip reporting the event.

    Transports are used to send events to Sentry. Transports can be customized to some degree to better support highly specific deployments.

    transport

    TypeTransportInterface
    Defaultnull

    Switches out the transport used to send events. How this works depends on the SDK. It can, for instance, be used to capture events for unit-testing or to send it through some more complex setup that requires proxy authentication.

    http_proxy

    Typestring
    Defaultnull

    When set, a proxy can be configured that should be used for outbound requests. This is also used for HTTPS requests unless a separate https_proxy is configured. However, not all SDKs support a separate HTTPS proxy. SDKs will attempt to default to the system-wide configured proxy, if possible. For instance, on Unix systems, the http_proxy environment variable will be picked up.

    http_connect_timeout

    Typeint
    Default2

    The maximum number of seconds to wait while trying to connect to a server.

    http_timeout

    Typeint
    Default5

    The maximum execution time, in seconds, for the request+response as a whole. The value should also include the time for the connect phase, so it should be greater than the value set for the http_connect_timeout option.

    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").