All Projects → getsentry → Sentry Kubernetes

getsentry / Sentry Kubernetes

Licence: apache-2.0
Kubernetes event reporter for Sentry

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Sentry Kubernetes

Raven Python
Raven is the legacy Python client for Sentry (getsentry.com) — replaced by sentry-python
Stars: ✭ 1,677 (+386.09%)
Mutual labels:  monitoring, sentry, crash-reporting
Sentry
Sentry is cross-platform application monitoring, with a focus on error reporting.
Stars: ✭ 29,700 (+8508.7%)
Mutual labels:  monitoring, sentry, crash-reporting
Bugsnag Js
Javascript error handling tool for Bugsnag. Monitor and report JavaScript bugs & errors.
Stars: ✭ 625 (+81.16%)
Mutual labels:  monitoring, crash-reporting
Bugsnag Python
Official bugsnag error monitoring and error reporting for django, flask, tornado and other python apps.
Stars: ✭ 69 (-80%)
Mutual labels:  monitoring, crash-reporting
Ohbug
An open source application information monitoring platform.
Stars: ✭ 101 (-70.72%)
Mutual labels:  monitoring, crash-reporting
Sentry Php
The official PHP SDK for Sentry (sentry.io)
Stars: ✭ 1,591 (+361.16%)
Mutual labels:  sentry, crash-reporting
Raven Weapp
Sentry SDK for WeApp
Stars: ✭ 142 (-58.84%)
Mutual labels:  sentry, crash-reporting
Sentry Python
The new Python SDK for Sentry.io
Stars: ✭ 870 (+152.17%)
Mutual labels:  sentry, crash-reporting
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 (-24.93%)
Mutual labels:  crash-reporting, sentry
sentry-android-gradle-plugin
Gradle plugin for Sentry Android. Upload proguard, debug files, and more.
Stars: ✭ 67 (-80.58%)
Mutual labels:  crash-reporting, sentry
sentry-fastlane-plugin
Official fastlane plugin for Sentry
Stars: ✭ 100 (-71.01%)
Mutual labels:  crash-reporting, sentry
Raven.cr
Raven is a Crystal client for Sentry
Stars: ✭ 96 (-72.17%)
Mutual labels:  sentry, crash-reporting
Sentry Clj
Sentry SDK for Clojure
Stars: ✭ 63 (-81.74%)
Mutual labels:  sentry, crash-reporting
Sentry Telegram
Plugin for Sentry which allows sending notification via Telegram messenger.
Stars: ✭ 168 (-51.3%)
Mutual labels:  sentry, crash-reporting
Sentry
Middleware to integrate with sentry crash reporting.
Stars: ✭ 55 (-84.06%)
Mutual labels:  sentry, crash-reporting
sentry-spark
Apache Spark Sentry Integration
Stars: ✭ 14 (-95.94%)
Mutual labels:  crash-reporting, sentry
Sentry Javascript
Official Sentry SDKs for JavaScript. We're hiring https://grnh.se/ca81c1701us
Stars: ✭ 6,012 (+1642.61%)
Mutual labels:  sentry, crash-reporting
Sentry Laravel
Laravel SDK for Sentry
Stars: ✭ 927 (+168.7%)
Mutual labels:  sentry, crash-reporting
Exceptionless
Exceptionless server and jobs
Stars: ✭ 2,107 (+510.72%)
Mutual labels:  monitoring, crash-reporting
nextcloud sentry
Sentry integration for Nextcloud
Stars: ✭ 26 (-92.46%)
Mutual labels:  crash-reporting, sentry

sentry-kubernetes

Disclaimer: this project is not officially maintained by Sentry.

The code is under the getsentry GitHub organization because it was created by a former employee.
For more information see issue #42.


Errors and warnings in Kubernetes often go unnoticed by operators. Even when they are checked they are hard to read and understand in the context of what else is going on in the cluster. sentry-kubernetes is a small container you launch inside your Kubernetes cluster that will send errors and warnings to Sentry where they will be cleanly presented and intelligently grouped. Typical Sentry features such as notifications can then be used to help operation and developer visibility.

Create a new project on Sentry and use your DSN when launching the sentry-kubernetes container:

kubectl run sentry-kubernetes \
  --image getsentry/sentry-kubernetes \
  --env="DSN=$YOUR_DSN"

Filters and options

See the full list in sentry-kubernetes.py

ENV var Description
EVENT_NAMESPACES_EXCLUDED A comma-separated list of namespaces. Ex.: 'qa,demo'. Events from these namespaces won't be sent to Sentry.

Events are grouped in Sentry:

1


They come with useful tags for filtering, and breadcrumbs showing events that occurred prior to the warning/error:

2


And include all of the extra data attached to the event:

3

Install using helm charts

$ helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/
"incubator" has been added to your repositories

$ helm install incubator/sentry-kubernetes --name my-release --set sentry.dsn=<your-dsn>
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].