mirror of
https://github.com/getsentry/self-hosted.git
synced 2025-12-08 19:46:14 +00:00
* feat: statsd configuration through environment variables * feat: provide statsd config via environment variables for relay and symbolicator * fix: default statsd value to localhost * Update sentry/sentry.conf.example.py
535 lines
18 KiB
Python
535 lines
18 KiB
Python
# 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": "pgbouncer",
|
|
"PORT": "",
|
|
}
|
|
}
|
|
|
|
# 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 event retention days specifies how long events are retained in the database.
|
|
# This should be set on your `.env` or `.env.custom` file, instead of modifying
|
|
# the value here.
|
|
# NOTE: The longer the days, the more disk space is required.
|
|
SENTRY_OPTIONS["system.event-retention-days"] = int(
|
|
env("SENTRY_EVENT_RETENTION_DAYS", "90")
|
|
)
|
|
|
|
# The secret key is being used for various cryptographic operations, such as
|
|
# generating a CSRF token, session token, and registering Relay instances.
|
|
# The secret key value should be set on your `.env` or `.env.custom` file
|
|
# instead of modifying the value here.
|
|
#
|
|
# If the key 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`
|
|
if env("SENTRY_SYSTEM_SECRET_KEY"):
|
|
SENTRY_OPTIONS["system.secret-key"] = env("SENTRY_SYSTEM_SECRET_KEY", "")
|
|
|
|
# Self-hosted Sentry infamously has a lot of Docker containers required to make
|
|
# all the features work. Oftentimes, users don't use the full feature set that
|
|
# requires all the containers. This is a way to enable only the error monitoring
|
|
# feature which also reduces the amount of containers required to run Sentry.
|
|
#
|
|
# To make Sentry work with all features, set `COMPOSE_PROFILES` to `feature-complete`
|
|
# in your `.env` file. To enable only the error monitoring feature, set
|
|
# `COMPOSE_PROFILES` to `errors-only`.
|
|
#
|
|
# See https://develop.sentry.dev/self-hosted/optional-features/errors-only/
|
|
SENTRY_SELF_HOSTED_ERRORS_ONLY = env("COMPOSE_PROFILES") != "feature-complete"
|
|
|
|
# When running in an air-gapped environment, set this to True to entirely disable
|
|
# external network calls and features that require Internet connectivity.
|
|
#
|
|
# Setting the value to False while running in an air-gapped environment will
|
|
# cause some containers to raise exceptions. One known example is fetching
|
|
# AI model prices from various public APIs.
|
|
SENTRY_AIR_GAP = False
|
|
|
|
# As of 25.9.0 (September 2025 release), Sentry enforces tighter restrictions
|
|
# of allowed IP addresses for outgoing requests. This is to prevent
|
|
# accidentally leaking sensitive information to third parties.
|
|
#
|
|
# By default, Sentry will not allow requests to private IP addresses.
|
|
# You can override this by configuring the allowed IP addresses here.
|
|
# Below is the default value, which is a list of IP addresses that are
|
|
# considered "private" and "reserved".
|
|
#
|
|
# SENTRY_DISALLOWED_IPS: tuple[str, ...] = (
|
|
# # https://en.wikipedia.org/wiki/Reserved_IP_addresses#IPv4
|
|
# "0.0.0.0/8",
|
|
# "10.0.0.0/8",
|
|
# "100.64.0.0/10",
|
|
# "127.0.0.0/8",
|
|
# "169.254.0.0/16",
|
|
# "172.16.0.0/12",
|
|
# "192.0.0.0/29",
|
|
# "192.0.2.0/24",
|
|
# "192.88.99.0/24",
|
|
# "192.168.0.0/16",
|
|
# "198.18.0.0/15",
|
|
# "198.51.100.0/24",
|
|
# "224.0.0.0/4",
|
|
# "240.0.0.0/4",
|
|
# "255.255.255.255/32",
|
|
# # https://en.wikipedia.org/wiki/IPv6#IPv4-mapped_IPv6_addresses
|
|
# # Subnets match the IPv4 subnets above
|
|
# "::ffff:0:0/104",
|
|
# "::ffff:a00:0/104",
|
|
# "::ffff:6440:0/106",
|
|
# "::ffff:7f00:0/104",
|
|
# "::ffff:a9fe:0/112",
|
|
# "::ffff:ac10:0/108",
|
|
# "::ffff:c000:0/125",
|
|
# "::ffff:c000:200/120",
|
|
# "::ffff:c058:6300/120",
|
|
# "::ffff:c0a8:0/112",
|
|
# "::ffff:c612:0/111",
|
|
# "::ffff:c633:6400/120",
|
|
# "::ffff:e000:0/100",
|
|
# "::ffff:f000:0/100",
|
|
# "::ffff:ffff:ffff/128",
|
|
# # https://en.wikipedia.org/wiki/Reserved_IP_addresses#IPv6
|
|
# "::1/128",
|
|
# "::ffff:0:0/96",
|
|
# "64:ff9b::/96",
|
|
# "64:ff9b:1::/48",
|
|
# "100::/64",
|
|
# "2001:0000::/32",
|
|
# "2001:20::/28",
|
|
# "2001:db8::/32",
|
|
# "2002::/16",
|
|
# "fc00::/7",
|
|
# "fe80::/10",
|
|
# "ff00::/8",
|
|
# )
|
|
|
|
################
|
|
# Node Storage #
|
|
################
|
|
|
|
# Sentry uses an abstraction layer called "node storage" to store raw events.
|
|
# Previously, it used PostgreSQL as the backend, but this didn't scale for
|
|
# high-throughput environments. Read more about this in the documentation:
|
|
# https://develop.sentry.dev/backend/application-domains/nodestore/
|
|
#
|
|
# Through this setting, you can use the provided blob storage or
|
|
# your own S3-compatible API from your infrastructure.
|
|
# Other backend implementations for node storage developed by the community
|
|
# are available in public GitHub repositories.
|
|
|
|
SENTRY_NODESTORE = "sentry_nodestore_s3.S3PassthroughDjangoNodeStorage"
|
|
SENTRY_NODESTORE_OPTIONS = {
|
|
"compression": True,
|
|
"endpoint_url": "http://seaweedfs:8333",
|
|
"bucket_path": "nodestore",
|
|
"bucket_name": "nodestore",
|
|
"region_name": "us-east-1",
|
|
"aws_access_key_id": "sentry",
|
|
"aws_secret_access_key": "sentry",
|
|
}
|
|
|
|
#########
|
|
# 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"}}
|
|
}
|
|
}
|
|
|
|
#########
|
|
# 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"
|
|
|
|
##############
|
|
# Web Server #
|
|
##############
|
|
|
|
SENTRY_WEB_HOST = "0.0.0.0"
|
|
SENTRY_WEB_PORT = 9000
|
|
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,
|
|
# The `harakiri` option terminates requests that take longer than the
|
|
# defined amount of time (in seconds) which can help avoid stuck workers
|
|
# caused by GIL issues or deadlocks.
|
|
# Ensure nginx `proxy_read_timeout` configuration (default: 30)
|
|
# on your `nginx.conf` file to be at least 5 seconds longer than this.
|
|
# "harakiri": 25,
|
|
# 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 uses feature flags to enable certain features. Some features may
|
|
# require additional configuration or containers. To learn more about how
|
|
# Sentry uses feature flags, see https://develop.sentry.dev/backend/application-domains/feature-flags/
|
|
#
|
|
# The features listed here are stable and generally available on SaaS.
|
|
# To enable preview features, see https://develop.sentry.dev/self-hosted/configuration/#enabling-preview-features
|
|
|
|
SENTRY_FEATURES["projects:sample-events"] = False
|
|
SENTRY_FEATURES.update(
|
|
{
|
|
feature: True
|
|
for feature in (
|
|
"organizations:discover",
|
|
"organizations:global-views",
|
|
"organizations:issue-views",
|
|
"organizations:incidents",
|
|
"organizations:integrations-issue-basic",
|
|
"organizations:integrations-issue-sync",
|
|
"organizations:invite-members",
|
|
"organizations:sso-basic",
|
|
"organizations:sso-saml2",
|
|
"organizations:advanced-search",
|
|
"organizations:issue-platform",
|
|
"organizations:monitors",
|
|
"organizations:dashboards-mep",
|
|
"organizations:mep-rollout-flag",
|
|
"organizations:dashboards-rh-widget",
|
|
"organizations:dynamic-sampling",
|
|
"projects:custom-inbound-filters",
|
|
"projects:data-forwarding",
|
|
"projects:discard-groups",
|
|
"projects:plugins",
|
|
"projects:rate-limits",
|
|
"projects:servicehooks",
|
|
)
|
|
# Performance/Tracing/Spans related flags
|
|
+ (
|
|
"organizations:performance-view",
|
|
"organizations:span-stats",
|
|
"organizations:visibility-explore-view",
|
|
"organizations:visibility-explore-range-high",
|
|
"organizations:transaction-metrics-extraction",
|
|
"organizations:indexed-spans-extraction",
|
|
"organizations:insights-entry-points",
|
|
"organizations:insights-initial-modules",
|
|
"organizations:insights-addon-modules",
|
|
"organizations:insights-modules-use-eap",
|
|
"organizations:standalone-span-ingestion",
|
|
"organizations:starfish-mobile-appstart",
|
|
"projects:span-metrics-extraction",
|
|
"projects:span-metrics-extraction-addons",
|
|
)
|
|
# Session Replay related flags
|
|
+ (
|
|
"organizations:session-replay",
|
|
)
|
|
# User Feedback related flags
|
|
+ (
|
|
"organizations:user-feedback-ui",
|
|
)
|
|
# Profiling related flags
|
|
+ (
|
|
"organizations:profiling",
|
|
"organizations:profiling-view",
|
|
)
|
|
# Continuous Profiling related flags
|
|
+ (
|
|
"organizations:continuous-profiling",
|
|
"organizations:continuous-profiling-stats",
|
|
)
|
|
# Uptime Monitoring related flags
|
|
+ (
|
|
"organizations:uptime",
|
|
"organizations:uptime-create-issues",
|
|
)
|
|
# Logs related flags
|
|
+ (
|
|
"organizations:ourlogs-enabled",
|
|
"organizations:ourlogs-ingestion",
|
|
"organizations:ourlogs-stats",
|
|
"organizations:ourlogs-replay-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'
|
|
|
|
##############################################
|
|
# 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"]
|
|
|
|
############################
|
|
# Sentry Endpoint Settings #
|
|
############################
|
|
|
|
# If your Sentry installation has different hostnames for ingestion and web UI,
|
|
# in which your web UI is accessible via private corporate network, yet your
|
|
# ingestion hostname is accessible from the public internet, you can uncomment
|
|
# this following options in order to have the ingestion hostname rendered
|
|
# correctly on the SDK configuration UI.
|
|
#
|
|
# SENTRY_ENDPOINT = "https://sentry.ingest.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:9000"]
|
|
|
|
#################
|
|
# 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"
|
|
|
|
#####################
|
|
# 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"]
|
|
|
|
##############
|
|
# Monitoring #
|
|
##############
|
|
|
|
# By default, Sentry uses dummy statsd monitoring backend that is a no-op.
|
|
# If you have a statsd server, you can utilize that to monitor self-hosted
|
|
# Sentry for "sentry"-related containers.
|
|
#
|
|
# To start, uncomment the following line and adjust the options as needed.
|
|
|
|
SENTRY_STATSD_ADDR = env("SENTRY_STATSD_ADDR")
|
|
if SENTRY_STATSD_ADDR:
|
|
host, _, port = SENTRY_STATSD_ADDR.partition(":")
|
|
port = int(port or 8125)
|
|
SENTRY_METRICS_BACKEND = 'sentry.metrics.statsd.StatsdMetricsBackend'
|
|
SENTRY_METRICS_OPTIONS: dict[str, Any] = {
|
|
'host': host,
|
|
'port': port,
|
|
}
|
|
# SENTRY_METRICS_SAMPLE_RATE = 1.0 # Adjust this to your needs, default is 1.0
|
|
# SENTRY_METRICS_PREFIX = "sentry." # Adjust this to your needs, default is "sentry."
|