diff --git a/docker-compose.yml b/docker-compose.yml index e8f1c306b9..76f2236162 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -353,7 +353,7 @@ services: - MAX_BRIDGE_PARTICIPANTS - OCTO_BRIDGE_SELECTION_STRATEGY - PROSODY_VISITORS_MUC_PREFIX - - SENTRY_DSN="${JICOFO_SENTRY_DSN:-0}" + - SENTRY_DSN - SENTRY_ENVIRONMENT - SENTRY_RELEASE - TZ @@ -416,7 +416,7 @@ services: - JVB_XMPP_PORT - JVB_XMPP_SERVER - PUBLIC_URL - - SENTRY_DSN="${JVB_SENTRY_DSN:-0}" + - SENTRY_DSN - SENTRY_ENVIRONMENT - SENTRY_RELEASE - COLIBRI_REST_ENABLED diff --git a/jicofo/rootfs/defaults/logging.properties b/jicofo/rootfs/defaults/logging.properties index 16a7e5631a..a473db7bea 100644 --- a/jicofo/rootfs/defaults/logging.properties +++ b/jicofo/rootfs/defaults/logging.properties @@ -1,7 +1,9 @@ -{{ if .Env.SENTRY_DSN | default "0" | toBool }} +{{ $SENTRY_DSN := .Env.SENTRY_DSN | default .Env.JICOFO_SENTRY_DSN -}} + +{{ if $SENTRY_DSN }} handlers=java.util.logging.ConsoleHandler,io.sentry.jul.SentryHandler {{ else }} -handlers= java.util.logging.ConsoleHandler +handlers=java.util.logging.ConsoleHandler {{ end }} java.util.logging.ConsoleHandler.level = ALL diff --git a/jigasi.yml b/jigasi.yml index 210d5916cc..2952b92cf5 100644 --- a/jigasi.yml +++ b/jigasi.yml @@ -48,7 +48,7 @@ services: - GC_CLIENT_ID - GC_CLIENT_CERT_URL - SHUTDOWN_REST_ENABLED - - SENTRY_DSN="${JIGASI_SENTRY_DSN:-0}" + - SENTRY_DSN - SENTRY_ENVIRONMENT - SENTRY_RELEASE - TZ diff --git a/jigasi/rootfs/defaults/logging.properties b/jigasi/rootfs/defaults/logging.properties index b52000a25d..d2deccd53e 100644 --- a/jigasi/rootfs/defaults/logging.properties +++ b/jigasi/rootfs/defaults/logging.properties @@ -1,4 +1,6 @@ -{{ if .Env.SENTRY_DSN | default "0" | toBool }} +{{ $SENTRY_DSN := .Env.SENTRY_DSN | default .Env.JICOFO_SENTRY_DSN -}} + +{{ if $SENTRY_DSN }} handlers=java.util.logging.ConsoleHandler,io.sentry.jul.SentryHandler {{ else }} handlers=java.util.logging.ConsoleHandler diff --git a/jvb/rootfs/defaults/logging.properties b/jvb/rootfs/defaults/logging.properties index 4b67430c40..512ff098cf 100644 --- a/jvb/rootfs/defaults/logging.properties +++ b/jvb/rootfs/defaults/logging.properties @@ -1,7 +1,9 @@ -{{ if .Env.SENTRY_DSN | default "0" | toBool }} +{{ $SENTRY_DSN := .Env.SENTRY_DSN | default .Env.JICOFO_SENTRY_DSN -}} + +{{ if $SENTRY_DSN }} handlers=java.util.logging.ConsoleHandler,io.sentry.jul.SentryHandler {{ else }} -handlers= java.util.logging.ConsoleHandler +handlers=java.util.logging.ConsoleHandler {{ end }} java.util.logging.ConsoleHandler.level = ALL