All Projects → getsentry → self-hosted

getsentry / self-hosted

Licence: other
Sentry, feature-complete and packaged up for low-volume deployments and proofs-of-concept

Programming Languages

shell
77523 projects
python
139335 projects - #7 most used programming language
Dockerfile
14818 projects

Projects that are alternatives of or similar to self-hosted

Onpremise
Sentry, feature-complete and packaged up for low-volume deployments and proofs-of-concept
Stars: ✭ 4,558 (-9.46%)
Mutual labels:  sentry, self-hosted, on-premise
codesunaba
A simple ClojureScript code sandbox in your browser.
Stars: ✭ 18 (-99.64%)
Mutual labels:  self-hosted
minio-rclone-webdav-server
A @rclone served WebDAV server with @minio as the s3 storage backend docker example
Stars: ✭ 17 (-99.66%)
Mutual labels:  self-hosted
raven-python-lambda
Sentry/Raven SDK Integration For AWS Lambda (python) and Serverless
Stars: ✭ 48 (-99.05%)
Mutual labels:  sentry
monolog-sentry-handler
Monolog handler for Sentry PHP SDK v2 with breadcrumbs support
Stars: ✭ 34 (-99.32%)
Mutual labels:  sentry
sentry
Mirror of Apache Sentry
Stars: ✭ 114 (-97.74%)
Mutual labels:  sentry
devliver
Your private self hosted composer repository with user management
Stars: ✭ 50 (-99.01%)
Mutual labels:  self-hosted
SyncTube
Synchronized video viewing with chat and other features (one-channel web service)
Stars: ✭ 134 (-97.34%)
Mutual labels:  self-hosted
ansible-github actions runner
Ansible Role to deploy GitHub Actions self-hosted runner
Stars: ✭ 76 (-98.49%)
Mutual labels:  self-hosted
Maily-Form
Forms on any website
Stars: ✭ 29 (-99.42%)
Mutual labels:  self-hosted
hexon
Let's hexo online.
Stars: ✭ 28 (-99.44%)
Mutual labels:  self-hosted
sentry-horn
Swift based sentry iOS application
Stars: ✭ 15 (-99.7%)
Mutual labels:  sentry
hapi-sentry
A hapi plugin for request error logging to Sentry
Stars: ✭ 24 (-99.52%)
Mutual labels:  sentry
astro
An open, extensible, dashboard for all of your homelab services.
Stars: ✭ 25 (-99.5%)
Mutual labels:  self-hosted
cran-server
Self-hosted R package repository
Stars: ✭ 17 (-99.66%)
Mutual labels:  self-hosted
shaarli ynh
Shaarli package for YunoHost
Stars: ✭ 20 (-99.6%)
Mutual labels:  self-hosted
crow
Crow - a C++ client for Sentry
Stars: ✭ 119 (-97.64%)
Mutual labels:  sentry
swetrix-js
The JavaScript analytics client for Swetrix Analytics
Stars: ✭ 28 (-99.44%)
Mutual labels:  self-hosted
asgi-correlation-id
Request ID propagation for ASGI apps
Stars: ✭ 83 (-98.35%)
Mutual labels:  sentry
sentry-testkit
A Sentry plugin to allow Sentry report interception and further inspection of the data being sent
Stars: ✭ 78 (-98.45%)
Mutual labels:  sentry

Self-Hosted Sentry nightly

Official bootstrap for running your own Sentry with Docker.

Requirements

  • Docker 19.03.6+
  • Compose 1.28.0+
  • 4 CPU Cores
  • 8 GB RAM
  • 20 GB Free Disk Space

Setup

Customize DotEnv (.env) file

Environment specific configurations can be done in the .env.custom file. It will be located in the root directory of the Sentry installation.

By default, there exists no .env.custom file. In this case, you can manually add this file by copying the .env file to a new .env.custom file and adjust your settings in the .env.custom file.

Please keep in mind to check the .env file for changes, when you perform an upgrade of Sentry, so that you can adjust your .env.custom accordingly, if required.

Installation

To get started with all the defaults, simply clone the repo and run ./install.sh in your local check-out. Sentry uses Python 3 by default since December 4th, 2020 and Sentry 21.1.0 is the last version to support Python 2.

During the install, a prompt will ask if you want to create a user account. If you require that the install not be blocked by the prompt, run ./install.sh --skip-user-prompt.

Thinking of not managing this yourself? Check out the SaaS migration docs or contact us for help.

Please visit our documentation for everything else.

Tips & Tricks

Event Retention

Sentry comes with a cleanup cron job that prunes events older than 90 days by default. If you want to change that, you can change the SENTRY_EVENT_RETENTION_DAYS environment variable in .env or simply override it in your environment. If you do not want the cleanup cron, you can remove the sentry-cleanup service from the docker-compose.ymlfile.

Installing a specific SHA

If you want to install a specific release of Sentry, use the tags/releases on this repo.

We continously push the Docker image for each commit made into Sentry, and other services such as Snuba or Symbolicator to our Docker Hub and tag the latest version on master as :nightly. This is also usually what we have on sentry.io and what the install script uses. You can use a custom Sentry image, such as a modified version that you have built on your own, or simply a specific commit hash by setting the SENTRY_IMAGE environment variable to that image name before running ./install.sh:

SENTRY_IMAGE=getsentry/sentry:83b1380 ./install.sh

Note that this may not work for all commit SHAs as this repository evolves with Sentry and its satellite projects. It is highly recommended to check out a version of this repository that is close to the timestamp of the Sentry commit you are installing.

Using Linux

If you are using Linux and you need to use sudo when running ./install.sh, make sure to place the environment variable after sudo:

sudo SENTRY_IMAGE=us.gcr.io/sentryio/sentry:83b1380 ./install.sh

Where you replace 83b1380 with the sha you want to use.

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