BugSnag automatically captures a variety of data to help you debug your errors. You may wish to avoid capturing some types of data, particularly if there are privacy implications for your users.
Modifying error information may affect error grouping.
Data | Default value | Preventing collection |
---|---|---|
Context | The name of the task executor object | Modify context in a callback |
Error class | The class name of the exception | Modify errors[].error_class in a callback |
Error message | The message of the error that occurred | Modify errors[].error_message in a callback |
Stack trace | The stack trace (traceback) of the error that occurred, including file names line numbers and surrounding lines of code | Modify errors[].stacktrace in a callback |
Contextual information is collected from the Celery task.
Data | Default value | Preventing collection |
---|---|---|
Task ID | The ID of the task | Modify metadata['extra_data'] in a callback |
Args | Array of positional arguments the task was called with | Modify metadata['extra_data'] in a callback |
Kwargs | Dictionary of keyword arguments the task was called with | Modify metadata['extra_data'] in a callback |
If the logging integration is used, some contextual information is collected to populate the “extra data” tab.
Data | Default value | Preventing collection |
---|---|---|
asctime |
The formatted time string of when the log occurred | Modify metadata['extra_data'] in a callback |
Created | The time the log occurred | Modify metadata['extra_data'] in a callback |
Level name | The text level of the log | Modify metadata['extra_data'] in a callback |
Level number | The numeric level of the log | Modify metadata['extra_data'] in a callback |
msecs |
The milliseconds portion of the created time | Modify metadata['extra_data'] in a callback |
Name | The name of the logger | Modify metadata['extra_data'] in a callback |
Process | The ID of the running process | Modify metadata['extra_data'] in a callback |
Process name | The name of the running process | Modify metadata['extra_data'] in a callback |
Data | Default value | Preventing collection |
---|---|---|
Log messages | The log message and its level. Only collected when using the breadcrumb log filter. | Set enabled_breadcrumb_types or modify/discard the breadcrumb in an on_breadcrumb callback |