Sentry is such a useful tool, but there is currently no official support for C++. Crow is an official Sentry client for C++ that tries to fill this gap to allow for Sentry notifications in long-running C++ applications where you do not want to constantly look at log files.
nlohmann::crow::crow(dsn, context={}, sample_rate=1.0, install_handlers=true)
to create a clientnlohmann::crow::install_handler()
to later install termination handlernlohmann::crow::capture_message(message, attributes={}, async=true)
to send a messagenlohmann::crow::capture_exception(exception, context={}, async=true, handled=true)
to send an exceptionnlohmann::crow::add_breadcrumb(message, attributes={})
to add a breadcrumbnlohmann::crow::get_last_event_id()
to get the id of the last eventnlohmann::crow::get_context()
to return current contextnlohmann::crow::add_user_context(const json& data)
to add data to the user contextnlohmann::crow::add_tags_context(const json& data)
to add data to the tags contextnlohmann::crow::add_request_context(const json& data)
to add data to the request contextnlohmann::crow::add_extra_context(const json& data)
to add data to the extra contextnlohmann::crow::merge_context(const json& context)
to merge context informationnlohmann::crow::clear_context()
to reset contextSee the documentation for a complete overview of the public API.
The following items from the SDK implementation guidelines are realized at the moment:
You need libcurl, zlib, and a C++11 compiler to use the library.
Curl should be detected by CMake. If this does not work, you can download libcurl
and zlib and pass the path to the source release folder to CMake via
-DCROW_EXTERNAL_CURL_PROJECT=curl-7.61.0
and -DCROW_EXTERNAL_ZLIB_PROJECT=zlib-1.2.11
.
This libcurl and zlib is then built and linked.
The class is licensed under the MIT License:
Copyright © 2018 Niels Lohmann
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
The library itself consists of a single header file licensed under the MIT license. However, it is built, tested, documented, and whatnot using a lot of third-party tools and services. Thanks a lot!