This is a very basic C++-11 client for Sentry (https://sentry.io/)
Wrote this in a day so it's not tested properly.
- CPP-Netlib (http://cpp-netlib.org/)
- JSON for Modern C++ (https://github.com/nlohmann/json)
-
Please see dependencies above.
-
This is a header only library so no need to build anything. Just include "sentry.hpp" and link the dependencies with your executable / library.
-
To build the test:
git clone [email protected]:shikharkhattar/sentry-cpp.git
cd sentry-cpp
mkdir build
cd build
cmake ..
make
See test/test.cpp (Change the Sentry DSN)
- Sentry API documentation is [here] (https://docs.sentry.io/clientdev/overview/) but only the minimum required functionality is provided as of now.
- Lots of TODOs scattered around the code which should reflect the open issues.
MIT License. Please see LICENSE