Main API¶
- class sentry_sdk.Client(dsn=None, with_locals=True, max_breadcrumbs=100, release=None, environment=None, server_name=None, shutdown_timeout=2, integrations=[], in_app_include=[], in_app_exclude=[], default_integrations=True, dist=None, transport=None, transport_queue_size=100, sample_rate=1.0, send_default_pii=False, http_proxy=None, https_proxy=None, ignore_errors=[], request_bodies='medium', before_send=None, before_breadcrumb=None, debug=False, attach_stacktrace=False, ca_certs=None, propagate_traces=True, traces_sample_rate=None, traces_sampler=None, auto_enabling_integrations=True, auto_session_tracking=True, send_client_reports=True, _experiments={})[source]¶
- capture_event(event, hint=None, scope=None)¶
Captures an event.
- Parameters
- Return type
- Returns
An event ID. May be None if there is no DSN set or of if the SDK decided to discard the event for other reasons. In such situations setting debug=True on init() may help.
- close(timeout=None, callback=None)¶
Close the client and shut down the transport. Arguments have the same semantics as
Client.flush()
.- Return type
- flush(timeout=None, callback=None)¶
Wait for the current events to be sent.
- class sentry_sdk.HttpTransport(options)[source]¶
The default HTTP transport.
- capture_envelope(envelope)[source]¶
Send an envelope to Sentry.
Envelopes are a data container format that can hold any type of data submitted to Sentry. We use it for transactions and sessions, but regular “error” events should go through capture_event for backwards compat.
- Return type
- capture_event(event)[source]¶
This gets invoked with the event dictionary when an event should be sent to sentry.
- Return type
- class sentry_sdk.Hub(client_or_hub=None, scope=None)[source]¶
The hub wraps the concurrency management of the SDK. Each thread has its own hub but the hub might transfer with the flow of execution if context vars are available.
If the hub is used with a with statement it’s temporarily activated.
- capture_event(event, hint=None, scope=None, **scope_args)[source]¶
Captures an event. Alias of
sentry_sdk.Client.capture_event()
.
- capture_exception(error=None, scope=None, **scope_args)[source]¶
Captures an exception.
- Parameters
error (
Union
[BaseException
,Tuple
[Optional
[Type
[BaseException
],None
],Optional
[BaseException
,None
],Optional
[traceback
,None
]],None
]) – An exception to catch. If None, sys.exc_info() will be used.- Return type
- Returns
An event_id if the SDK decided to send the event (see
sentry_sdk.Client.capture_event()
).
- capture_message(message, level=None, scope=None, **scope_args)[source]¶
Captures a message. The message is just a string. If no level is provided the default level is info.
- Return type
- Returns
An event_id if the SDK decided to send the event (see
sentry_sdk.Client.capture_event()
).
- flush(timeout=None, callback=None)[source]¶
Alias for
sentry_sdk.Client.flush()
- Return type
- get_integration(name_or_class)[source]¶
Returns the integration for this hub by name or class. If there is no client bound or the client does not have that integration then None is returned.
If the return value is not None the hub is guaranteed to have a client attached.
- Return type
- iter_trace_propagation_headers(span=None)[source]¶
Return HTTP headers which allow propagation of trace data. Data taken from the span representing the request, if available, or the current span on the scope if not.
- pop_scope_unsafe()[source]¶
Pops a scope layer from the stack.
Try to use the context manager
push_scope()
instead.
- resume_auto_session_tracking()[source]¶
Resumes automatic session tracking for the current scope if disabled earlier. This requires that generally automatic session tracking is enabled.
- Return type
- run(callback)[source]¶
Runs a callback in the context of the hub. Alternatively the with statement can be used on the hub directly.
- Return type
~T
- start_span(span=None, **kwargs)[source]¶
Create and start timing a new span whose parent is the currently active span or transaction, if any. The return value is a span instance, typically used as a context manager to start and stop timing in a with block.
Only spans contained in a transaction are sent to Sentry. Most integrations start a transaction at the appropriate time, for example for every incoming HTTP request. Use start_transaction to start a new transaction when one is not already in progress.
- Return type
Span
- start_transaction(transaction=None, **kwargs)[source]¶
Start and return a transaction.
Start an existing transaction if given, otherwise create and start a new transaction with kwargs.
This is the entry point to manual tracing instrumentation.
A tree structure can be built by adding child spans to the transaction, and child spans to other spans. To start a new child span within the transaction or any span, call the respective .start_child() method.
Every child span must be finished before the transaction is finished, otherwise the unfinished spans are discarded.
When used as context managers, spans and transactions are automatically finished at the end of the with block. If not using context managers, call the .finish() method.
When the transaction is finished, it will be sent to Sentry with all its finished child spans.
- Return type
Transaction
- class sentry_sdk.Scope[source]¶
The scope holds extra information that should be sent with all events that belong to it.
- add_attachment(bytes=None, filename=None, path=None, content_type=None, add_to_transactions=False)[source]¶
Adds an attachment to future events sent.
- Return type
- add_error_processor(func, cls=None)[source]¶
Register a scope local error processor on the scope.
- Parameters
func (
Callable
[[Dict
[str
,Any
],Tuple
[Optional
[Type
[BaseException
],None
],Optional
[BaseException
,None
],Optional
[traceback
,None
]]],Optional
[Dict
[str
,Any
],None
]]) – A callback that works similar to an event processor but is invoked with the original exception info triple as second argument.cls (
Optional
[Type
[BaseException
],None
]) – Optionally, only process exceptions of this type.
- Return type
- apply_to_event(event, hint)[source]¶
Applies the information contained on the scope to the given event.
- property fingerprint¶
When set this overrides the default fingerprint.
- property level¶
When set this overrides the level. Deprecated in favor of set_level.
- property user¶
When set a specific user is bound to the scope. Deprecated in favor of set_user.
- class sentry_sdk.Transport(options=None)[source]¶
Baseclass for all transports.
A transport is used to send an event to sentry.
- capture_envelope(envelope)[source]¶
Send an envelope to Sentry.
Envelopes are a data container format that can hold any type of data submitted to Sentry. We use it for transactions and sessions, but regular “error” events should go through capture_event for backwards compat.
- Return type
- capture_event(event)[source]¶
This gets invoked with the event dictionary when an event should be sent to sentry.
- Return type
- sentry_sdk.add_breadcrumb(crumb=None, hint=None, **kwargs)[source]¶
Alias for
sentry_sdk.Hub.add_breadcrumb()
Adds a breadcrumb.
- sentry_sdk.capture_event(event, hint=None, scope=None, **scope_args)[source]¶
Alias for
sentry_sdk.Hub.capture_event()
Captures an event. Alias of
sentry_sdk.Client.capture_event()
.
- sentry_sdk.capture_exception(error=None, scope=None, **scope_args)[source]¶
Alias for
sentry_sdk.Hub.capture_exception()
Captures an exception.
- Parameters
error (
Union
[BaseException
,Tuple
[Optional
[Type
[BaseException
],None
],Optional
[BaseException
,None
],Optional
[traceback
,None
]],None
]) – An exception to catch. If None, sys.exc_info() will be used.- Return type
- Returns
An event_id if the SDK decided to send the event (see
sentry_sdk.Client.capture_event()
).
- sentry_sdk.capture_message(message, level=None, scope=None, **scope_args)[source]¶
Alias for
sentry_sdk.Hub.capture_message()
Captures a message. The message is just a string. If no level is provided the default level is info.
- Return type
- Returns
An event_id if the SDK decided to send the event (see
sentry_sdk.Client.capture_event()
).
- sentry_sdk.configure_scope(callback=None)[source]¶
Alias for
sentry_sdk.Hub.configure_scope()
Reconfigures the scope.
- sentry_sdk.flush(timeout=None, callback=None)[source]¶
Alias for
sentry_sdk.Hub.flush()
Alias for
sentry_sdk.Client.flush()
- Return type
- sentry_sdk.last_event_id()[source]¶
Alias for
sentry_sdk.Hub.last_event_id()
Returns the last event ID.
- sentry_sdk.push_scope(callback=None)[source]¶
Alias for
sentry_sdk.Hub.push_scope()
Pushes a new layer on the scope stack.
- sentry_sdk.set_context(key, value)[source]¶
Alias for
sentry_sdk.Scope.set_context()
Binds a context at a certain key to a specific value.
- Return type
- sentry_sdk.set_extra(key, value)[source]¶
Alias for
sentry_sdk.Scope.set_extra()
Sets an extra key to a specific value.
- Return type
- sentry_sdk.set_level(value)[source]¶
Alias for
sentry_sdk.Scope.set_level()
Sets the level for the scope.
- Return type
- sentry_sdk.set_tag(key, value)[source]¶
Alias for
sentry_sdk.Scope.set_tag()
Sets a tag for a key to a specific value.
- Return type
- sentry_sdk.set_user(value)[source]¶
Alias for
sentry_sdk.Scope.set_user()
Sets a user for the scope.
- Return type
- sentry_sdk.start_span(span=None, **kwargs)[source]¶
Alias for
sentry_sdk.Hub.start_span()
Create and start timing a new span whose parent is the currently active span or transaction, if any. The return value is a span instance, typically used as a context manager to start and stop timing in a with block.
Only spans contained in a transaction are sent to Sentry. Most integrations start a transaction at the appropriate time, for example for every incoming HTTP request. Use start_transaction to start a new transaction when one is not already in progress.
- Return type
Span
- sentry_sdk.start_transaction(transaction=None, **kwargs)[source]¶
Alias for
sentry_sdk.Hub.start_transaction()
Start and return a transaction.
Start an existing transaction if given, otherwise create and start a new transaction with kwargs.
This is the entry point to manual tracing instrumentation.
A tree structure can be built by adding child spans to the transaction, and child spans to other spans. To start a new child span within the transaction or any span, call the respective .start_child() method.
Every child span must be finished before the transaction is finished, otherwise the unfinished spans are discarded.
When used as context managers, spans and transactions are automatically finished at the end of the with block. If not using context managers, call the .finish() method.
When the transaction is finished, it will be sent to Sentry with all its finished child spans.
- Return type
Transaction