mirror of
https://github.com/getsentry/self-hosted.git
synced 2026-02-06 10:57:17 +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
34 lines
1.5 KiB
Bash
34 lines
1.5 KiB
Bash
COMPOSE_PROJECT_NAME=sentry-self-hosted
|
|
# Set COMPOSE_PROFILES to "feature-complete" to enable all features
|
|
# To enable errors monitoring only, set COMPOSE_PROFILES=errors-only
|
|
# See https://develop.sentry.dev/self-hosted/optional-features/errors-only/
|
|
COMPOSE_PROFILES=feature-complete
|
|
SENTRY_EVENT_RETENTION_DAYS=90
|
|
# You can either use a port number or an IP:PORT combo for SENTRY_BIND
|
|
# See https://docs.docker.com/compose/compose-file/#ports for more
|
|
SENTRY_BIND=9000
|
|
# Set SENTRY_MAIL_HOST to a valid FQDN (host/domain name) to be able to send emails!
|
|
# SENTRY_MAIL_HOST=example.com
|
|
SENTRY_IMAGE=ghcr.io/getsentry/sentry:nightly
|
|
SNUBA_IMAGE=ghcr.io/getsentry/snuba:nightly
|
|
RELAY_IMAGE=ghcr.io/getsentry/relay:nightly
|
|
SYMBOLICATOR_IMAGE=ghcr.io/getsentry/symbolicator:nightly
|
|
TASKBROKER_IMAGE=ghcr.io/getsentry/taskbroker:nightly
|
|
VROOM_IMAGE=ghcr.io/getsentry/vroom:nightly
|
|
UPTIME_CHECKER_IMAGE=ghcr.io/getsentry/uptime-checker:nightly
|
|
HEALTHCHECK_INTERVAL=30s
|
|
HEALTHCHECK_TIMEOUT=1m30s
|
|
HEALTHCHECK_RETRIES=10
|
|
HEALTHCHECK_START_PERIOD=10s
|
|
HEALTHCHECK_FILE_INTERVAL=60s
|
|
HEALTHCHECK_FILE_TIMEOUT=10s
|
|
HEALTHCHECK_FILE_RETRIES=3
|
|
HEALTHCHECK_FILE_START_PERIOD=600s
|
|
# Set SETUP_JS_SDK_ASSETS to 1 to enable the setup of JS SDK assets
|
|
# SETUP_JS_SDK_ASSETS=1
|
|
#
|
|
# Sentry (and its' surrounding services) uses Statsd for metrics collection.
|
|
# It's also the proper way to monitor self-hosted Sentry systems.
|
|
# Set STATSD_ADDR to a valid IP:PORT combination to enable Statsd metrics collection.
|
|
# STATSD_ADDR=127.0.0.1:8125
|