feat: sentry for arm
Some checks failed
Lock closed issues/PRs / lock (push) Has been cancelled
Test / Sentry self-hosted end-to-end tests (push) Has been cancelled
Test / unit tests (push) Has been cancelled
Test / Sentry upgrade test (push) Has been cancelled
Test / integration test v2.19.0 - customizations disabled (push) Has been cancelled
Test / integration test v2.19.0 - customizations enabled (push) Has been cancelled
Test / integration test v2.26.0 - customizations disabled (push) Has been cancelled
Test / integration test v2.26.0 - customizations enabled (push) Has been cancelled
Some checks failed
Lock closed issues/PRs / lock (push) Has been cancelled
Test / Sentry self-hosted end-to-end tests (push) Has been cancelled
Test / unit tests (push) Has been cancelled
Test / Sentry upgrade test (push) Has been cancelled
Test / integration test v2.19.0 - customizations disabled (push) Has been cancelled
Test / integration test v2.19.0 - customizations enabled (push) Has been cancelled
Test / integration test v2.26.0 - customizations disabled (push) Has been cancelled
Test / integration test v2.26.0 - customizations enabled (push) Has been cancelled
Signed-off-by: 小草林(田梓萱) <xcl@xuegao-tzx.top>
This commit is contained in:
13
sentry/Dockerfile
Normal file
13
sentry/Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
ARG SENTRY_IMAGE
|
||||
FROM ${SENTRY_IMAGE}
|
||||
|
||||
COPY . /usr/src/sentry
|
||||
|
||||
RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then \
|
||||
/usr/src/sentry/enhance-image.sh; \
|
||||
fi
|
||||
|
||||
RUN if [ -s /usr/src/sentry/requirements.txt ]; then \
|
||||
echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://develop.sentry.dev/self-hosted/#enhance-sentry-image"; \
|
||||
pip install -r /usr/src/sentry/requirements.txt; \
|
||||
fi
|
134
sentry/config.example.yml
Normal file
134
sentry/config.example.yml
Normal file
@@ -0,0 +1,134 @@
|
||||
# While a lot of configuration in Sentry can be changed via the UI, for all
|
||||
# new-style config (as of 8.0) you can also declare values here in this file
|
||||
# to enforce defaults or to ensure they cannot be changed via the UI. For more
|
||||
# information see the Sentry documentation.
|
||||
|
||||
###############
|
||||
# Mail Server #
|
||||
###############
|
||||
|
||||
# mail.backend: 'smtp' # Use dummy if you want to disable email entirely
|
||||
mail.host: 'smtp'
|
||||
# mail.port: 25
|
||||
# mail.username: ''
|
||||
# mail.password: ''
|
||||
# NOTE: `mail.use-tls` and `mail.use-ssl` are mutually exclusive and should not
|
||||
# appear at the same time. Only uncomment one of them.
|
||||
# mail.use-tls: false
|
||||
# mail.use-ssl: false
|
||||
|
||||
# NOTE: The following 2 configs (mail.from and mail.list-namespace) are set
|
||||
# through SENTRY_MAIL_HOST in sentry.conf.py so remove those first if
|
||||
# you want your values in this file to be effective!
|
||||
|
||||
# The email address to send on behalf of
|
||||
# mail.from: 'root@localhost' or ...
|
||||
# mail.from: 'System Administrator <root@localhost>'
|
||||
|
||||
# The mailing list namespace for emails sent by this Sentry server.
|
||||
# This should be a domain you own (often the same domain as the domain
|
||||
# part of the `mail.from` configuration parameter value) or `localhost`.
|
||||
# mail.list-namespace: 'localhost'
|
||||
|
||||
# If you'd like to configure email replies, enable this.
|
||||
# mail.enable-replies: true
|
||||
|
||||
# When email-replies are enabled, this value is used in the Reply-To header
|
||||
# mail.reply-hostname: ''
|
||||
|
||||
# If you're using mailgun for inbound mail, set your API key and configure a
|
||||
# route to forward to /api/hooks/mailgun/inbound/
|
||||
# Also don't forget to set `mail.enable-replies: true` above.
|
||||
# mail.mailgun-api-key: ''
|
||||
|
||||
###################
|
||||
# System Settings #
|
||||
###################
|
||||
|
||||
# If this file ever becomes compromised, it's important to generate a new key.
|
||||
# Changing this value will result in all current sessions being invalidated.
|
||||
# A new key can be generated with `$ sentry config generate-secret-key`
|
||||
system.secret-key: '!!changeme!!'
|
||||
|
||||
# The ``redis.clusters`` setting is used, unsurprisingly, to configure Redis
|
||||
# clusters. These clusters can be then referred to by name when configuring
|
||||
# backends such as the cache, digests, or TSDB backend.
|
||||
# redis.clusters:
|
||||
# default:
|
||||
# hosts:
|
||||
# 0:
|
||||
# host: 127.0.0.1
|
||||
# port: 6379
|
||||
|
||||
################
|
||||
# File storage #
|
||||
################
|
||||
|
||||
# Uploaded media uses these `filestore` settings. The available
|
||||
# backends are either `filesystem` or `s3`.
|
||||
|
||||
filestore.backend: 'filesystem'
|
||||
filestore.options:
|
||||
location: '/data/files'
|
||||
dsym.cache-path: '/data/dsym-cache'
|
||||
releasefile.cache-path: '/data/releasefile-cache'
|
||||
|
||||
# filestore.backend: 's3'
|
||||
# filestore.options:
|
||||
# access_key: 'AKIXXXXXX'
|
||||
# secret_key: 'XXXXXXX'
|
||||
# bucket_name: 's3-bucket-name'
|
||||
|
||||
# The URL prefix in which Sentry is accessible
|
||||
# system.url-prefix: https://example.sentry.com
|
||||
system.internal-url-prefix: 'http://web:96'
|
||||
symbolicator.enabled: true
|
||||
symbolicator.options:
|
||||
url: "http://symbolicator:3021"
|
||||
|
||||
transaction-events.force-disable-internal-project: true
|
||||
|
||||
######################
|
||||
# GitHub Integration #
|
||||
######################
|
||||
|
||||
# Refer to https://develop.sentry.dev/integrations/github/ for setup instructions.
|
||||
|
||||
# github-login.extended-permissions: ['repo']
|
||||
# github-app.id: GITHUB_APP_ID
|
||||
# github-app.name: 'GITHUB_APP_NAME'
|
||||
# github-app.webhook-secret: 'GITHUB_WEBHOOK_SECRET' # Use only if configured in GitHub
|
||||
# github-app.client-id: 'GITHUB_CLIENT_ID'
|
||||
# github-app.client-secret: 'GITHUB_CLIENT_SECRET'
|
||||
# github-app.private-key: |
|
||||
# -----BEGIN RSA PRIVATE KEY-----
|
||||
# privatekeyprivatekeyprivatekeyprivatekey
|
||||
# privatekeyprivatekeyprivatekeyprivatekey
|
||||
# privatekeyprivatekeyprivatekeyprivatekey
|
||||
# privatekeyprivatekeyprivatekeyprivatekey
|
||||
# privatekeyprivatekeyprivatekeyprivatekey
|
||||
# -----END RSA PRIVATE KEY-----
|
||||
|
||||
#####################
|
||||
# Slack Integration #
|
||||
#####################
|
||||
|
||||
# Refer to https://develop.sentry.dev/integrations/slack/ for setup instructions.
|
||||
|
||||
# slack.client-id: <'client id'>
|
||||
# slack.client-secret: <client secret>
|
||||
# slack.signing-secret: <signing secret>
|
||||
## If legacy-app is True use verification-token instead of signing-secret
|
||||
# slack.verification-token: <verification token>
|
||||
|
||||
|
||||
#######################
|
||||
# Discord Integration #
|
||||
#######################
|
||||
|
||||
# Refer to https://develop.sentry.dev/integrations/discord/
|
||||
|
||||
# discord.application-id: "<application id>"
|
||||
# discord.public-key: "<public key>"
|
||||
# discord.client-secret: "<client secret>"
|
||||
# discord.bot-token: "<bot token>"
|
134
sentry/config.yml-e
Normal file
134
sentry/config.yml-e
Normal file
@@ -0,0 +1,134 @@
|
||||
# While a lot of configuration in Sentry can be changed via the UI, for all
|
||||
# new-style config (as of 8.0) you can also declare values here in this file
|
||||
# to enforce defaults or to ensure they cannot be changed via the UI. For more
|
||||
# information see the Sentry documentation.
|
||||
|
||||
###############
|
||||
# Mail Server #
|
||||
###############
|
||||
|
||||
# mail.backend: 'smtp' # Use dummy if you want to disable email entirely
|
||||
mail.host: 'smtp'
|
||||
# mail.port: 25
|
||||
# mail.username: ''
|
||||
# mail.password: ''
|
||||
# NOTE: `mail.use-tls` and `mail.use-ssl` are mutually exclusive and should not
|
||||
# appear at the same time. Only uncomment one of them.
|
||||
# mail.use-tls: false
|
||||
# mail.use-ssl: false
|
||||
|
||||
# NOTE: The following 2 configs (mail.from and mail.list-namespace) are set
|
||||
# through SENTRY_MAIL_HOST in sentry.conf.py so remove those first if
|
||||
# you want your values in this file to be effective!
|
||||
|
||||
# The email address to send on behalf of
|
||||
# mail.from: 'root@localhost' or ...
|
||||
# mail.from: 'System Administrator <root@localhost>'
|
||||
|
||||
# The mailing list namespace for emails sent by this Sentry server.
|
||||
# This should be a domain you own (often the same domain as the domain
|
||||
# part of the `mail.from` configuration parameter value) or `localhost`.
|
||||
# mail.list-namespace: 'localhost'
|
||||
|
||||
# If you'd like to configure email replies, enable this.
|
||||
# mail.enable-replies: true
|
||||
|
||||
# When email-replies are enabled, this value is used in the Reply-To header
|
||||
# mail.reply-hostname: ''
|
||||
|
||||
# If you're using mailgun for inbound mail, set your API key and configure a
|
||||
# route to forward to /api/hooks/mailgun/inbound/
|
||||
# Also don't forget to set `mail.enable-replies: true` above.
|
||||
# mail.mailgun-api-key: ''
|
||||
|
||||
###################
|
||||
# System Settings #
|
||||
###################
|
||||
|
||||
# If this file ever becomes compromised, it's important to generate a new key.
|
||||
# Changing this value will result in all current sessions being invalidated.
|
||||
# A new key can be generated with `$ sentry config generate-secret-key`
|
||||
system.secret-key: '!!changeme!!'
|
||||
|
||||
# The ``redis.clusters`` setting is used, unsurprisingly, to configure Redis
|
||||
# clusters. These clusters can be then referred to by name when configuring
|
||||
# backends such as the cache, digests, or TSDB backend.
|
||||
# redis.clusters:
|
||||
# default:
|
||||
# hosts:
|
||||
# 0:
|
||||
# host: 127.0.0.1
|
||||
# port: 6379
|
||||
|
||||
################
|
||||
# File storage #
|
||||
################
|
||||
|
||||
# Uploaded media uses these `filestore` settings. The available
|
||||
# backends are either `filesystem` or `s3`.
|
||||
|
||||
filestore.backend: 'filesystem'
|
||||
filestore.options:
|
||||
location: '/data/files'
|
||||
dsym.cache-path: '/data/dsym-cache'
|
||||
releasefile.cache-path: '/data/releasefile-cache'
|
||||
|
||||
# filestore.backend: 's3'
|
||||
# filestore.options:
|
||||
# access_key: 'AKIXXXXXX'
|
||||
# secret_key: 'XXXXXXX'
|
||||
# bucket_name: 's3-bucket-name'
|
||||
|
||||
# The URL prefix in which Sentry is accessible
|
||||
# system.url-prefix: https://example.sentry.com
|
||||
system.internal-url-prefix: 'http://web:96'
|
||||
symbolicator.enabled: true
|
||||
symbolicator.options:
|
||||
url: "http://symbolicator:3021"
|
||||
|
||||
transaction-events.force-disable-internal-project: true
|
||||
|
||||
######################
|
||||
# GitHub Integration #
|
||||
######################
|
||||
|
||||
# Refer to https://develop.sentry.dev/integrations/github/ for setup instructions.
|
||||
|
||||
# github-login.extended-permissions: ['repo']
|
||||
# github-app.id: GITHUB_APP_ID
|
||||
# github-app.name: 'GITHUB_APP_NAME'
|
||||
# github-app.webhook-secret: 'GITHUB_WEBHOOK_SECRET' # Use only if configured in GitHub
|
||||
# github-app.client-id: 'GITHUB_CLIENT_ID'
|
||||
# github-app.client-secret: 'GITHUB_CLIENT_SECRET'
|
||||
# github-app.private-key: |
|
||||
# -----BEGIN RSA PRIVATE KEY-----
|
||||
# privatekeyprivatekeyprivatekeyprivatekey
|
||||
# privatekeyprivatekeyprivatekeyprivatekey
|
||||
# privatekeyprivatekeyprivatekeyprivatekey
|
||||
# privatekeyprivatekeyprivatekeyprivatekey
|
||||
# privatekeyprivatekeyprivatekeyprivatekey
|
||||
# -----END RSA PRIVATE KEY-----
|
||||
|
||||
#####################
|
||||
# Slack Integration #
|
||||
#####################
|
||||
|
||||
# Refer to https://develop.sentry.dev/integrations/slack/ for setup instructions.
|
||||
|
||||
# slack.client-id: <'client id'>
|
||||
# slack.client-secret: <client secret>
|
||||
# slack.signing-secret: <signing secret>
|
||||
## If legacy-app is True use verification-token instead of signing-secret
|
||||
# slack.verification-token: <verification token>
|
||||
|
||||
|
||||
#######################
|
||||
# Discord Integration #
|
||||
#######################
|
||||
|
||||
# Refer to https://develop.sentry.dev/integrations/discord/
|
||||
|
||||
# discord.application-id: "<application id>"
|
||||
# discord.public-key: "<public key>"
|
||||
# discord.client-secret: "<client secret>"
|
||||
# discord.bot-token: "<bot token>"
|
8
sentry/enhance-image.example.sh
Executable file
8
sentry/enhance-image.example.sh
Executable file
@@ -0,0 +1,8 @@
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
|
||||
# Enhance the base $SENTRY_IMAGE with additional dependencies, plugins - see https://develop.sentry.dev/self-hosted/#enhance-sentry-image
|
||||
# For example:
|
||||
# apt-get update
|
||||
# apt-get install -y gcc libsasl2-dev libldap2-dev libssl-dev
|
||||
# pip install python-ldap
|
12
sentry/entrypoint.sh
Executable file
12
sentry/entrypoint.sh
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
if [ "$(ls -A /usr/local/share/ca-certificates/)" ]; then
|
||||
update-ca-certificates
|
||||
fi
|
||||
|
||||
if [ -e /etc/sentry/requirements.txt ]; then
|
||||
echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://develop.sentry.dev/self-hosted/#enhance-sentry-image"
|
||||
fi
|
||||
|
||||
source /docker-entrypoint.sh
|
1
sentry/requirements.example.txt
Normal file
1
sentry/requirements.example.txt
Normal file
@@ -0,0 +1 @@
|
||||
# sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://develop.sentry.dev/self-hosted/#enhance-sentry-image
|
404
sentry/sentry.conf.example.py
Normal file
404
sentry/sentry.conf.example.py
Normal file
@@ -0,0 +1,404 @@
|
||||
# This file is just Python, with a touch of Django which means
|
||||
# you can inherit and tweak settings to your hearts content.
|
||||
|
||||
from sentry.conf.server import * # NOQA
|
||||
|
||||
BYTE_MULTIPLIER = 1024
|
||||
UNITS = ("K", "M", "G")
|
||||
|
||||
|
||||
def unit_text_to_bytes(text):
|
||||
unit = text[-1].upper()
|
||||
power = UNITS.index(unit) + 1
|
||||
return float(text[:-1]) * (BYTE_MULTIPLIER**power)
|
||||
|
||||
|
||||
# Generously adapted from pynetlinux: https://github.com/rlisagor/pynetlinux/blob/e3f16978855c6649685f0c43d4c3fcf768427ae5/pynetlinux/ifconfig.py#L197-L223
|
||||
def get_internal_network():
|
||||
import ctypes
|
||||
import fcntl
|
||||
import math
|
||||
import socket
|
||||
import struct
|
||||
|
||||
iface = b"eth0"
|
||||
sockfd = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
||||
ifreq = struct.pack(b"16sH14s", iface, socket.AF_INET, b"\x00" * 14)
|
||||
|
||||
try:
|
||||
ip = struct.unpack(
|
||||
b"!I", struct.unpack(b"16sH2x4s8x", fcntl.ioctl(sockfd, 0x8915, ifreq))[2]
|
||||
)[0]
|
||||
netmask = socket.ntohl(
|
||||
struct.unpack(b"16sH2xI8x", fcntl.ioctl(sockfd, 0x891B, ifreq))[2]
|
||||
)
|
||||
except IOError:
|
||||
return ()
|
||||
base = socket.inet_ntoa(struct.pack(b"!I", ip & netmask))
|
||||
netmask_bits = 32 - int(round(math.log(ctypes.c_uint32(~netmask).value + 1, 2), 1))
|
||||
return "{0:s}/{1:d}".format(base, netmask_bits)
|
||||
|
||||
|
||||
INTERNAL_SYSTEM_IPS = (get_internal_network(),)
|
||||
|
||||
|
||||
DATABASES = {
|
||||
"default": {
|
||||
"ENGINE": "sentry.db.postgres",
|
||||
"NAME": "postgres",
|
||||
"USER": "postgres",
|
||||
"PASSWORD": "",
|
||||
"HOST": "postgres",
|
||||
"PORT": "",
|
||||
}
|
||||
}
|
||||
|
||||
# You should not change this setting after your database has been created
|
||||
# unless you have altered all schemas first
|
||||
SENTRY_USE_BIG_INTS = True
|
||||
|
||||
# If you're expecting any kind of real traffic on Sentry, we highly recommend
|
||||
# configuring the CACHES and Redis settings
|
||||
|
||||
###########
|
||||
# General #
|
||||
###########
|
||||
|
||||
# Instruct Sentry that this install intends to be run by a single organization
|
||||
# and thus various UI optimizations should be enabled.
|
||||
SENTRY_SINGLE_ORGANIZATION = True
|
||||
|
||||
SENTRY_OPTIONS["system.event-retention-days"] = int(
|
||||
env("SENTRY_EVENT_RETENTION_DAYS", "90")
|
||||
)
|
||||
|
||||
#########
|
||||
# Redis #
|
||||
#########
|
||||
|
||||
# Generic Redis configuration used as defaults for various things including:
|
||||
# Buffers, Quotas, TSDB
|
||||
|
||||
SENTRY_OPTIONS["redis.clusters"] = {
|
||||
"default": {
|
||||
"hosts": {0: {"host": "redis", "password": "", "port": "6379", "db": "0"}}
|
||||
}
|
||||
}
|
||||
|
||||
#########
|
||||
# Queue #
|
||||
#########
|
||||
|
||||
# See https://develop.sentry.dev/services/queue/ for more
|
||||
# information on configuring your queue broker and workers. Sentry relies
|
||||
# on a Python framework called Celery to manage queues.
|
||||
|
||||
rabbitmq_host = None
|
||||
if rabbitmq_host:
|
||||
BROKER_URL = "amqp://{username}:{password}@{host}/{vhost}".format(
|
||||
username="guest", password="guest", host=rabbitmq_host, vhost="/"
|
||||
)
|
||||
else:
|
||||
BROKER_URL = "redis://:{password}@{host}:{port}/{db}".format(
|
||||
**SENTRY_OPTIONS["redis.clusters"]["default"]["hosts"][0]
|
||||
)
|
||||
|
||||
|
||||
#########
|
||||
# Cache #
|
||||
#########
|
||||
|
||||
# Sentry currently utilizes two separate mechanisms. While CACHES is not a
|
||||
# requirement, it will optimize several high throughput patterns.
|
||||
|
||||
CACHES = {
|
||||
"default": {
|
||||
"BACKEND": "django.core.cache.backends.memcached.PyMemcacheCache",
|
||||
"LOCATION": ["memcached:11211"],
|
||||
"TIMEOUT": 3600,
|
||||
"OPTIONS": {"ignore_exc": True},
|
||||
}
|
||||
}
|
||||
|
||||
# A primary cache is required for things such as processing events
|
||||
SENTRY_CACHE = "sentry.cache.redis.RedisCache"
|
||||
|
||||
DEFAULT_KAFKA_OPTIONS = {
|
||||
"bootstrap.servers": "kafka:9092",
|
||||
"message.max.bytes": 50000000,
|
||||
"socket.timeout.ms": 1000,
|
||||
}
|
||||
|
||||
SENTRY_EVENTSTREAM = "sentry.eventstream.kafka.KafkaEventStream"
|
||||
SENTRY_EVENTSTREAM_OPTIONS = {"producer_configuration": DEFAULT_KAFKA_OPTIONS}
|
||||
|
||||
KAFKA_CLUSTERS["default"] = DEFAULT_KAFKA_OPTIONS
|
||||
|
||||
###############
|
||||
# Rate Limits #
|
||||
###############
|
||||
|
||||
# Rate limits apply to notification handlers and are enforced per-project
|
||||
# automatically.
|
||||
|
||||
SENTRY_RATELIMITER = "sentry.ratelimits.redis.RedisRateLimiter"
|
||||
|
||||
##################
|
||||
# Update Buffers #
|
||||
##################
|
||||
|
||||
# Buffers (combined with queueing) act as an intermediate layer between the
|
||||
# database and the storage API. They will greatly improve efficiency on large
|
||||
# numbers of the same events being sent to the API in a short amount of time.
|
||||
# (read: if you send any kind of real data to Sentry, you should enable buffers)
|
||||
|
||||
SENTRY_BUFFER = "sentry.buffer.redis.RedisBuffer"
|
||||
|
||||
##########
|
||||
# Quotas #
|
||||
##########
|
||||
|
||||
# Quotas allow you to rate limit individual projects or the Sentry install as
|
||||
# a whole.
|
||||
|
||||
SENTRY_QUOTAS = "sentry.quotas.redis.RedisQuota"
|
||||
|
||||
########
|
||||
# TSDB #
|
||||
########
|
||||
|
||||
# The TSDB is used for building charts as well as making things like per-rate
|
||||
# alerts possible.
|
||||
|
||||
SENTRY_TSDB = "sentry.tsdb.redissnuba.RedisSnubaTSDB"
|
||||
|
||||
#########
|
||||
# SNUBA #
|
||||
#########
|
||||
|
||||
SENTRY_SEARCH = "sentry.search.snuba.EventsDatasetSnubaSearchBackend"
|
||||
SENTRY_SEARCH_OPTIONS = {}
|
||||
SENTRY_TAGSTORE_OPTIONS = {}
|
||||
|
||||
###########
|
||||
# Digests #
|
||||
###########
|
||||
|
||||
# The digest backend powers notification summaries.
|
||||
|
||||
SENTRY_DIGESTS = "sentry.digests.backends.redis.RedisBackend"
|
||||
|
||||
###################
|
||||
# Metrics Backend #
|
||||
###################
|
||||
|
||||
SENTRY_RELEASE_HEALTH = "sentry.release_health.metrics.MetricsReleaseHealthBackend"
|
||||
SENTRY_RELEASE_MONITOR = (
|
||||
"sentry.release_health.release_monitor.metrics.MetricReleaseMonitorBackend"
|
||||
)
|
||||
|
||||
##############
|
||||
# Web Server #
|
||||
##############
|
||||
|
||||
SENTRY_WEB_HOST = "0.0.0.0"
|
||||
SENTRY_WEB_PORT = 96
|
||||
SENTRY_WEB_OPTIONS = {
|
||||
"http": "%s:%s" % (SENTRY_WEB_HOST, SENTRY_WEB_PORT),
|
||||
"protocol": "uwsgi",
|
||||
# This is needed in order to prevent https://github.com/getsentry/sentry/blob/c6f9660e37fcd9c1bbda8ff4af1dcfd0442f5155/src/sentry/services/http.py#L70
|
||||
"uwsgi-socket": None,
|
||||
"so-keepalive": True,
|
||||
# Keep this between 15s-75s as that's what Relay supports
|
||||
"http-keepalive": 15,
|
||||
"http-chunked-input": True,
|
||||
# the number of web workers
|
||||
"workers": 3,
|
||||
"threads": 4,
|
||||
"memory-report": False,
|
||||
# Some stuff so uwsgi will cycle workers sensibly
|
||||
"max-requests": 100000,
|
||||
"max-requests-delta": 500,
|
||||
"max-worker-lifetime": 86400,
|
||||
# Duplicate options from sentry default just so we don't get
|
||||
# bit by sentry changing a default value that we depend on.
|
||||
"thunder-lock": True,
|
||||
"log-x-forwarded-for": False,
|
||||
"buffer-size": 32768,
|
||||
"limit-post": 209715200,
|
||||
"disable-logging": True,
|
||||
"reload-on-rss": 600,
|
||||
"ignore-sigpipe": True,
|
||||
"ignore-write-errors": True,
|
||||
"disable-write-exception": True,
|
||||
}
|
||||
|
||||
###########
|
||||
# SSL/TLS #
|
||||
###########
|
||||
|
||||
# If you're using a reverse SSL proxy, you should enable the X-Forwarded-Proto
|
||||
# header and enable the settings below
|
||||
|
||||
# SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
|
||||
# USE_X_FORWARDED_HOST = True
|
||||
# SESSION_COOKIE_SECURE = True
|
||||
# CSRF_COOKIE_SECURE = True
|
||||
# SOCIAL_AUTH_REDIRECT_IS_HTTPS = True
|
||||
|
||||
# End of SSL/TLS settings
|
||||
|
||||
########
|
||||
# Mail #
|
||||
########
|
||||
|
||||
SENTRY_OPTIONS["mail.list-namespace"] = env("SENTRY_MAIL_HOST", "localhost")
|
||||
SENTRY_OPTIONS["mail.from"] = f"sentry@{SENTRY_OPTIONS['mail.list-namespace']}"
|
||||
|
||||
############
|
||||
# Features #
|
||||
############
|
||||
|
||||
SENTRY_FEATURES["projects:sample-events"] = False
|
||||
SENTRY_FEATURES.update(
|
||||
{
|
||||
feature: True
|
||||
for feature in (
|
||||
"organizations:discover",
|
||||
"organizations:events",
|
||||
"organizations:global-views",
|
||||
"organizations:incidents",
|
||||
"organizations:integrations-issue-basic",
|
||||
"organizations:integrations-issue-sync",
|
||||
"organizations:invite-members",
|
||||
"organizations:metric-alert-builder-aggregate",
|
||||
"organizations:sso-basic",
|
||||
"organizations:sso-rippling",
|
||||
"organizations:sso-saml2",
|
||||
"organizations:performance-view",
|
||||
"organizations:advanced-search",
|
||||
"organizations:session-replay",
|
||||
"organizations:issue-platform",
|
||||
"organizations:profiling",
|
||||
"organizations:monitors",
|
||||
"organizations:dashboards-mep",
|
||||
"organizations:mep-rollout-flag",
|
||||
"organizations:dashboards-rh-widget",
|
||||
"organizations:metrics-extraction",
|
||||
"organizations:transaction-metrics-extraction",
|
||||
"projects:custom-inbound-filters",
|
||||
"projects:data-forwarding",
|
||||
"projects:discard-groups",
|
||||
"projects:plugins",
|
||||
"projects:rate-limits",
|
||||
"projects:servicehooks",
|
||||
)
|
||||
# Starfish related flags
|
||||
+ (
|
||||
"organizations:deprecate-fid-from-performance-score",
|
||||
"organizations:indexed-spans-extraction",
|
||||
"organizations:insights-entry-points",
|
||||
"organizations:insights-initial-modules",
|
||||
"organizations:insights-addon-modules",
|
||||
"organizations:mobile-ttid-ttfd-contribution",
|
||||
"organizations:performance-calculate-score-relay",
|
||||
"organizations:standalone-span-ingestion",
|
||||
"organizations:starfish-browser-resource-module-image-view",
|
||||
"organizations:starfish-browser-resource-module-ui",
|
||||
"organizations:starfish-browser-webvitals",
|
||||
"organizations:starfish-browser-webvitals-pageoverview-v2",
|
||||
"organizations:starfish-browser-webvitals-replace-fid-with-inp",
|
||||
"organizations:starfish-browser-webvitals-use-backend-scores",
|
||||
"organizations:starfish-mobile-appstart",
|
||||
"projects:span-metrics-extraction",
|
||||
"projects:span-metrics-extraction-addons",
|
||||
)
|
||||
# User Feedback related flags
|
||||
+ (
|
||||
"organizations:user-feedback-ingest",
|
||||
"organizations:user-feedback-replay-clip",
|
||||
"organizations:user-feedback-ui",
|
||||
)
|
||||
}
|
||||
)
|
||||
|
||||
#######################
|
||||
# MaxMind Integration #
|
||||
#######################
|
||||
|
||||
GEOIP_PATH_MMDB = "/geoip/GeoLite2-City.mmdb"
|
||||
|
||||
#########################
|
||||
# Bitbucket Integration #
|
||||
#########################
|
||||
|
||||
# BITBUCKET_CONSUMER_KEY = 'YOUR_BITBUCKET_CONSUMER_KEY'
|
||||
# BITBUCKET_CONSUMER_SECRET = 'YOUR_BITBUCKET_CONSUMER_SECRET'
|
||||
|
||||
##############################################
|
||||
# Suggested Fix Feature / OpenAI Integration #
|
||||
##############################################
|
||||
|
||||
# See https://docs.sentry.io/product/issues/issue-details/ai-suggested-solution/
|
||||
# for more information about the feature. Make sure the OpenAI's privacy policy is
|
||||
# aligned with your company.
|
||||
|
||||
# Set the OPENAI_API_KEY on the .env or .env.custom file with a valid
|
||||
# OpenAI API key to turn on the feature.
|
||||
OPENAI_API_KEY = env("OPENAI_API_KEY", "")
|
||||
|
||||
SENTRY_FEATURES["organizations:open-ai-suggestion"] = bool(OPENAI_API_KEY)
|
||||
|
||||
##############################################
|
||||
# Content Security Policy settings
|
||||
##############################################
|
||||
|
||||
# CSP_REPORT_URI = "https://{your-sentry-installation}/api/{csp-project}/security/?sentry_key={sentry-key}"
|
||||
CSP_REPORT_ONLY = True
|
||||
|
||||
# optional extra permissions
|
||||
# https://django-csp.readthedocs.io/en/latest/configuration.html
|
||||
# CSP_SCRIPT_SRC += ["example.com"]
|
||||
|
||||
#################
|
||||
# CSRF Settings #
|
||||
#################
|
||||
|
||||
# Since version 24.1.0, Sentry migrated to Django 4 which contains stricter CSRF protection.
|
||||
# If you are accessing Sentry from multiple domains behind a reverse proxy, you should set
|
||||
# this to match your IPs/domains. Ports should be included if you are using custom ports.
|
||||
# https://docs.djangoproject.com/en/4.2/ref/settings/#std-setting-CSRF_TRUSTED_ORIGINS
|
||||
|
||||
# CSRF_TRUSTED_ORIGINS = ["https://example.com", "http://127.0.0.1:96"]
|
||||
|
||||
#################
|
||||
# JS SDK Loader #
|
||||
#################
|
||||
|
||||
# Configure Sentry JS SDK bundle URL template for Loader Scripts.
|
||||
# Learn more about the Loader Scripts: https://docs.sentry.io/platforms/javascript/install/loader/
|
||||
# If you wish to host your own JS SDK bundles, set `SETUP_JS_SDK_ASSETS` environment variable to `1`
|
||||
# on your `.env` or `.env.custom` file. Then, replace the value below with your own public URL.
|
||||
# For example: "https://sentry.example.com/js-sdk/%s/bundle%s.min.js"
|
||||
#
|
||||
# By default, the previous JS SDK assets version will be pruned during upgrades, if you wish
|
||||
# to keep the old assets, set `SETUP_JS_SDK_KEEP_OLD_ASSETS` environment variable to any value on
|
||||
# your `.env` or `.env.custom` file. The files should only be a few KBs, and this might be useful
|
||||
# if you're using it directly like a CDN instead of using the loader script.
|
||||
JS_SDK_LOADER_DEFAULT_SDK_URL = "https://browser.sentry-cdn.com/%s/bundle%s.min.js"
|
||||
|
||||
|
||||
# If you would like to use self-hosted Sentry with only errors enabled, please set this
|
||||
SENTRY_SELF_HOSTED_ERRORS_ONLY = env("COMPOSE_PROFILES") != "feature-complete"
|
||||
|
||||
#####################
|
||||
# Insights Settings #
|
||||
#####################
|
||||
|
||||
# Since version 24.3.0, Insights features are available on self-hosted. For Requests module,
|
||||
# there are scrubbing logic done on Relay to prevent high cardinality of stored HTTP hosts.
|
||||
# However in self-hosted scenario, the amount of stored HTTP hosts might be consistent,
|
||||
# and you may have allow list of hosts that you want to keep. Uncomment the following line
|
||||
# to allow specific hosts. It might be IP addresses or domain names (without `http://` or `https://`).
|
||||
|
||||
# SENTRY_OPTIONS["relay.span-normalization.allowed_hosts"] = ["example.com", "192.168.10.1"]
|
Reference in New Issue
Block a user