mirror of https://github.com/langgenius/dify.git
feat(enterprise-telemetry): add ENTERPRISE_OTLP_API_KEY config field
This commit is contained in:
parent
944eb28486
commit
f2d07f3ec5
|
|
@ -45,6 +45,12 @@ class EnterpriseTelemetryConfig(BaseSettings):
|
|||
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(
|
||||
description="Include input/output content in traces (privacy toggle).",
|
||||
default=True,
|
||||
|
|
|
|||
Loading…
Reference in New Issue