C++ Error Monitoring

Debug C++ apps and prevent crashes across your entire stack with Sentry. Resolve issues with an C++ monitoring workflow that actually improves the debugging process.

Getting Started is Simple

The Native SDK supports Windows, macOS, Linux, and Android. CMake can be used like this (on macOS):

Click to Copy
# configure the cmake build into the `build` directory, with crashpad (on macOS) cmake -B build -D SENTRY_BACKEND=crashpad --config RelWithDebInfo # build the project cmake --build build --config RelWithDebInfo --parallel # install the resulting artifacts into a specific prefix cmake --install build --prefix install # which will result in the following (on macOS): exa --tree install

Import and initialize the Sentry SDK early in your application setup:

Click to Copy
#include <sentry.h> int main(void) { sentry_options_t *options = sentry_options_new(); sentry_options_set_dsn(options, "https://[email protected]/5202964"); sentry_options_set_release(options, "[email protected]"); sentry_init(options); /* ... */ // make sure everything flushes sentry_shutdown(); }

Check our documentation for the latest instructions.

See all platforms

C++ Monitoring with Complete Stack Traces

See details like filename and line numbers so you never have to guess with C++ errors. Filter and group C++ exceptions intuitively to eliminate noise. Monitor errors at scale without impacting throughput in production.

More Than Just Bug Tracking

Use issue graphs to understand the frequency, scope, and impact ofC++ errors so you can prioritize what needs to be fixed. Get alerts via email, SMS, or chat when bugs make it into production without disrupting your development workflow.

Insights Delivered

Get real-time insights immediately. Setup takes just a few minutes and typically requires only two lines of code. If you need help, we’ve built a full documentation library to handle any debugging scenario.

“Sentry has become mission-critical to the way we build and ship software.”

Daniel Lopez Ridruejo
Senior Director of Cloud Services, Bitnami

See the Full Picture of Any C++ Exception

Understand the context that contributed to errors with tags and relevant information about your software, environment, and users.

You can also submit optional custom data to provide extra context for bug tracking that is unique to your application and business.

Find answers to the key questions: Which users are experiencing this bug? What was the value of their shopping cart?

It’s why companies that don’t have a complete view of their infrastructure are being punished:

The average cost of network downtime is around $5,600 per minute — or $300,000 per hour.

1 out of 5 online shoppers will abandon their cart because the transaction process was too slow.

On average, a two-second slowdown in page load decreases revenues by 4.3 percent.

FAQs

Supporting Resources

Sentry Native Docs

A better experience for your users. An easier life for your developers.

© 2025 • Sentry is a registered Trademark of Functional Software, Inc.