All Projects → getsentry → Sentry Cocoa

getsentry / Sentry Cocoa

Licence: mit
The official Sentry SDK for iOS, tvOS, macOS, watchOS

Programming Languages

swift
15916 projects

Projects that are alternatives of or similar to Sentry Cocoa

Sentry Php
The official PHP SDK for Sentry (sentry.io)
Stars: ✭ 1,591 (+330%)
Mutual labels:  sentry, error-monitoring, error-handler, crash-reporting, crash-reports
Sentry Laravel
Laravel SDK for Sentry
Stars: ✭ 927 (+150.54%)
Mutual labels:  sentry, error-monitoring, crash-reporting, crash-reports
Bugsnag Cocoa
Bugsnag crash reporting for iOS, macOS and tvOS apps
Stars: ✭ 167 (-54.86%)
Mutual labels:  tvos, error-monitoring, crash-reporting, crash-reports
Sentry Telegram
Plugin for Sentry which allows sending notification via Telegram messenger.
Stars: ✭ 168 (-54.59%)
Mutual labels:  sentry, error-monitoring, crash-reporting, crash-reports
Raven Node
A standalone (Node.js) client for Sentry
Stars: ✭ 462 (+24.86%)
Mutual labels:  error-monitoring, error-handler, crash-reporting, crash-reports
Sentry Ruby
Sentry SDK for Ruby
Stars: ✭ 724 (+95.68%)
Mutual labels:  error-monitoring, error-handler, crash-reporting, crash-reports
Sentry Go
Official Sentry SDK for Go
Stars: ✭ 415 (+12.16%)
Mutual labels:  sentry, error-monitoring, crash-reporting, crash-reports
Sentry
Sentry is cross-platform application monitoring, with a focus on error reporting.
Stars: ✭ 29,700 (+7927.03%)
Mutual labels:  sentry, error-monitoring, crash-reporting, crash-reports
Countly Sdk Ios
Countly Product Analytics iOS SDK with macOS, watchOS and tvOS support.
Stars: ✭ 585 (+58.11%)
Mutual labels:  tvos, watchos, crash-reporting
Articles
Articles for NSHipster.com
Stars: ✭ 1,166 (+215.14%)
Mutual labels:  tvos, watchos, cocoa
Swiftyattributes
A Swifty API for attributed strings
Stars: ✭ 1,303 (+252.16%)
Mutual labels:  tvos, watchos, cocoa
Impact
Crash capturing library for Apple platforms
Stars: ✭ 395 (+6.76%)
Mutual labels:  tvos, watchos, crash-reporting
Wwdc Notes
WWDCNotes.com content ✨
Stars: ✭ 183 (-50.54%)
Mutual labels:  tvos, watchos, cocoa
Articles Zh Hans
Articles for NSHipster.cn
Stars: ✭ 113 (-69.46%)
Mutual labels:  tvos, watchos, cocoa
articles-ko
Articles for NSHipster.co.kr
Stars: ✭ 18 (-95.14%)
Mutual labels:  tvos, watchos, cocoa
Nshipster.com
A journal of the overlooked bits in Objective-C, Swift, and Cocoa. Updated weekly.
Stars: ✭ 280 (-24.32%)
Mutual labels:  tvos, watchos, cocoa
Raven Python
Raven is the legacy Python client for Sentry (getsentry.com) — replaced by sentry-python
Stars: ✭ 1,677 (+353.24%)
Mutual labels:  sentry, crash-reporting, crash-reports
app
Buggregator is a beautiful, lightweight debug server build on Laravel that helps you catch your smpt, sentry, var-dump, monolog, ray outputs. It runs without installation on multiple platforms.
Stars: ✭ 259 (-30%)
Mutual labels:  crash-reporting, error-monitoring, sentry
backtrace-unity
First-class error reporting for the Unity game engine.
Stars: ✭ 99 (-73.24%)
Mutual labels:  crash-reporting, error-monitoring, error-handler
BlockiesSwift
Unique blocky identicons generator for Swift
Stars: ✭ 53 (-85.68%)
Mutual labels:  tvos, watchos, cocoa


Official Sentry SDK for iOS / tvOS / macOS / watchOS (1).

Bad software is everywhere, and we're tired of it. Sentry is on a mission to help developers write better software faster, so we can get back to enjoying technology. If you want to join us Check out our open positions

Build codebeat badge codecov.io CocoaPods compadible Carthage compatible SwiftPM compatible platforms Swift Package Index Discord Chat

This SDK is written in Objective-C but also provides a nice Swift interface.

Initialization

Remember to call this as early in your application life cycle as possible Ideally in applicationDidFinishLaunching in AppDelegate

import Sentry

// ....

SentrySDK.start { options in
    options.dsn = "___PUBLIC_DSN___"
    options.debug = true // Helpful to see what's going on
}    
@import Sentry;

// ....

[SentrySDK startWithConfigureOptions:^(SentryOptions *options) {
    options.dsn = @"___PUBLIC_DSN___";
    options.debug = @YES; // Helpful to see what's going on
}];

For more information checkout the docs.

(1)limited symbolication support and no crash handling.

Resources

  • Documentation
  • Forum
  • Discord Chat
  • Stack Overflow
  • Code of Conduct
  • Twitter Follow
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].