Skip to content

Commit dd89c2d

Browse files
committed
Updating default otel endpoint to point production url
1 parent 48e551f commit dd89c2d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/value/internal/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
class SDKConfig:
1010
"""Configuration for the Value SDK."""
1111

12-
otel_endpoint: str = "http://localhost:4317"
12+
otel_endpoint: str = "https://value.valmi.io"
1313
backend_url: Optional[str] = None
1414
service_name: str = "value-control-agent"
1515
enable_console_export: bool = False
@@ -18,7 +18,7 @@ class SDKConfig:
1818
def load_config_from_env() -> SDKConfig:
1919
"""Load SDK configuration from environment variables."""
2020
return SDKConfig(
21-
otel_endpoint=os.getenv("VALUE_OTEL_ENDPOINT", "http://localhost:4317"),
21+
otel_endpoint=os.getenv("VALUE_OTEL_ENDPOINT", "https://value.valmi.io"),
2222
backend_url=os.getenv("VALUE_BACKEND_URL"),
2323
service_name=os.getenv("VALUE_SERVICE_NAME", "value-control-agent"),
2424
enable_console_export=os.getenv("VALUE_CONSOLE_EXPORT", "false").lower() == "true",

0 commit comments

Comments
 (0)