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
13 lines
493 B
YAML
13 lines
493 B
YAML
# See: https://getsentry.github.io/symbolicator/#configuration
|
|
cache_dir: "/data"
|
|
bind: "0.0.0.0:3021"
|
|
logging:
|
|
level: "warn"
|
|
|
|
sentry_dsn: null # TODO: Automatically fill this with the internal project DSN
|
|
|
|
# If you have statsd server, you can utilize that to monitor self-hosted Symbolicator.
|
|
metrics:
|
|
statsd: "${SYMBOLICATOR_STATSD_ADDR}" # It is recommended to use IP address instead of domain name
|
|
prefix: "sentry.symbolicator" # Adjust this to your needs, default is "symbolicator"
|