mirror of
https://github.com/cpacker/MemGPT.git
synced 2025-06-03 04:30:22 +00:00
fix: revert default otel endpoint (#1343)
This commit is contained in:
parent
422f449cd3
commit
82c43a9262
@ -64,7 +64,8 @@ ENV LETTA_ENVIRONMENT=${LETTA_ENVIRONMENT} \
|
||||
POSTGRES_USER=letta \
|
||||
POSTGRES_PASSWORD=letta \
|
||||
POSTGRES_DB=letta \
|
||||
COMPOSIO_DISABLE_VERSION_CHECK=true
|
||||
COMPOSIO_DISABLE_VERSION_CHECK=true \
|
||||
LETTA_OTEL_EXPORTER_OTLP_ENDPOINT="http://localhost:4317"
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
@ -179,7 +179,7 @@ class Settings(BaseSettings):
|
||||
|
||||
# telemetry logging
|
||||
verbose_telemetry_logging: bool = False
|
||||
otel_exporter_otlp_endpoint: str = "http://localhost:4317"
|
||||
otel_exporter_otlp_endpoint: Optional[str] = None # otel default: "http://localhost:4317"
|
||||
disable_tracing: bool = False
|
||||
|
||||
# uvicorn settings
|
||||
|
Loading…
Reference in New Issue
Block a user