APIs
Learn more about APIs of the SDK.
This page shows all available top-level APIs of the SDK. You can use these APIs as the primary way to:
- Configure the SDK after initialization
- Manually capture different types of events
- Enrich events with additional data
- ... and more!
These APIs are functions that you can use as follows - they are all available on the top-level Sentry
object:
import * as Sentry from "@sentry/browser";
Sentry.setTag("tag", "value");
init
function init(options: InitOptions): Client | undefined
Initialize the SDK with the given options. See Options for the options you can pass to init
.
getClient
function getClient(): Client | undefined
Returns the currently active client.
setCurrentClient
function setCurrentClient(client: Client): void
Make the given client the current client. You do not need this if you use init()
, this is only necessary if you are manually setting up a client.
lastEventId
function lastEventId(): string | undefined
Returns the ID of the last sent error event. Note that this does not guarantee that this event ID exists, as it may have been dropped along the way.
flush
function flush(timeout?: number): Promise<boolean>
Flushes all pending events.
isEnabled
function isEnabled(): boolean
Returns true if the SDK is initialized & enabled.
close
function close(timeout?: number): Promise<boolean>
Flushes all pending events and disables the SDK. Note that this does not remove any listeners the SDK may have set up. After a call to close
, the current client cannot be used anymore. It's important to only call close
immediately before shutting down the application.
Alternatively, the flush
method drains the event queue while keeping the client enabled for continued use.
addEventProcessor
function addEventProcessor(processor: EventProcessor): void
Adds an event processor to the SDK. An event processor receives every event before it is sent to Sentry. It can either mutate the event (and return it) or return null
to discard the event. Event processors can also return a promise, but it is recommended to use this only when necessary as it slows down event processing.
Event processors added via Sentry.addEventProcessor()
will be applied to all events in your application. If you want to add an event processor that only applies to certain events, you can also add one to a scope as follows:
Sentry.withScope((scope) => {
scope.addEventProcessor((event) => {
// this will only be applied to events captured within this scope
return event;
});
Sentry.captureException(new Error("test"));
});
addIntegration
function addIntegration(integration: Integration): void
Adds an integration to the SDK. This can be used to conditionally add integrations after Sentry.init()
has been called. Note that it is recommended to pass integrations to init
instead of calling this method, where possible.
See Integrations for more information on how to use integrations.
captureException
function captureException( exception: unknown, captureContext?: CaptureContext ): EventId
Capture an exception event and send it to Sentry. Note that you can pass not only Error
objects, but also other objects as exception
- in that case, the SDK will attempt to serialize the object for you, and the stack trace will be generated by the SDK and may be less accurate.
captureMessage
function captureMessage( message: string, captureContext?: CaptureContext | SeverityLevel ): EventId
Capture a message event and send it to Sentry. Optionally, instead of a CaptureContext
, you can also pass a SeverityLevel
as second argument, e.g. "error"
or "warning"
.
Messages show up as issues on your issue stream, with the message as the issue name.
setTag
function setTag(key: string, value: string): void
Set a tag to be sent with Sentry events.
setTags
function setTags(tags: Record<string, string>): void
Set multiple tags to be sent with Sentry events.
setContext
function setContext(name: string, context: Record<string, unknown>): void
Set a context to be sent with Sentry events.
setExtra
function setExtra(name: string, extra: unknown): void
Set additional data to be sent with Sentry events.
setExtras
function setExtras(extras: Record<string, unknown>): void
Set multiple additional data entries to be sent with Sentry events.
setUser
function setUser(user: User | null): void
Set a user to be sent with Sentry events. Set to null
to unset the user.
addBreadcrumb
function addBreadcrumb(breadcrumb: Breadcrumb, hint?: Hint): void
You can manually add breadcrumbs whenever something interesting happens. For example, you might manually record a breadcrumb if the user authenticates or another state change occurs.
startSpan
function startSpan<T>(options: StartSpanOptions, callback: (span: Span) => T): T
Starts a new span, that is active in the provided callback. This span will be a child of the currently active span, if there is one.
Any spans created inside of the callback will be children of this span.
The started span will automatically be ended when the callback returns, and will thus measure the duration of the callback. The callback cann also be an async function.
See Tracing Instrumentation for more information on how to work with spans.
startInactiveSpan
function startInactiveSpan<T>(options: StartSpanOptions): Span
Starts a new span. This span will be a child of the currently active span, if there is one. The returned span has to be ended manually via span.end()
when the span is done.
See Tracing Instrumentation for more information on how to work with spans.
startSpanManual
function startSpanManual<T>(options: StartSpanOptions, callback: (span: Span) => T): T
Starts a new span, that is active in the provided callback. This span will be a child of the currently active span, if there is one.
Any spans created inside of the callback will be children of this span.
The started span will not automatically end - you have to call span.end()
when the span is done. Please note that the span will still only be the parent span of spans created inside of the callback, while the callback is active. In most cases, you will want to use startSpan
or startInactiveSpan
instead.
See Tracing Instrumentation for more information on how to work with spans.
continueTrace
function continueTrace<T>(options: TraceOptions, callback: () => T): T
Continues a trace in the provided callback. Any spans created inside of the callback will be linked to the trace.
suppressTracing
function suppressTracing<T>(callback: () => T): T
Ensure that all spans created inside of the provided callback are not sent to Sentry.
startNewTrace
function startNewTrace<T>(callback: () => T): T
Start a new trace that is active in the provided callback.
These utilities can be used for more advanced tracing use cases.
spanToJSON
function spanToJSON(span: Span): SpanJSON
Convert a span to a JSON object.
updateSpanName
function updateSpanName(span: Span, name: string): void
Update the name of a span. Use this over span.updateName(name)
to ensure that the span is updated in all backends.
getActiveSpan
function getActiveSpan(): Span | undefined
Get the currently active span.
getRootSpan
function getRootSpan(span: Span): Span
Get the root span of a span.
withActiveSpan
function withActiveSpan<T>(span: Span | null, callback: () => T): T
Runs the provided callback with the given span as the active span. If null
is provided, the callback will have no active span.
Sessions allow you to track the release health of your application. See the Releases & Health page for more information.
startSession
function startSession(): void
Starts a new session.
endSession
function endSession(): void
Ends the current session (but does not send it to Sentry).
captureSession
function captureSession(end = false): void
Sends the current session on the scope to Sentry. Pass true
as argument to end the session first.
See Scopes for more information on how to use scopes, as well as for an explanation of the different types of scopes (current scope, isolation scope, and global scope).
withScope
function withScope(callback: (scope: Scope) => void): void
Forks the current scope and calls the callback with the forked scope.
withIsolationScope
function withIsolationScope(callback: (scope: Scope) => void): void
Forks the current isolation scope and calls the callback with the forked scope.
getCurrentScope
function getCurrentScope(): Scope
Returns the current scope.
Note that in most cases you should not use this API, but instead use withScope
to generate and access a local scope. There are no guarantees about the consistency of getCurrentScope
across different parts of your application, as scope forking may happen under the hood at various points.
captureFeedback
function captureFeedback(feedback: Feedback, hint?: Hint): string
Send user feedback to Sentry.
getFeedback
function getFeedback(): ReturnType<feedbackIntegration> | undefined
Get the feedback integration, if it has been added. This can be used to access the feedback integration in a type-safe way.
sendFeedback
function sendFeedback(feedback: Feedback, hint?: Hint): Promise<string>
This method is similar to captureFeedback
, but it returns a promise that resolves only when the feedback was successfully sent to Sentry. It will reject if the feedback cannot be sent.
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").