Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ runs:
echo "COMPOSE_PROFILES=$COMPOSE_PROFILES" >> ${{ github.action_path }}/.env
fi

# To enable easier debugging process
# See https://github.com/getsentry/sentry/pull/118444
echo "SENTRY_TRACE_STARTUP=1" >> ${{ github.action_path }}/.env
if [ "$GITHUB_REPOSITORY" = "getsentry/self-hosted" ]; then
echo "SENTRY_DSN=$SELF_HOSTED_INTEGRATION_DSN" >> $GITHUB_ENV
fi
Comment thread
sentry[bot] marked this conversation as resolved.
Outdated

- name: Cleanup runner image
shell: bash
run: |
Expand Down
4 changes: 4 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ x-sentry-defaults: &sentry_defaults
SENTRY_CONF: "/etc/sentry"
SNUBA: "http://snuba-api:1218"
VROOM: "http://vroom:8085"
# Users should leave this empty
SENTRY_DSN:
# Force everything to use the system CA bundle
# This is mostly needed to support installing custom CA certs
# This one is used by botocore
Expand All @@ -93,6 +95,7 @@ x-sentry-defaults: &sentry_defaults
SENTRY_SYSTEM_SECRET_KEY:
LAUNCHPAD_RPC_SHARED_SECRET:
SENTRY_STATSD_ADDR: "${STATSD_ADDR:-}"
SENTRY_TRACE_STARTUP:
volumes:
- "sentry-data:/data"
- "./sentry:/etc/sentry"
Expand All @@ -116,6 +119,7 @@ x-snuba-defaults: &snuba_defaults
UWSGI_MAX_REQUESTS: "10000"
UWSGI_DISABLE_LOGGING: "true"
SENTRY_KAFKA_MAX_POLL_INTERVAL_MS:
SENTRY_DSN:
# Leaving the value empty to just pass whatever is set
# on the host system (or in the .env file)
SENTRY_EVENT_RETENTION_DAYS:
Expand Down
Loading