nlohmann / crow

Crow - a C++ client for Sentry
https://nlohmann.github.io/crow
MIT License
133 stars 28 forks source link
cpp sentry sentry-client

Crow - a C++ client for Sentry

Build Status Build status Coverage Status Documentation GitHub license GitHub Issues Average time to resolve an issue

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.

API

Setup

Reporting

Context management

See the documentation for a complete overview of the public API.

Requirements for Sentry SDKs

The following items from the SDK implementation guidelines are realized at the moment:

Change Log

Version 0.0.6

Version 0.0.5

Version 0.0.4

Version 0.0.3

Version 0.0.2

Version 0.0.1

Prerequisites

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.

License

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.

Used third-party tools

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!