2 Commits

Author SHA1 Message Date
05f4ed5b2a modify endpoint
All checks were successful
Build And Test / build-and-push (push) Successful in 1m43s
2025-09-30 00:55:25 +09:00
ec39ba59be Update jaeger Endpoint
All checks were successful
Build And Test / build-and-push (push) Successful in 2m9s
2025-09-29 23:23:28 +09:00
3 changed files with 7 additions and 2 deletions

View File

@ -12,6 +12,10 @@ python3 manage.py runserver 0.0.0.0:8000
gunicorn auth_prj.wsgi:application --bind 0.0.0.0:8000 --workers 3 gunicorn auth_prj.wsgi:application --bind 0.0.0.0:8000 --workers 3
``` ```
## 2025-09-29 jaeger Endpoint 변경 ( v0.0.14 )
* 변경전: endpoint="http://jaeger-collector.istio-system:4317",
* 변경후: endpoint="http://jaeger-collector.observability.svc.cluster.local:4317",
## 2025-09-28 RS256변경 적용 ( v0.0.13 ) ## 2025-09-28 RS256변경 적용 ( v0.0.13 )
* Docker Build base image 변경. * Docker Build base image 변경.
* python:3.10-slim-buster > python:3.10-slim-bullseye * python:3.10-slim-buster > python:3.10-slim-bullseye

View File

@ -33,7 +33,8 @@ if not settings.DEBUG:
) )
otlp_exporter = OTLPSpanExporter( otlp_exporter = OTLPSpanExporter(
endpoint="http://jaeger-collector.istio-system:4317", # endpoint="http://jaeger-collector.istio-system:4317",
endpoint="jaeger-collector.observability.svc.cluster.local:4317",
insecure=True, insecure=True,
) )

View File

@ -1 +1 @@
v0.0.13_r1 v0.0.14_r1