update
All checks were successful
Build And Test / build-and-push (push) Successful in 2m54s

This commit is contained in:
2025-12-05 16:16:32 +09:00
parent 89c126b469
commit ec866f2d05
3 changed files with 3 additions and 1 deletions

View File

@ -34,6 +34,7 @@ else:
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = os.environ.get('SECRET_KEY', 'django-insecure-ec9me^z%x7-2vwee5#qq(kvn@^cs!!22_*f-im(320_k5-=0j5')
SERVICE_PLATFORM = os.getenv("SERVICE_PLATFORM", "none")
TRACE_SERVICE_NAME = os.getenv("TRACE_SERVICE_NAME", "msa-django-auth")
TRACE_ENDPOINT = os.getenv("TRACE_ENDPOINT", "none")

View File

@ -27,6 +27,7 @@ if not settings.DEBUG:
trace.set_tracer_provider(
TracerProvider(
resource=Resource.create({
"service.platform": settings.SERVICE_PLATFORM,
# "service.name": "msa-django-auth",
"service.name": settings.TRACE_SERVICE_NAME,
})

View File

@ -1 +1 @@
v0.0.15_r1
v0.0.16