2
0
Clean and backupable on-premise deployment of Sentry using Docker COmpose
This repository has been archived on 2020-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
2020-06-16 12:44:13 +03:00
.github/workflows build(gha): Add automated CalVer releases (#539) 2020-06-16 12:44:13 +03:00
cron feat(sentry10): Make on-premise work for Sentry 10 (#220) 2019-11-12 02:18:59 +03:00
nginx fix(nginx): Increase upload size back to 100M for Sentry too 2020-05-28 21:42:58 +03:00
relay fix(relay): Increase Kafka message size limit to 50MB (#527) 2020-06-11 22:33:36 +03:00
scripts build(gha): Add automated CalVer releases (#539) 2020-06-16 12:44:13 +03:00
sentry ref(sentry): Remove explicit Discover v2 flags (#523) 2020-06-01 23:34:54 +03:00
zookeeper fix(zk): Fix zookeper upgrade to 5.5.0 (#511) 2020-05-24 23:52:30 +03:00
.craft.yml build(gha): Add automated CalVer releases (#539) 2020-06-16 12:44:13 +03:00
.env build(gha): Add automated CalVer releases (#539) 2020-06-16 12:44:13 +03:00
.gitignore feat: Instruct users to migrate TSDB (#430) 2020-05-12 12:02:40 +02:00
.travis.yml ci(logs): Show docker-compose ps and logs on fail (#443) 2020-04-27 17:10:22 +03:00
docker-compose.yml build(gha): Add automated CalVer releases (#539) 2020-06-16 12:44:13 +03:00
install.sh fix(zookeeper): Temp ZK fix should run in detached mode (#525) 2020-06-02 19:45:07 +03:00
LICENSE license: Update BSL change date (#522) 2020-06-01 18:05:19 +03:00
README.md meta(versioning): Reword versioning sect. now that we have version tags (#510) 2020-05-23 22:49:31 +03:00
test.sh feat(sentry10): Make on-premise work for Sentry 10 (#220) 2019-11-12 02:18:59 +03:00

Sentry 10 On-Premise Build Status

Official bootstrap for running your own Sentry with Docker.

Requirements

  • Docker 17.05.0+
  • Compose 1.23.0+

Minimum Hardware Requirements:

  • You need at least 2400MB RAM

Setup

To get started with all the defaults, simply clone the repo and run ./install.sh in your local check-out.

There may need to be modifications to the included example config files (sentry/config.example.yml and sentry/sentry.conf.example.py) to accommodate your needs or your environment (such as adding GitHub credentials). If you want to perform these, do them before you run the install script and copy them without the .example extensions in the name (such as sentry/sentry.conf.py) before running the install.sh script.

The recommended way to customize your configuration is using the files below, in that order:

  • config.yml
  • sentry.conf.py
  • .env w/ environment variables

We currently support a very minimal set of environment variables to promote other means of configuration.

If you have any issues or questions, our Community Forum is at your service! Everytime you run the install script, it will generate a log file, sentry_install_log-<ISO_TIMESTAMP>.txt with the output. Sharing these logs would help people diagnose any issues you might be having.

Versioning

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 :latest. 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.

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.

Securing Sentry with SSL/TLS

If you'd like to protect your Sentry install with SSL/TLS, there are fantastic SSL/TLS proxies like HAProxy and Nginx. You'll likely want to add this service to your docker-compose.yml file.

Updating Sentry

You need to be on at least Sentry 9.1.2 to be able to upgrade automatically to the latest version. If you are not, upgrade to 9.1.2 first by checking out the 9.1.2 tag on this repo.

The included install.sh script is meant to be idempotent and to bring you to the latest version. What this means is you can and should run install.sh to upgrade to the latest version available. Remember that the output of the script will be stored in a log file, sentry_install_log-<ISO_TIMESTAMP>.txt, which you may share for diagnosis if anything goes wrong.

Resources