File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99class 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:
1818def 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" ,
You can’t perform that action at this time.
0 commit comments