diff --git a/README.md b/README.md index 0dfb1306d..2e7585583 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,8 @@ You have two ways to install this repository: ``` 2. **Install from source**: - If you prefer to install from the source code, follow these steps: + If you prefer to install from the source code, make sure you have [conda installed](https://docs.conda.io/projects/conda/en/stable). + Then, follow these steps: ```bash mkdir -p ~/local cd ~/local diff --git a/llama_stack/providers/inline/telemetry/meta_reference/config.py b/llama_stack/providers/inline/telemetry/meta_reference/config.py index 0230d24d2..4aaa368d1 100644 --- a/llama_stack/providers/inline/telemetry/meta_reference/config.py +++ b/llama_stack/providers/inline/telemetry/meta_reference/config.py @@ -13,7 +13,7 @@ from llama_stack.distribution.utils.config_dirs import RUNTIME_BASE_DIR class TelemetrySink(str, Enum): - JAEGER = "jaeger" + OTEL = "otel" SQLITE = "sqlite" CONSOLE = "console" @@ -29,7 +29,7 @@ class TelemetryConfig(BaseModel): ) sinks: List[TelemetrySink] = Field( default=[TelemetrySink.CONSOLE, TelemetrySink.SQLITE], - description="List of telemetry sinks to enable (possible values: jaeger, sqlite, console)", + description="List of telemetry sinks to enable (possible values: otel, sqlite, console)", ) sqlite_db_path: str = Field( default=(RUNTIME_BASE_DIR / "trace_store.db").as_posix(), diff --git a/llama_stack/providers/inline/telemetry/meta_reference/telemetry.py b/llama_stack/providers/inline/telemetry/meta_reference/telemetry.py index 0bcc48afb..095591f9a 100644 --- a/llama_stack/providers/inline/telemetry/meta_reference/telemetry.py +++ b/llama_stack/providers/inline/telemetry/meta_reference/telemetry.py @@ -72,7 +72,7 @@ class TelemetryAdapter(TelemetryDatasetMixin, Telemetry): provider = TracerProvider(resource=resource) trace.set_tracer_provider(provider) - if TelemetrySink.JAEGER in self.config.sinks: + if TelemetrySink.OTEL in self.config.sinks: otlp_exporter = OTLPSpanExporter( endpoint=self.config.otel_endpoint, )