All Projects → backtrace-labs → backtrace-unity

backtrace-labs / backtrace-unity

Licence: other
First-class error reporting for the Unity game engine.

Programming Languages

C#
18002 projects
java
68154 projects - #9 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to backtrace-unity

Bugsnag Python
Official bugsnag error monitoring and error reporting for django, flask, tornado and other python apps.
Stars: ✭ 69 (-30.3%)
Mutual labels:  crash-reporting, error-monitoring, crash, error-reporting
bugsnag-java
Bugsnag error reporting for Java.
Stars: ✭ 51 (-48.48%)
Mutual labels:  crash-reporting, error-monitoring, crash, error-reporting
Bugsnag Android
Bugsnag crash monitoring and reporting tool for Android apps
Stars: ✭ 990 (+900%)
Mutual labels:  crash-reporting, error-monitoring, crash, error-reporting
Bugsnag Node
[DEPRECATED] Please upgrade to our Universal JS notifier "@bugsnag/js" • https://github.com/bugsnag/bugsnag-js
Stars: ✭ 48 (-51.52%)
Mutual labels:  crash-reporting, error-monitoring, error-handler, error-reporting
Bugsnag Laravel
Bugsnag notifier for the Laravel PHP framework. Monitor and report Laravel errors.
Stars: ✭ 746 (+653.54%)
Mutual labels:  crash-reporting, error-monitoring, crash, error-reporting
Bugsnag Go
Automatic panic monitoring for Go and Go web frameworks, like negroni, gin, and revel
Stars: ✭ 155 (+56.57%)
Mutual labels:  crash-reporting, error-monitoring, crash, error-reporting
Bugsnag React Native
Error monitoring and reporting tool for native exceptions and JS errors in React Native apps
Stars: ✭ 374 (+277.78%)
Mutual labels:  crash-reporting, error-monitoring, crash, error-reporting
Bugsnag Php
Bugsnag error monitoring and crash reporting tool for PHP apps
Stars: ✭ 475 (+379.8%)
Mutual labels:  crash-reporting, error-monitoring, crash, error-reporting
Sentry Cocoa
The official Sentry SDK for iOS, tvOS, macOS, watchOS
Stars: ✭ 370 (+273.74%)
Mutual labels:  crash-reporting, error-monitoring, error-handler
Bugsnag Android Ndk
DEPRECATED - this project now lives at bugsnag/bugsnag-android
Stars: ✭ 42 (-57.58%)
Mutual labels:  crash-reporting, error-monitoring, error-reporting
bugsnag-symfony
Bugsnag notifier for the Symfony PHP framework. Monitor and report errors in your Symfony apps.
Stars: ✭ 42 (-57.58%)
Mutual labels:  crash-reporting, error-monitoring, error-reporting
Raven Node
A standalone (Node.js) client for Sentry
Stars: ✭ 462 (+366.67%)
Mutual labels:  crash-reporting, error-monitoring, error-handler
Bugsnag Js
Javascript error handling tool for Bugsnag. Monitor and report JavaScript bugs & errors.
Stars: ✭ 625 (+531.31%)
Mutual labels:  crash-reporting, error-monitoring, error-reporting
Exceptionless
Exceptionless server and jobs
Stars: ✭ 2,107 (+2028.28%)
Mutual labels:  crash-reporting, error-monitoring, error-reporting
Sentry Php
The official PHP SDK for Sentry (sentry.io)
Stars: ✭ 1,591 (+1507.07%)
Mutual labels:  crash-reporting, error-monitoring, error-handler
Bugsnag Cocoa
Bugsnag crash reporting for iOS, macOS and tvOS apps
Stars: ✭ 167 (+68.69%)
Mutual labels:  crash-reporting, error-monitoring, error-reporting
kotlin-multiplatform-example
A Kotlin multiplatform example app that targets Android, ReactJS, iOS, JavaFx, and Spring Boot
Stars: ✭ 115 (+16.16%)
Mutual labels:  crash-reporting, error-monitoring, crash
raygun4ruby
The Ruby & Ruby on Rails provider for Raygun
Stars: ✭ 37 (-62.63%)
Mutual labels:  crash-reporting, error-monitoring, error-reporting
Sentry Ruby
Sentry SDK for Ruby
Stars: ✭ 724 (+631.31%)
Mutual labels:  crash-reporting, error-monitoring, error-handler
Ohbug
An open source application information monitoring platform.
Stars: ✭ 101 (+2.02%)
Mutual labels:  crash-reporting, error-monitoring, error-reporting

Backtrace Integration with Unity

openupm

Backtrace's integration with Unity allows you to capture and report log errors, handled and unhandled Unity exceptions, and native crashes so you can prioritize and debug software errors.

Installation

# Install openupm-cli
npm install -g openupm-cli

# Go to your Unity project directory
cd YOUR_UNITY_PROJECT_DIR

# Install the latest io.backtrace.unity package
openupm add io.backtrace.unity

Usage

 //Read from manager BacktraceClient instance
var backtraceClient = GameObject.Find("_Manager").GetComponent<BacktraceClient>();
try
{
    //throw exception here
}
catch(Exception exception)
{
    var report = new BacktraceReport(exception);
    backtraceClient.Send(report);
}

Documentation

For more information about the Unity integration, including installation, usage, and configuration options, see the Unity Integration guide in the Sauce Labs documentation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].