feat(enterprise-telemetry): add ENTERPRISE_OTLP_API_KEY config field

This commit is contained in:
GareArc
2026-02-09 01:26:26 -08:00
parent 944eb28486
commit f2d07f3ec5

View File

@@ -45,6 +45,12 @@ class EnterpriseTelemetryConfig(BaseSettings):
default="http", default="http",
) )
ENTERPRISE_OTLP_API_KEY: str = Field(
description="Bearer token for enterprise OTLP export authentication. "
"When set, gRPC exporters automatically use TLS (insecure=False).",
default="",
)
ENTERPRISE_INCLUDE_CONTENT: bool = Field( ENTERPRISE_INCLUDE_CONTENT: bool = Field(
description="Include input/output content in traces (privacy toggle).", description="Include input/output content in traces (privacy toggle).",
default=True, default=True,