All Projects → getsentry → Sentry Go

getsentry / Sentry Go

Licence: bsd-2-clause
Official Sentry SDK for Go

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Sentry Go

Sentry Laravel
Laravel SDK for Sentry
Stars: ✭ 927 (+123.37%)
Mutual labels:  sentry, error-monitoring, crash-reporting, crash-reports
Sentry Php
The official PHP SDK for Sentry (sentry.io)
Stars: ✭ 1,591 (+283.37%)
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 (+7056.63%)
Mutual labels:  sentry, error-monitoring, crash-reporting, crash-reports
Sentry Cocoa
The official Sentry SDK for iOS, tvOS, macOS, watchOS
Stars: ✭ 370 (-10.84%)
Mutual labels:  sentry, error-monitoring, crash-reporting, crash-reports
Sentry Telegram
Plugin for Sentry which allows sending notification via Telegram messenger.
Stars: ✭ 168 (-59.52%)
Mutual labels:  sentry, error-monitoring, crash-reporting, crash-reports
Ohbug
An open source application information monitoring platform.
Stars: ✭ 101 (-75.66%)
Mutual labels:  error-monitoring, crash-reporting, crash-reports
Bugsnag Cocoa
Bugsnag crash reporting for iOS, macOS and tvOS apps
Stars: ✭ 167 (-59.76%)
Mutual labels:  error-monitoring, 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 (-37.59%)
Mutual labels:  crash-reporting, error-monitoring, sentry
Raven Node
A standalone (Node.js) client for Sentry
Stars: ✭ 462 (+11.33%)
Mutual labels:  error-monitoring, crash-reporting, crash-reports
Raven Csharp
Superseded by: https://github.com/getsentry/sentry-dotnet
Stars: ✭ 231 (-44.34%)
Mutual labels:  error-monitoring, crash-reporting, crash-reports
Sentry Javascript
Official Sentry SDKs for JavaScript. We're hiring https://grnh.se/ca81c1701us
Stars: ✭ 6,012 (+1348.67%)
Mutual labels:  sentry, error-monitoring, crash-reporting
Bugsnag Android
Bugsnag crash monitoring and reporting tool for Android apps
Stars: ✭ 990 (+138.55%)
Mutual labels:  error-monitoring, crash-reporting, crash-reports
Sentry Ruby
Sentry SDK for Ruby
Stars: ✭ 724 (+74.46%)
Mutual labels:  error-monitoring, crash-reporting, crash-reports
Exceptionless
Exceptionless server and jobs
Stars: ✭ 2,107 (+407.71%)
Mutual labels:  error-monitoring, crash-reporting, crash-reports
Raven Go
Sentry client in Go
Stars: ✭ 554 (+33.49%)
Mutual labels:  error-monitoring, crash-reporting, crash-reports
Raven.cr
Raven is a Crystal client for Sentry
Stars: ✭ 96 (-76.87%)
Mutual labels:  sentry, error-monitoring, crash-reporting
Raven Python
Raven is the legacy Python client for Sentry (getsentry.com) — replaced by sentry-python
Stars: ✭ 1,677 (+304.1%)
Mutual labels:  sentry, crash-reporting, crash-reports
Countly Sdk Android
Countly Product Analytics Android SDK
Stars: ✭ 626 (+50.84%)
Mutual labels:  sdk, crash-reporting, crash-reports
sentry-spark
Apache Spark Sentry Integration
Stars: ✭ 14 (-96.63%)
Mutual labels:  crash-reporting, error-monitoring, sentry
raygun4py
Python provider for Raygun
Stars: ✭ 18 (-95.66%)
Mutual labels:  crash-reporting, error-monitoring


Official Sentry SDK for Go

Build Status Go Report Card Discord GoDoc go.dev

sentry-go provides a Sentry client implementation for the Go programming language. This is the next line of the Go SDK for Sentry, intended to replace the raven-go package.

Looking for the old raven-go SDK documentation? See the Legacy client section here. If you want to start using sentry-go instead, check out the migration guide.

Requirements

The only requirement is a Go compiler.

We verify this package against the 3 most recent releases of Go. Those are the supported versions. The exact versions are defined in GitHub workflow.

In addition, we run tests against the current master branch of the Go toolchain, though support for this configuration is best-effort.

Installation

sentry-go can be installed like any other Go library through go get:

$ go get github.com/getsentry/sentry-go

Or, if you are already using Go Modules, you may specify a version number as well:

$ go get github.com/getsentry/[email protected]

Check out the list of released versions.

Configuration

To use sentry-go, you’ll need to import the sentry-go package and initialize it with your DSN and other options.

If not specified in the SDK initialization, the DSN, Release and Environment are read from the environment variables SENTRY_DSN, SENTRY_RELEASE and SENTRY_ENVIRONMENT, respectively.

More on this in the Configuration section of the official Sentry Go SDK documentation.

Usage

The SDK supports reporting errors and tracking application performance.

To get started, have a look at one of our examples:

We also provide a complete API reference.

For more detailed information about how to get the most out of sentry-go, checkout the official documentation:

Resources

License

Licensed under The 2-Clause BSD License, see LICENSE.

Community

Join Sentry's #go channel on Discord to get involved and help us improve the SDK!

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].